@twentyhq/people-data-labs 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +7 -0
- package/.nvmrc +1 -0
- package/.oxlintrc.json +58 -0
- package/.yarnrc.yml +1 -0
- package/README.md +16 -0
- package/package.json +37 -0
- package/public/gallery/cover.png +0 -0
- package/public/people-data-labs-icon.png +0 -0
- package/src/__tests__/global-setup.ts +87 -0
- package/src/__tests__/people-data-labs.integration-test.ts +25 -0
- package/src/application-config.ts +18 -0
- package/src/command-menu-items/enrich-companies.ts +14 -0
- package/src/command-menu-items/enrich-people.ts +14 -0
- package/src/constants/__tests__/select-option-constants.spec.ts +142 -0
- package/src/constants/billing-margin-multiplier.ts +1 -0
- package/src/constants/company-match-cost-dollars.ts +1 -0
- package/src/constants/company-type-options.ts +46 -0
- package/src/constants/enrichment-status-options.ts +19 -0
- package/src/constants/enrichment-workflow-seeds.ts +27 -0
- package/src/constants/funding-stage-options.ts +195 -0
- package/src/constants/industry-options.ts +1033 -0
- package/src/constants/inferred-salary-options.ts +81 -0
- package/src/constants/job-role-options.ts +172 -0
- package/src/constants/job-title-class-options.ts +39 -0
- package/src/constants/job-title-sub-role-options.ts +746 -0
- package/src/constants/location-continent-options.ts +53 -0
- package/src/constants/metro-options.ts +2692 -0
- package/src/constants/mic-exchange-options.ts +494 -0
- package/src/constants/micro-credits-per-dollar.ts +1 -0
- package/src/constants/pdl-base-url.ts +1 -0
- package/src/constants/person-match-cost-dollars.ts +1 -0
- package/src/constants/seniority-options.ts +74 -0
- package/src/constants/sex-options.ts +18 -0
- package/src/constants/size-options.ts +60 -0
- package/src/constants/universal-identifiers.ts +1516 -0
- package/src/constants/update-fields-option-values.ts +5 -0
- package/src/constants/update-fields-options.ts +7 -0
- package/src/fields/company/pdl-affiliated-profiles.field.ts +20 -0
- package/src/fields/company/pdl-alternative-domains.field.ts +20 -0
- package/src/fields/company/pdl-alternative-names.field.ts +20 -0
- package/src/fields/company/pdl-company-type.field.ts +28 -0
- package/src/fields/company/pdl-employee-count-by-country.field.ts +21 -0
- package/src/fields/company/pdl-employee-count.field.ts +19 -0
- package/src/fields/company/pdl-enrichment-status.field.ts +29 -0
- package/src/fields/company/pdl-facebook-url.field.ts +19 -0
- package/src/fields/company/pdl-founded-year.field.ts +19 -0
- package/src/fields/company/pdl-funding-stages.field.ts +28 -0
- package/src/fields/company/pdl-headline.field.ts +19 -0
- package/src/fields/company/pdl-id.field.ts +19 -0
- package/src/fields/company/pdl-industry-detail.field.ts +20 -0
- package/src/fields/company/pdl-industry.field.ts +28 -0
- package/src/fields/company/pdl-last-enriched-at.field.ts +20 -0
- package/src/fields/company/pdl-last-funding-date.field.ts +20 -0
- package/src/fields/company/pdl-latest-funding-stage.field.ts +29 -0
- package/src/fields/company/pdl-legal-name.field.ts +19 -0
- package/src/fields/company/pdl-linkedin-id.field.ts +19 -0
- package/src/fields/company/pdl-location-continent.field.ts +29 -0
- package/src/fields/company/pdl-location-metro.field.ts +28 -0
- package/src/fields/company/pdl-mic-exchange.field.ts +28 -0
- package/src/fields/company/pdl-naics.field.ts +19 -0
- package/src/fields/company/pdl-number-funding-rounds.field.ts +20 -0
- package/src/fields/company/pdl-raw-payload.field.ts +19 -0
- package/src/fields/company/pdl-sic.field.ts +19 -0
- package/src/fields/company/pdl-size-range.field.ts +28 -0
- package/src/fields/company/pdl-summary.field.ts +19 -0
- package/src/fields/company/pdl-tags.field.ts +19 -0
- package/src/fields/company/pdl-ticker.field.ts +19 -0
- package/src/fields/company/pdl-total-funding.field.ts +19 -0
- package/src/fields/company/pdl-twitter-url.field.ts +19 -0
- package/src/fields/person/pdl-birth-date.field.ts +19 -0
- package/src/fields/person/pdl-birth-year.field.ts +19 -0
- package/src/fields/person/pdl-certifications.field.ts +19 -0
- package/src/fields/person/pdl-education.field.ts +19 -0
- package/src/fields/person/pdl-enrichment-status.field.ts +29 -0
- package/src/fields/person/pdl-experience.field.ts +19 -0
- package/src/fields/person/pdl-facebook-url.field.ts +19 -0
- package/src/fields/person/pdl-github-url.field.ts +19 -0
- package/src/fields/person/pdl-headline.field.ts +19 -0
- package/src/fields/person/pdl-id.field.ts +19 -0
- package/src/fields/person/pdl-industry.field.ts +28 -0
- package/src/fields/person/pdl-inferred-salary.field.ts +28 -0
- package/src/fields/person/pdl-interests.field.ts +19 -0
- package/src/fields/person/pdl-job-onet-code.field.ts +19 -0
- package/src/fields/person/pdl-job-role.field.ts +28 -0
- package/src/fields/person/pdl-job-start-date.field.ts +19 -0
- package/src/fields/person/pdl-job-summary.field.ts +19 -0
- package/src/fields/person/pdl-job-title-class.field.ts +28 -0
- package/src/fields/person/pdl-job-title-sub-role.field.ts +29 -0
- package/src/fields/person/pdl-languages.field.ts +19 -0
- package/src/fields/person/pdl-last-enriched-at.field.ts +19 -0
- package/src/fields/person/pdl-likelihood.field.ts +19 -0
- package/src/fields/person/pdl-linkedin-connections.field.ts +20 -0
- package/src/fields/person/pdl-linkedin-username.field.ts +20 -0
- package/src/fields/person/pdl-location-metro.field.ts +28 -0
- package/src/fields/person/pdl-location.field.ts +19 -0
- package/src/fields/person/pdl-name-aliases.field.ts +19 -0
- package/src/fields/person/pdl-profiles.field.ts +19 -0
- package/src/fields/person/pdl-raw-payload.field.ts +19 -0
- package/src/fields/person/pdl-seniority.field.ts +28 -0
- package/src/fields/person/pdl-sex.field.ts +28 -0
- package/src/fields/person/pdl-skills.field.ts +19 -0
- package/src/fields/person/pdl-summary.field.ts +19 -0
- package/src/fields/person/pdl-twitter-url.field.ts +19 -0
- package/src/fields/person/pdl-years-experience.field.ts +21 -0
- package/src/front-components/enrich-companies-component-effect.tsx +21 -0
- package/src/front-components/enrich-people-component-effect.tsx +21 -0
- package/src/front-components/utils/call-enrich-logic-function.utils.ts +21 -0
- package/src/logic-functions/__mocks__/company-node.mock.ts +11 -0
- package/src/logic-functions/__mocks__/create-core-api-client-mock.ts +35 -0
- package/src/logic-functions/__mocks__/pdl-company-data.mock.ts +27 -0
- package/src/logic-functions/__mocks__/pdl-person-data.mock.ts +23 -0
- package/src/logic-functions/__mocks__/person-node.mock.ts +12 -0
- package/src/logic-functions/enrich-companies.function.ts +76 -0
- package/src/logic-functions/enrich-company.function.ts +73 -0
- package/src/logic-functions/enrich-people.function.ts +76 -0
- package/src/logic-functions/enrich-person.function.ts +73 -0
- package/src/logic-functions/errors/__tests__/pdl-config-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-invalid-input-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-operation-error.spec.ts +16 -0
- package/src/logic-functions/errors/__tests__/pdl-record-not-found-error.spec.ts +21 -0
- package/src/logic-functions/errors/pdl-config-error.ts +8 -0
- package/src/logic-functions/errors/pdl-error-code.ts +8 -0
- package/src/logic-functions/errors/pdl-error.ts +12 -0
- package/src/logic-functions/errors/pdl-invalid-input-error.ts +8 -0
- package/src/logic-functions/errors/pdl-operation-error.ts +8 -0
- package/src/logic-functions/errors/pdl-record-not-found-error.ts +22 -0
- package/src/logic-functions/handlers/__tests__/enrich-companies.spec.ts +159 -0
- package/src/logic-functions/handlers/__tests__/enrich-company.spec.ts +147 -0
- package/src/logic-functions/handlers/__tests__/enrich-people.spec.ts +313 -0
- package/src/logic-functions/handlers/__tests__/enrich-person.spec.ts +198 -0
- package/src/logic-functions/handlers/__tests__/post-install.spec.ts +153 -0
- package/src/logic-functions/handlers/company-enrichment-adapter.ts +42 -0
- package/src/logic-functions/handlers/company-single-enrichment-adapter.ts +15 -0
- package/src/logic-functions/handlers/enrich-companies.ts +15 -0
- package/src/logic-functions/handlers/enrich-company.ts +19 -0
- package/src/logic-functions/handlers/enrich-people.ts +15 -0
- package/src/logic-functions/handlers/enrich-person.ts +19 -0
- package/src/logic-functions/handlers/person-enrichment-adapter.ts +29 -0
- package/src/logic-functions/handlers/person-single-enrichment-adapter.ts +15 -0
- package/src/logic-functions/handlers/post-install.ts +69 -0
- package/src/logic-functions/post-install.function.ts +17 -0
- package/src/logic-functions/utils/__tests__/aggregate-bulk-enrich-result.spec.ts +52 -0
- package/src/logic-functions/utils/__tests__/build-address.spec.ts +30 -0
- package/src/logic-functions/utils/__tests__/build-allowed-values.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/build-bulk-records-trigger.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/build-company-create-data.spec.ts +37 -0
- package/src/logic-functions/utils/__tests__/build-company-match-keys.spec.ts +35 -0
- package/src/logic-functions/utils/__tests__/build-company-matched-data.spec.ts +56 -0
- package/src/logic-functions/utils/__tests__/build-currency-from-usd.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/build-emails.spec.ts +23 -0
- package/src/logic-functions/utils/__tests__/build-error-result.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/build-full-name.spec.ts +64 -0
- package/src/logic-functions/utils/__tests__/build-links.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/build-logic-function-step.spec.ts +33 -0
- package/src/logic-functions/utils/__tests__/build-matched-result.spec.ts +33 -0
- package/src/logic-functions/utils/__tests__/build-not-found-result.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/build-person-matched-data.spec.ts +117 -0
- package/src/logic-functions/utils/__tests__/build-person-name-param.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/build-phones.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/build-skipped-result.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/capitalize-name.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/capitalize-name.test.ts +17 -0
- package/src/logic-functions/utils/__tests__/charge-matched-enrichments.spec.ts +56 -0
- package/src/logic-functions/utils/__tests__/chunk.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/enrich-companies.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/enrich-company.spec.ts +54 -0
- package/src/logic-functions/utils/__tests__/enrich-people.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/enrich-person.spec.ts +62 -0
- package/src/logic-functions/utils/__tests__/extract-company-match-params.spec.ts +86 -0
- package/src/logic-functions/utils/__tests__/extract-pdl-error-message.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/extract-person-match-params.spec.ts +75 -0
- package/src/logic-functions/utils/__tests__/extract-record-ids.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/find-company-id-by-filter.spec.ts +42 -0
- package/src/logic-functions/utils/__tests__/find-company-id.spec.ts +118 -0
- package/src/logic-functions/utils/__tests__/find-existing-workflow-id.spec.ts +26 -0
- package/src/logic-functions/utils/__tests__/find-or-create-current-company.spec.ts +203 -0
- package/src/logic-functions/utils/__tests__/get-pdl-api-key.spec.ts +38 -0
- package/src/logic-functions/utils/__tests__/is-empty-address.spec.ts +20 -0
- package/src/logic-functions/utils/__tests__/is-empty-emails.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-full-name.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-links.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-phones.spec.ts +14 -0
- package/src/logic-functions/utils/__tests__/is-empty-text.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/map-company.spec.ts +48 -0
- package/src/logic-functions/utils/__tests__/map-person.spec.ts +81 -0
- package/src/logic-functions/utils/__tests__/normalize-domain.spec.ts +19 -0
- package/src/logic-functions/utils/__tests__/normalize-linkedin-url.spec.ts +22 -0
- package/src/logic-functions/utils/__tests__/now-iso.spec.ts +9 -0
- package/src/logic-functions/utils/__tests__/parse-geo.spec.ts +21 -0
- package/src/logic-functions/utils/__tests__/parse-partial-date.spec.ts +29 -0
- package/src/logic-functions/utils/__tests__/parse-pdl-item.spec.ts +88 -0
- package/src/logic-functions/utils/__tests__/pick-multi-select.spec.ts +28 -0
- package/src/logic-functions/utils/__tests__/pick-select.spec.ts +38 -0
- package/src/logic-functions/utils/__tests__/pick-writable-standard.spec.ts +37 -0
- package/src/logic-functions/utils/__tests__/post-pdl-enrich.spec.ts +192 -0
- package/src/logic-functions/utils/__tests__/post-pdl-single-enrich.spec.ts +172 -0
- package/src/logic-functions/utils/__tests__/read-companies.spec.ts +39 -0
- package/src/logic-functions/utils/__tests__/read-people.spec.ts +40 -0
- package/src/logic-functions/utils/__tests__/resolve-logic-function-id.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/resolve-update-fields-mode.spec.ts +34 -0
- package/src/logic-functions/utils/__tests__/run-batch-enrichment.spec.ts +524 -0
- package/src/logic-functions/utils/__tests__/salary-transform.spec.ts +15 -0
- package/src/logic-functions/utils/__tests__/seed-enrichment-workflow.spec.ts +136 -0
- package/src/logic-functions/utils/__tests__/size-transform.spec.ts +18 -0
- package/src/logic-functions/utils/__tests__/to-json-array.spec.ts +16 -0
- package/src/logic-functions/utils/__tests__/to-json-object.spec.ts +18 -0
- package/src/logic-functions/utils/__tests__/to-number.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/to-string-array.spec.ts +17 -0
- package/src/logic-functions/utils/__tests__/to-text.spec.ts +20 -0
- package/src/logic-functions/utils/__tests__/update-companies-status.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/update-company-record.spec.ts +25 -0
- package/src/logic-functions/utils/__tests__/update-people-status.spec.ts +32 -0
- package/src/logic-functions/utils/__tests__/update-person-record.spec.ts +25 -0
- package/src/logic-functions/utils/aggregate-bulk-enrich-result.ts +21 -0
- package/src/logic-functions/utils/build-address.ts +40 -0
- package/src/logic-functions/utils/build-allowed-values.ts +5 -0
- package/src/logic-functions/utils/build-bulk-records-trigger.ts +25 -0
- package/src/logic-functions/utils/build-company-create-data.ts +35 -0
- package/src/logic-functions/utils/build-company-match-keys.ts +16 -0
- package/src/logic-functions/utils/build-company-matched-data.ts +56 -0
- package/src/logic-functions/utils/build-currency-from-usd.ts +16 -0
- package/src/logic-functions/utils/build-emails.ts +34 -0
- package/src/logic-functions/utils/build-error-result.ts +18 -0
- package/src/logic-functions/utils/build-full-name.ts +38 -0
- package/src/logic-functions/utils/build-links.ts +23 -0
- package/src/logic-functions/utils/build-logic-function-step.ts +30 -0
- package/src/logic-functions/utils/build-matched-result.ts +21 -0
- package/src/logic-functions/utils/build-not-found-result.ts +9 -0
- package/src/logic-functions/utils/build-person-matched-data.ts +78 -0
- package/src/logic-functions/utils/build-person-name-param.ts +19 -0
- package/src/logic-functions/utils/build-phones.ts +40 -0
- package/src/logic-functions/utils/build-skipped-result.ts +15 -0
- package/src/logic-functions/utils/capitalize-name.ts +8 -0
- package/src/logic-functions/utils/charge-matched-enrichments.ts +29 -0
- package/src/logic-functions/utils/chunk.ts +18 -0
- package/src/logic-functions/utils/enrich-chunk.ts +361 -0
- package/src/logic-functions/utils/enrich-companies.ts +21 -0
- package/src/logic-functions/utils/enrich-company.ts +23 -0
- package/src/logic-functions/utils/enrich-people.ts +22 -0
- package/src/logic-functions/utils/enrich-person.ts +24 -0
- package/src/logic-functions/utils/extract-company-match-params.ts +52 -0
- package/src/logic-functions/utils/extract-pdl-error-message.ts +47 -0
- package/src/logic-functions/utils/extract-person-match-params.ts +59 -0
- package/src/logic-functions/utils/extract-record-ids.ts +18 -0
- package/src/logic-functions/utils/find-company-id-by-filter.ts +28 -0
- package/src/logic-functions/utils/find-company-id.ts +59 -0
- package/src/logic-functions/utils/find-existing-workflow-id.ts +18 -0
- package/src/logic-functions/utils/find-or-create-current-company.ts +108 -0
- package/src/logic-functions/utils/get-pdl-api-key.ts +15 -0
- package/src/logic-functions/utils/internal-field-names.ts +6 -0
- package/src/logic-functions/utils/is-empty-address.ts +20 -0
- package/src/logic-functions/utils/is-empty-emails.ts +13 -0
- package/src/logic-functions/utils/is-empty-full-name.ts +13 -0
- package/src/logic-functions/utils/is-empty-links.ts +13 -0
- package/src/logic-functions/utils/is-empty-phones.ts +13 -0
- package/src/logic-functions/utils/is-empty-text.ts +4 -0
- package/src/logic-functions/utils/map-company.ts +115 -0
- package/src/logic-functions/utils/map-person.ts +136 -0
- package/src/logic-functions/utils/normalize-domain.ts +22 -0
- package/src/logic-functions/utils/normalize-linkedin-url.ts +23 -0
- package/src/logic-functions/utils/now-iso.ts +1 -0
- package/src/logic-functions/utils/parse-geo.ts +33 -0
- package/src/logic-functions/utils/parse-partial-date.ts +33 -0
- package/src/logic-functions/utils/parse-pdl-item.ts +82 -0
- package/src/logic-functions/utils/pick-multi-select.ts +32 -0
- package/src/logic-functions/utils/pick-select.ts +30 -0
- package/src/logic-functions/utils/pick-writable-standard.ts +27 -0
- package/src/logic-functions/utils/post-pdl-enrich.ts +89 -0
- package/src/logic-functions/utils/post-pdl-single-enrich.ts +59 -0
- package/src/logic-functions/utils/read-companies.ts +53 -0
- package/src/logic-functions/utils/read-people.ts +48 -0
- package/src/logic-functions/utils/resolve-logic-function-id.ts +11 -0
- package/src/logic-functions/utils/resolve-min-likelihood.ts +12 -0
- package/src/logic-functions/utils/resolve-update-fields-mode.ts +16 -0
- package/src/logic-functions/utils/run-batch-enrichment.ts +50 -0
- package/src/logic-functions/utils/run-single-enrichment.ts +44 -0
- package/src/logic-functions/utils/salary-transform.ts +18 -0
- package/src/logic-functions/utils/seed-enrichment-workflow.ts +131 -0
- package/src/logic-functions/utils/size-transform.ts +15 -0
- package/src/logic-functions/utils/to-bulk-enrich-input.ts +14 -0
- package/src/logic-functions/utils/to-json-array.ts +4 -0
- package/src/logic-functions/utils/to-json-object.ts +22 -0
- package/src/logic-functions/utils/to-number.ts +4 -0
- package/src/logic-functions/utils/to-string-array.ts +28 -0
- package/src/logic-functions/utils/to-text.ts +11 -0
- package/src/logic-functions/utils/update-companies-status.ts +18 -0
- package/src/logic-functions/utils/update-company-record.ts +15 -0
- package/src/logic-functions/utils/update-people-status.ts +18 -0
- package/src/logic-functions/utils/update-person-record.ts +15 -0
- package/src/roles/default-function.role.ts +41 -0
- package/src/types/address-parts.ts +9 -0
- package/src/types/address-value.ts +10 -0
- package/src/types/batch-enrichment-adapter.ts +43 -0
- package/src/types/bulk-enrich-input.ts +9 -0
- package/src/types/bulk-enrich-result.ts +11 -0
- package/src/types/company-id-by-match-key-cache.ts +1 -0
- package/src/types/company-match-keys.ts +6 -0
- package/src/types/company-node.ts +16 -0
- package/src/types/currency-value.ts +4 -0
- package/src/types/emails-value.ts +4 -0
- package/src/types/enrich-result.ts +11 -0
- package/src/types/enrich-status.ts +1 -0
- package/src/types/enrichment-workflow-seed.ts +9 -0
- package/src/types/full-name-value.ts +4 -0
- package/src/types/links-value.ts +5 -0
- package/src/types/mapped-record.ts +4 -0
- package/src/types/pdl-company-data.ts +50 -0
- package/src/types/pdl-company-enrich-params.ts +7 -0
- package/src/types/pdl-enrich-result.ts +4 -0
- package/src/types/pdl-person-data.ts +65 -0
- package/src/types/pdl-person-enrich-params.ts +8 -0
- package/src/types/person-node.ts +11 -0
- package/src/types/phones-value.ts +12 -0
- package/src/types/post-install-result.ts +5 -0
- package/src/types/seed-enrichment-workflow-result.ts +7 -0
- package/src/types/select-option-meta.ts +9 -0
- package/src/types/single-enrich-input.ts +7 -0
- package/src/types/tag-color.ts +26 -0
- package/src/types/update-fields-option.ts +4 -0
- package/src/types/workflow-bulk-records-trigger.ts +15 -0
- package/src/types/workflow-logic-function-step.ts +18 -0
- package/src/utils/__tests__/build-select-options.spec.ts +20 -0
- package/src/utils/__tests__/is-defined.spec.ts +16 -0
- package/src/utils/__tests__/is-unique-violation-error.spec.ts +71 -0
- package/src/utils/__tests__/normalize-enum-value.spec.ts +28 -0
- package/src/utils/__tests__/prune-undefined.spec.ts +22 -0
- package/src/utils/__tests__/strip-separators.spec.ts +13 -0
- package/src/utils/__tests__/to-error-message.spec.ts +13 -0
- package/src/utils/build-select-options.ts +16 -0
- package/src/utils/is-defined.ts +5 -0
- package/src/utils/is-unique-violation-error.ts +74 -0
- package/src/utils/normalize-enum-value.ts +15 -0
- package/src/utils/prune-undefined.ts +15 -0
- package/src/utils/strip-separators.ts +4 -0
- package/src/utils/to-error-message.ts +2 -0
- package/src/views/enriched-companies.view.ts +69 -0
- package/src/views/enriched-people.view.ts +74 -0
- package/tsconfig.json +42 -0
- package/tsconfig.spec.json +9 -0
- package/vitest.config.ts +31 -0
- package/vitest.unit.config.ts +14 -0
|
@@ -0,0 +1,2692 @@
|
|
|
1
|
+
import { type SelectOptionMeta } from 'src/types/select-option-meta';
|
|
2
|
+
|
|
3
|
+
export const METRO_OPTIONS: readonly SelectOptionMeta[] = [
|
|
4
|
+
{
|
|
5
|
+
key: 'abileneTexas',
|
|
6
|
+
value: 'ABILENE_TEXAS',
|
|
7
|
+
label: 'Abilene - Texas',
|
|
8
|
+
color: 'blue',
|
|
9
|
+
position: 0,
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
key: 'akronOhio',
|
|
13
|
+
value: 'AKRON_OHIO',
|
|
14
|
+
label: 'Akron - Ohio',
|
|
15
|
+
color: 'red',
|
|
16
|
+
position: 1,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
key: 'albanyGeorgia',
|
|
20
|
+
value: 'ALBANY_GEORGIA',
|
|
21
|
+
label: 'Albany - Georgia',
|
|
22
|
+
color: 'green',
|
|
23
|
+
position: 2,
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
key: 'albanyNewYork',
|
|
27
|
+
value: 'ALBANY_NEW_YORK',
|
|
28
|
+
label: 'Albany - New York',
|
|
29
|
+
color: 'orange',
|
|
30
|
+
position: 3,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
key: 'albanyOregon',
|
|
34
|
+
value: 'ALBANY_OREGON',
|
|
35
|
+
label: 'Albany - Oregon',
|
|
36
|
+
color: 'purple',
|
|
37
|
+
position: 4,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
key: 'albuquerqueNewMexico',
|
|
41
|
+
value: 'ALBUQUERQUE_NEW_MEXICO',
|
|
42
|
+
label: 'Albuquerque - New Mexico',
|
|
43
|
+
color: 'yellow',
|
|
44
|
+
position: 5,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
key: 'alexandriaLouisiana',
|
|
48
|
+
value: 'ALEXANDRIA_LOUISIANA',
|
|
49
|
+
label: 'Alexandria - Louisiana',
|
|
50
|
+
color: 'pink',
|
|
51
|
+
position: 6,
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
key: 'allentownPennsylvania',
|
|
55
|
+
value: 'ALLENTOWN_PENNSYLVANIA',
|
|
56
|
+
label: 'Allentown - Pennsylvania',
|
|
57
|
+
color: 'cyan',
|
|
58
|
+
position: 7,
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
key: 'altoonaPennsylvania',
|
|
62
|
+
value: 'ALTOONA_PENNSYLVANIA',
|
|
63
|
+
label: 'Altoona - Pennsylvania',
|
|
64
|
+
color: 'brown',
|
|
65
|
+
position: 8,
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
key: 'amarilloTexas',
|
|
69
|
+
value: 'AMARILLO_TEXAS',
|
|
70
|
+
label: 'Amarillo - Texas',
|
|
71
|
+
color: 'lime',
|
|
72
|
+
position: 9,
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
key: 'amesIowa',
|
|
76
|
+
value: 'AMES_IOWA',
|
|
77
|
+
label: 'Ames - Iowa',
|
|
78
|
+
color: 'violet',
|
|
79
|
+
position: 10,
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
key: 'anchorageAlaska',
|
|
83
|
+
value: 'ANCHORAGE_ALASKA',
|
|
84
|
+
label: 'Anchorage - Alaska',
|
|
85
|
+
color: 'gold',
|
|
86
|
+
position: 11,
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
key: 'annArborMichigan',
|
|
90
|
+
value: 'ANN_ARBOR_MICHIGAN',
|
|
91
|
+
label: 'Ann Arbor - Michigan',
|
|
92
|
+
color: 'turquoise',
|
|
93
|
+
position: 12,
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
key: 'annistonAlabama',
|
|
97
|
+
value: 'ANNISTON_ALABAMA',
|
|
98
|
+
label: 'Anniston - Alabama',
|
|
99
|
+
color: 'crimson',
|
|
100
|
+
position: 13,
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
key: 'appletonWisconsin',
|
|
104
|
+
value: 'APPLETON_WISCONSIN',
|
|
105
|
+
label: 'Appleton - Wisconsin',
|
|
106
|
+
color: 'sky',
|
|
107
|
+
position: 14,
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
key: 'ashevilleNorthCarolina',
|
|
111
|
+
value: 'ASHEVILLE_NORTH_CAROLINA',
|
|
112
|
+
label: 'Asheville - North Carolina',
|
|
113
|
+
color: 'amber',
|
|
114
|
+
position: 15,
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
key: 'athensGeorgia',
|
|
118
|
+
value: 'ATHENS_GEORGIA',
|
|
119
|
+
label: 'Athens - Georgia',
|
|
120
|
+
color: 'plum',
|
|
121
|
+
position: 16,
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
key: 'atlantaGeorgia',
|
|
125
|
+
value: 'ATLANTA_GEORGIA',
|
|
126
|
+
label: 'Atlanta - Georgia',
|
|
127
|
+
color: 'grass',
|
|
128
|
+
position: 17,
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
key: 'atlanticCityNewJersey',
|
|
132
|
+
value: 'ATLANTIC_CITY_NEW_JERSEY',
|
|
133
|
+
label: 'Atlantic City - New Jersey',
|
|
134
|
+
color: 'tomato',
|
|
135
|
+
position: 18,
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
key: 'auburnAlabama',
|
|
139
|
+
value: 'AUBURN_ALABAMA',
|
|
140
|
+
label: 'Auburn - Alabama',
|
|
141
|
+
color: 'iris',
|
|
142
|
+
position: 19,
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
key: 'augustaGeorgia',
|
|
146
|
+
value: 'AUGUSTA_GEORGIA',
|
|
147
|
+
label: 'Augusta - Georgia',
|
|
148
|
+
color: 'mint',
|
|
149
|
+
position: 20,
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
key: 'austinTexas',
|
|
153
|
+
value: 'AUSTIN_TEXAS',
|
|
154
|
+
label: 'Austin - Texas',
|
|
155
|
+
color: 'ruby',
|
|
156
|
+
position: 21,
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
key: 'bakersfieldCalifornia',
|
|
160
|
+
value: 'BAKERSFIELD_CALIFORNIA',
|
|
161
|
+
label: 'Bakersfield - California',
|
|
162
|
+
color: 'bronze',
|
|
163
|
+
position: 22,
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
key: 'baltimoreMaryland',
|
|
167
|
+
value: 'BALTIMORE_MARYLAND',
|
|
168
|
+
label: 'Baltimore - Maryland',
|
|
169
|
+
color: 'jade',
|
|
170
|
+
position: 23,
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
key: 'bangorMaine',
|
|
174
|
+
value: 'BANGOR_MAINE',
|
|
175
|
+
label: 'Bangor - Maine',
|
|
176
|
+
color: 'gray',
|
|
177
|
+
position: 24,
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
key: 'barnstableTownMassachusetts',
|
|
181
|
+
value: 'BARNSTABLE_TOWN_MASSACHUSETTS',
|
|
182
|
+
label: 'Barnstable Town - Massachusetts',
|
|
183
|
+
color: 'blue',
|
|
184
|
+
position: 25,
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
key: 'batonRougeLouisiana',
|
|
188
|
+
value: 'BATON_ROUGE_LOUISIANA',
|
|
189
|
+
label: 'Baton Rouge - Louisiana',
|
|
190
|
+
color: 'red',
|
|
191
|
+
position: 26,
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
key: 'battleCreekMichigan',
|
|
195
|
+
value: 'BATTLE_CREEK_MICHIGAN',
|
|
196
|
+
label: 'Battle Creek - Michigan',
|
|
197
|
+
color: 'green',
|
|
198
|
+
position: 27,
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
key: 'bayCityMichigan',
|
|
202
|
+
value: 'BAY_CITY_MICHIGAN',
|
|
203
|
+
label: 'Bay City - Michigan',
|
|
204
|
+
color: 'orange',
|
|
205
|
+
position: 28,
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
key: 'beaumontTexas',
|
|
209
|
+
value: 'BEAUMONT_TEXAS',
|
|
210
|
+
label: 'Beaumont - Texas',
|
|
211
|
+
color: 'purple',
|
|
212
|
+
position: 29,
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
key: 'beckleyWestVirginia',
|
|
216
|
+
value: 'BECKLEY_WEST_VIRGINIA',
|
|
217
|
+
label: 'Beckley - West Virginia',
|
|
218
|
+
color: 'yellow',
|
|
219
|
+
position: 30,
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
key: 'bellinghamWashington',
|
|
223
|
+
value: 'BELLINGHAM_WASHINGTON',
|
|
224
|
+
label: 'Bellingham - Washington',
|
|
225
|
+
color: 'pink',
|
|
226
|
+
position: 31,
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
key: 'bendOregon',
|
|
230
|
+
value: 'BEND_OREGON',
|
|
231
|
+
label: 'Bend - Oregon',
|
|
232
|
+
color: 'cyan',
|
|
233
|
+
position: 32,
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
key: 'billingsMontana',
|
|
237
|
+
value: 'BILLINGS_MONTANA',
|
|
238
|
+
label: 'Billings - Montana',
|
|
239
|
+
color: 'brown',
|
|
240
|
+
position: 33,
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
key: 'binghamtonNewYork',
|
|
244
|
+
value: 'BINGHAMTON_NEW_YORK',
|
|
245
|
+
label: 'Binghamton - New York',
|
|
246
|
+
color: 'lime',
|
|
247
|
+
position: 34,
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
key: 'birminghamAlabama',
|
|
251
|
+
value: 'BIRMINGHAM_ALABAMA',
|
|
252
|
+
label: 'Birmingham - Alabama',
|
|
253
|
+
color: 'violet',
|
|
254
|
+
position: 35,
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
key: 'bismarckNorthDakota',
|
|
258
|
+
value: 'BISMARCK_NORTH_DAKOTA',
|
|
259
|
+
label: 'Bismarck - North Dakota',
|
|
260
|
+
color: 'gold',
|
|
261
|
+
position: 36,
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
key: 'blacksburgVirginia',
|
|
265
|
+
value: 'BLACKSBURG_VIRGINIA',
|
|
266
|
+
label: 'Blacksburg - Virginia',
|
|
267
|
+
color: 'turquoise',
|
|
268
|
+
position: 37,
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
key: 'bloomingtonIllinois',
|
|
272
|
+
value: 'BLOOMINGTON_ILLINOIS',
|
|
273
|
+
label: 'Bloomington - Illinois',
|
|
274
|
+
color: 'crimson',
|
|
275
|
+
position: 38,
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
key: 'bloomingtonIndiana',
|
|
279
|
+
value: 'BLOOMINGTON_INDIANA',
|
|
280
|
+
label: 'Bloomington - Indiana',
|
|
281
|
+
color: 'sky',
|
|
282
|
+
position: 39,
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
key: 'bloomsburgPennsylvania',
|
|
286
|
+
value: 'BLOOMSBURG_PENNSYLVANIA',
|
|
287
|
+
label: 'Bloomsburg - Pennsylvania',
|
|
288
|
+
color: 'amber',
|
|
289
|
+
position: 40,
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
key: 'boiseCityIdaho',
|
|
293
|
+
value: 'BOISE_CITY_IDAHO',
|
|
294
|
+
label: 'Boise City - Idaho',
|
|
295
|
+
color: 'plum',
|
|
296
|
+
position: 41,
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
key: 'bostonMassachusetts',
|
|
300
|
+
value: 'BOSTON_MASSACHUSETTS',
|
|
301
|
+
label: 'Boston - Massachusetts',
|
|
302
|
+
color: 'grass',
|
|
303
|
+
position: 42,
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
key: 'boulderColorado',
|
|
307
|
+
value: 'BOULDER_COLORADO',
|
|
308
|
+
label: 'Boulder - Colorado',
|
|
309
|
+
color: 'tomato',
|
|
310
|
+
position: 43,
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
key: 'bowlingGreenKentucky',
|
|
314
|
+
value: 'BOWLING_GREEN_KENTUCKY',
|
|
315
|
+
label: 'Bowling Green - Kentucky',
|
|
316
|
+
color: 'iris',
|
|
317
|
+
position: 44,
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
key: 'bremertonWashington',
|
|
321
|
+
value: 'BREMERTON_WASHINGTON',
|
|
322
|
+
label: 'Bremerton - Washington',
|
|
323
|
+
color: 'mint',
|
|
324
|
+
position: 45,
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
key: 'bridgeportConnecticut',
|
|
328
|
+
value: 'BRIDGEPORT_CONNECTICUT',
|
|
329
|
+
label: 'Bridgeport - Connecticut',
|
|
330
|
+
color: 'ruby',
|
|
331
|
+
position: 46,
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
key: 'brownsvilleTexas',
|
|
335
|
+
value: 'BROWNSVILLE_TEXAS',
|
|
336
|
+
label: 'Brownsville - Texas',
|
|
337
|
+
color: 'bronze',
|
|
338
|
+
position: 47,
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
key: 'brunswickGeorgia',
|
|
342
|
+
value: 'BRUNSWICK_GEORGIA',
|
|
343
|
+
label: 'Brunswick - Georgia',
|
|
344
|
+
color: 'jade',
|
|
345
|
+
position: 48,
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
key: 'buffaloNewYork',
|
|
349
|
+
value: 'BUFFALO_NEW_YORK',
|
|
350
|
+
label: 'Buffalo - New York',
|
|
351
|
+
color: 'gray',
|
|
352
|
+
position: 49,
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
key: 'burlingtonNorthCarolina',
|
|
356
|
+
value: 'BURLINGTON_NORTH_CAROLINA',
|
|
357
|
+
label: 'Burlington - North Carolina',
|
|
358
|
+
color: 'blue',
|
|
359
|
+
position: 50,
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
key: 'burlingtonVermont',
|
|
363
|
+
value: 'BURLINGTON_VERMONT',
|
|
364
|
+
label: 'Burlington - Vermont',
|
|
365
|
+
color: 'red',
|
|
366
|
+
position: 51,
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
key: 'californiaMaryland',
|
|
370
|
+
value: 'CALIFORNIA_MARYLAND',
|
|
371
|
+
label: 'California - Maryland',
|
|
372
|
+
color: 'green',
|
|
373
|
+
position: 52,
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
key: 'cantonOhio',
|
|
377
|
+
value: 'CANTON_OHIO',
|
|
378
|
+
label: 'Canton - Ohio',
|
|
379
|
+
color: 'orange',
|
|
380
|
+
position: 53,
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
key: 'capeCoralFlorida',
|
|
384
|
+
value: 'CAPE_CORAL_FLORIDA',
|
|
385
|
+
label: 'Cape Coral - Florida',
|
|
386
|
+
color: 'purple',
|
|
387
|
+
position: 54,
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
key: 'capeGirardeauMissouri',
|
|
391
|
+
value: 'CAPE_GIRARDEAU_MISSOURI',
|
|
392
|
+
label: 'Cape Girardeau - Missouri',
|
|
393
|
+
color: 'yellow',
|
|
394
|
+
position: 55,
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
key: 'carbondaleIllinois',
|
|
398
|
+
value: 'CARBONDALE_ILLINOIS',
|
|
399
|
+
label: 'Carbondale - Illinois',
|
|
400
|
+
color: 'pink',
|
|
401
|
+
position: 56,
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
key: 'carsonCityNevada',
|
|
405
|
+
value: 'CARSON_CITY_NEVADA',
|
|
406
|
+
label: 'Carson City - Nevada',
|
|
407
|
+
color: 'cyan',
|
|
408
|
+
position: 57,
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
key: 'casperWyoming',
|
|
412
|
+
value: 'CASPER_WYOMING',
|
|
413
|
+
label: 'Casper - Wyoming',
|
|
414
|
+
color: 'brown',
|
|
415
|
+
position: 58,
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
key: 'cedarRapidsIowa',
|
|
419
|
+
value: 'CEDAR_RAPIDS_IOWA',
|
|
420
|
+
label: 'Cedar Rapids - Iowa',
|
|
421
|
+
color: 'lime',
|
|
422
|
+
position: 59,
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
key: 'chambersburgPennsylvania',
|
|
426
|
+
value: 'CHAMBERSBURG_PENNSYLVANIA',
|
|
427
|
+
label: 'Chambersburg - Pennsylvania',
|
|
428
|
+
color: 'violet',
|
|
429
|
+
position: 60,
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
key: 'champaignIllinois',
|
|
433
|
+
value: 'CHAMPAIGN_ILLINOIS',
|
|
434
|
+
label: 'Champaign - Illinois',
|
|
435
|
+
color: 'gold',
|
|
436
|
+
position: 61,
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
key: 'charlestonSouthCarolina',
|
|
440
|
+
value: 'CHARLESTON_SOUTH_CAROLINA',
|
|
441
|
+
label: 'Charleston - South Carolina',
|
|
442
|
+
color: 'turquoise',
|
|
443
|
+
position: 62,
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
key: 'charlestonWestVirginia',
|
|
447
|
+
value: 'CHARLESTON_WEST_VIRGINIA',
|
|
448
|
+
label: 'Charleston - West Virginia',
|
|
449
|
+
color: 'crimson',
|
|
450
|
+
position: 63,
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
key: 'charlotteNorthCarolina',
|
|
454
|
+
value: 'CHARLOTTE_NORTH_CAROLINA',
|
|
455
|
+
label: 'Charlotte - North Carolina',
|
|
456
|
+
color: 'sky',
|
|
457
|
+
position: 64,
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
key: 'charlottesvilleVirginia',
|
|
461
|
+
value: 'CHARLOTTESVILLE_VIRGINIA',
|
|
462
|
+
label: 'Charlottesville - Virginia',
|
|
463
|
+
color: 'amber',
|
|
464
|
+
position: 65,
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
key: 'chattanoogaTennessee',
|
|
468
|
+
value: 'CHATTANOOGA_TENNESSEE',
|
|
469
|
+
label: 'Chattanooga - Tennessee',
|
|
470
|
+
color: 'plum',
|
|
471
|
+
position: 66,
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
key: 'cheyenneWyoming',
|
|
475
|
+
value: 'CHEYENNE_WYOMING',
|
|
476
|
+
label: 'Cheyenne - Wyoming',
|
|
477
|
+
color: 'grass',
|
|
478
|
+
position: 67,
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
key: 'chicagoIllinois',
|
|
482
|
+
value: 'CHICAGO_ILLINOIS',
|
|
483
|
+
label: 'Chicago - Illinois',
|
|
484
|
+
color: 'tomato',
|
|
485
|
+
position: 68,
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
key: 'chicoCalifornia',
|
|
489
|
+
value: 'CHICO_CALIFORNIA',
|
|
490
|
+
label: 'Chico - California',
|
|
491
|
+
color: 'iris',
|
|
492
|
+
position: 69,
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
key: 'cincinnatiOhio',
|
|
496
|
+
value: 'CINCINNATI_OHIO',
|
|
497
|
+
label: 'Cincinnati - Ohio',
|
|
498
|
+
color: 'mint',
|
|
499
|
+
position: 70,
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
key: 'clarksvilleTennessee',
|
|
503
|
+
value: 'CLARKSVILLE_TENNESSEE',
|
|
504
|
+
label: 'Clarksville - Tennessee',
|
|
505
|
+
color: 'ruby',
|
|
506
|
+
position: 71,
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
key: 'clevelandOhio',
|
|
510
|
+
value: 'CLEVELAND_OHIO',
|
|
511
|
+
label: 'Cleveland - Ohio',
|
|
512
|
+
color: 'bronze',
|
|
513
|
+
position: 72,
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
key: 'clevelandTennessee',
|
|
517
|
+
value: 'CLEVELAND_TENNESSEE',
|
|
518
|
+
label: 'Cleveland - Tennessee',
|
|
519
|
+
color: 'jade',
|
|
520
|
+
position: 73,
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
key: 'coeurDAleneIdaho',
|
|
524
|
+
value: 'COEUR_D_ALENE_IDAHO',
|
|
525
|
+
label: "Coeur d'Alene - Idaho",
|
|
526
|
+
color: 'gray',
|
|
527
|
+
position: 74,
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
key: 'collegeStationTexas',
|
|
531
|
+
value: 'COLLEGE_STATION_TEXAS',
|
|
532
|
+
label: 'College Station - Texas',
|
|
533
|
+
color: 'blue',
|
|
534
|
+
position: 75,
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
key: 'coloradoSpringsColorado',
|
|
538
|
+
value: 'COLORADO_SPRINGS_COLORADO',
|
|
539
|
+
label: 'Colorado Springs - Colorado',
|
|
540
|
+
color: 'red',
|
|
541
|
+
position: 76,
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
key: 'columbiaMissouri',
|
|
545
|
+
value: 'COLUMBIA_MISSOURI',
|
|
546
|
+
label: 'Columbia - Missouri',
|
|
547
|
+
color: 'green',
|
|
548
|
+
position: 77,
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
key: 'columbiaSouthCarolina',
|
|
552
|
+
value: 'COLUMBIA_SOUTH_CAROLINA',
|
|
553
|
+
label: 'Columbia - South Carolina',
|
|
554
|
+
color: 'orange',
|
|
555
|
+
position: 78,
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
key: 'columbusGeorgia',
|
|
559
|
+
value: 'COLUMBUS_GEORGIA',
|
|
560
|
+
label: 'Columbus - Georgia',
|
|
561
|
+
color: 'purple',
|
|
562
|
+
position: 79,
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
key: 'columbusIndiana',
|
|
566
|
+
value: 'COLUMBUS_INDIANA',
|
|
567
|
+
label: 'Columbus - Indiana',
|
|
568
|
+
color: 'yellow',
|
|
569
|
+
position: 80,
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
key: 'columbusOhio',
|
|
573
|
+
value: 'COLUMBUS_OHIO',
|
|
574
|
+
label: 'Columbus - Ohio',
|
|
575
|
+
color: 'pink',
|
|
576
|
+
position: 81,
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
key: 'corpusChristiTexas',
|
|
580
|
+
value: 'CORPUS_CHRISTI_TEXAS',
|
|
581
|
+
label: 'Corpus Christi - Texas',
|
|
582
|
+
color: 'cyan',
|
|
583
|
+
position: 82,
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
key: 'corvallisOregon',
|
|
587
|
+
value: 'CORVALLIS_OREGON',
|
|
588
|
+
label: 'Corvallis - Oregon',
|
|
589
|
+
color: 'brown',
|
|
590
|
+
position: 83,
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
key: 'crestviewFlorida',
|
|
594
|
+
value: 'CRESTVIEW_FLORIDA',
|
|
595
|
+
label: 'Crestview - Florida',
|
|
596
|
+
color: 'lime',
|
|
597
|
+
position: 84,
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
key: 'cumberlandMaryland',
|
|
601
|
+
value: 'CUMBERLAND_MARYLAND',
|
|
602
|
+
label: 'Cumberland - Maryland',
|
|
603
|
+
color: 'violet',
|
|
604
|
+
position: 85,
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
key: 'dallasTexas',
|
|
608
|
+
value: 'DALLAS_TEXAS',
|
|
609
|
+
label: 'Dallas - Texas',
|
|
610
|
+
color: 'gold',
|
|
611
|
+
position: 86,
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
key: 'daltonGeorgia',
|
|
615
|
+
value: 'DALTON_GEORGIA',
|
|
616
|
+
label: 'Dalton - Georgia',
|
|
617
|
+
color: 'turquoise',
|
|
618
|
+
position: 87,
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
key: 'danvilleIllinois',
|
|
622
|
+
value: 'DANVILLE_ILLINOIS',
|
|
623
|
+
label: 'Danville - Illinois',
|
|
624
|
+
color: 'crimson',
|
|
625
|
+
position: 88,
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
key: 'daphneAlabama',
|
|
629
|
+
value: 'DAPHNE_ALABAMA',
|
|
630
|
+
label: 'Daphne - Alabama',
|
|
631
|
+
color: 'sky',
|
|
632
|
+
position: 89,
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
key: 'davenportIowa',
|
|
636
|
+
value: 'DAVENPORT_IOWA',
|
|
637
|
+
label: 'Davenport - Iowa',
|
|
638
|
+
color: 'amber',
|
|
639
|
+
position: 90,
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
key: 'daytonOhio',
|
|
643
|
+
value: 'DAYTON_OHIO',
|
|
644
|
+
label: 'Dayton - Ohio',
|
|
645
|
+
color: 'plum',
|
|
646
|
+
position: 91,
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
key: 'decaturAlabama',
|
|
650
|
+
value: 'DECATUR_ALABAMA',
|
|
651
|
+
label: 'Decatur - Alabama',
|
|
652
|
+
color: 'grass',
|
|
653
|
+
position: 92,
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
key: 'decaturIllinois',
|
|
657
|
+
value: 'DECATUR_ILLINOIS',
|
|
658
|
+
label: 'Decatur - Illinois',
|
|
659
|
+
color: 'tomato',
|
|
660
|
+
position: 93,
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
key: 'deltonaFlorida',
|
|
664
|
+
value: 'DELTONA_FLORIDA',
|
|
665
|
+
label: 'Deltona - Florida',
|
|
666
|
+
color: 'iris',
|
|
667
|
+
position: 94,
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
key: 'denverColorado',
|
|
671
|
+
value: 'DENVER_COLORADO',
|
|
672
|
+
label: 'Denver - Colorado',
|
|
673
|
+
color: 'mint',
|
|
674
|
+
position: 95,
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
key: 'desMoinesIowa',
|
|
678
|
+
value: 'DES_MOINES_IOWA',
|
|
679
|
+
label: 'Des Moines - Iowa',
|
|
680
|
+
color: 'ruby',
|
|
681
|
+
position: 96,
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
key: 'detroitMichigan',
|
|
685
|
+
value: 'DETROIT_MICHIGAN',
|
|
686
|
+
label: 'Detroit - Michigan',
|
|
687
|
+
color: 'bronze',
|
|
688
|
+
position: 97,
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
key: 'districtOfColumbia',
|
|
692
|
+
value: 'DISTRICT_OF_COLUMBIA',
|
|
693
|
+
label: 'District of Columbia',
|
|
694
|
+
color: 'jade',
|
|
695
|
+
position: 98,
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
key: 'dothanAlabama',
|
|
699
|
+
value: 'DOTHAN_ALABAMA',
|
|
700
|
+
label: 'Dothan - Alabama',
|
|
701
|
+
color: 'gray',
|
|
702
|
+
position: 99,
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
key: 'doverDelaware',
|
|
706
|
+
value: 'DOVER_DELAWARE',
|
|
707
|
+
label: 'Dover - Delaware',
|
|
708
|
+
color: 'blue',
|
|
709
|
+
position: 100,
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
key: 'dubuqueIowa',
|
|
713
|
+
value: 'DUBUQUE_IOWA',
|
|
714
|
+
label: 'Dubuque - Iowa',
|
|
715
|
+
color: 'red',
|
|
716
|
+
position: 101,
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
key: 'duluthMinnesota',
|
|
720
|
+
value: 'DULUTH_MINNESOTA',
|
|
721
|
+
label: 'Duluth - Minnesota',
|
|
722
|
+
color: 'green',
|
|
723
|
+
position: 102,
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
key: 'durhamNorthCarolina',
|
|
727
|
+
value: 'DURHAM_NORTH_CAROLINA',
|
|
728
|
+
label: 'Durham - North Carolina',
|
|
729
|
+
color: 'orange',
|
|
730
|
+
position: 103,
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
key: 'eastStroudsburgPennsylvania',
|
|
734
|
+
value: 'EAST_STROUDSBURG_PENNSYLVANIA',
|
|
735
|
+
label: 'East Stroudsburg - Pennsylvania',
|
|
736
|
+
color: 'purple',
|
|
737
|
+
position: 104,
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
key: 'eauClaireWisconsin',
|
|
741
|
+
value: 'EAU_CLAIRE_WISCONSIN',
|
|
742
|
+
label: 'Eau Claire - Wisconsin',
|
|
743
|
+
color: 'yellow',
|
|
744
|
+
position: 105,
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
key: 'elCentroCalifornia',
|
|
748
|
+
value: 'EL_CENTRO_CALIFORNIA',
|
|
749
|
+
label: 'El Centro - California',
|
|
750
|
+
color: 'pink',
|
|
751
|
+
position: 106,
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
key: 'elPasoTexas',
|
|
755
|
+
value: 'EL_PASO_TEXAS',
|
|
756
|
+
label: 'El Paso - Texas',
|
|
757
|
+
color: 'cyan',
|
|
758
|
+
position: 107,
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
key: 'elizabethtownKentucky',
|
|
762
|
+
value: 'ELIZABETHTOWN_KENTUCKY',
|
|
763
|
+
label: 'Elizabethtown - Kentucky',
|
|
764
|
+
color: 'brown',
|
|
765
|
+
position: 108,
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
key: 'elkhartIndiana',
|
|
769
|
+
value: 'ELKHART_INDIANA',
|
|
770
|
+
label: 'Elkhart - Indiana',
|
|
771
|
+
color: 'lime',
|
|
772
|
+
position: 109,
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
key: 'elmiraNewYork',
|
|
776
|
+
value: 'ELMIRA_NEW_YORK',
|
|
777
|
+
label: 'Elmira - New York',
|
|
778
|
+
color: 'violet',
|
|
779
|
+
position: 110,
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
key: 'enidOklahoma',
|
|
783
|
+
value: 'ENID_OKLAHOMA',
|
|
784
|
+
label: 'Enid - Oklahoma',
|
|
785
|
+
color: 'gold',
|
|
786
|
+
position: 111,
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
key: 'eriePennsylvania',
|
|
790
|
+
value: 'ERIE_PENNSYLVANIA',
|
|
791
|
+
label: 'Erie - Pennsylvania',
|
|
792
|
+
color: 'turquoise',
|
|
793
|
+
position: 112,
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
key: 'eugeneOregon',
|
|
797
|
+
value: 'EUGENE_OREGON',
|
|
798
|
+
label: 'Eugene - Oregon',
|
|
799
|
+
color: 'crimson',
|
|
800
|
+
position: 113,
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
key: 'evansvilleIndiana',
|
|
804
|
+
value: 'EVANSVILLE_INDIANA',
|
|
805
|
+
label: 'Evansville - Indiana',
|
|
806
|
+
color: 'sky',
|
|
807
|
+
position: 114,
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
key: 'fairbanksAlaska',
|
|
811
|
+
value: 'FAIRBANKS_ALASKA',
|
|
812
|
+
label: 'Fairbanks - Alaska',
|
|
813
|
+
color: 'amber',
|
|
814
|
+
position: 115,
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
key: 'fargoNorthDakota',
|
|
818
|
+
value: 'FARGO_NORTH_DAKOTA',
|
|
819
|
+
label: 'Fargo - North Dakota',
|
|
820
|
+
color: 'plum',
|
|
821
|
+
position: 116,
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
key: 'farmingtonNewMexico',
|
|
825
|
+
value: 'FARMINGTON_NEW_MEXICO',
|
|
826
|
+
label: 'Farmington - New Mexico',
|
|
827
|
+
color: 'grass',
|
|
828
|
+
position: 117,
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
key: 'fayettevilleArkansas',
|
|
832
|
+
value: 'FAYETTEVILLE_ARKANSAS',
|
|
833
|
+
label: 'Fayetteville - Arkansas',
|
|
834
|
+
color: 'tomato',
|
|
835
|
+
position: 118,
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
key: 'fayettevilleNorthCarolina',
|
|
839
|
+
value: 'FAYETTEVILLE_NORTH_CAROLINA',
|
|
840
|
+
label: 'Fayetteville - North Carolina',
|
|
841
|
+
color: 'iris',
|
|
842
|
+
position: 119,
|
|
843
|
+
},
|
|
844
|
+
{
|
|
845
|
+
key: 'flagstaffArizona',
|
|
846
|
+
value: 'FLAGSTAFF_ARIZONA',
|
|
847
|
+
label: 'Flagstaff - Arizona',
|
|
848
|
+
color: 'mint',
|
|
849
|
+
position: 120,
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
key: 'flintMichigan',
|
|
853
|
+
value: 'FLINT_MICHIGAN',
|
|
854
|
+
label: 'Flint - Michigan',
|
|
855
|
+
color: 'ruby',
|
|
856
|
+
position: 121,
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
key: 'florenceAlabama',
|
|
860
|
+
value: 'FLORENCE_ALABAMA',
|
|
861
|
+
label: 'Florence - Alabama',
|
|
862
|
+
color: 'bronze',
|
|
863
|
+
position: 122,
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
key: 'florenceSouthCarolina',
|
|
867
|
+
value: 'FLORENCE_SOUTH_CAROLINA',
|
|
868
|
+
label: 'Florence - South Carolina',
|
|
869
|
+
color: 'jade',
|
|
870
|
+
position: 123,
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
key: 'fondDuLacWisconsin',
|
|
874
|
+
value: 'FOND_DU_LAC_WISCONSIN',
|
|
875
|
+
label: 'Fond Du Lac - Wisconsin',
|
|
876
|
+
color: 'gray',
|
|
877
|
+
position: 124,
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
key: 'fortCollinsColorado',
|
|
881
|
+
value: 'FORT_COLLINS_COLORADO',
|
|
882
|
+
label: 'Fort Collins - Colorado',
|
|
883
|
+
color: 'blue',
|
|
884
|
+
position: 125,
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
key: 'fortSmithArkansas',
|
|
888
|
+
value: 'FORT_SMITH_ARKANSAS',
|
|
889
|
+
label: 'Fort Smith - Arkansas',
|
|
890
|
+
color: 'red',
|
|
891
|
+
position: 126,
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
key: 'fortWayneIndiana',
|
|
895
|
+
value: 'FORT_WAYNE_INDIANA',
|
|
896
|
+
label: 'Fort Wayne - Indiana',
|
|
897
|
+
color: 'green',
|
|
898
|
+
position: 127,
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
key: 'fresnoCalifornia',
|
|
902
|
+
value: 'FRESNO_CALIFORNIA',
|
|
903
|
+
label: 'Fresno - California',
|
|
904
|
+
color: 'orange',
|
|
905
|
+
position: 128,
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
key: 'gadsdenAlabama',
|
|
909
|
+
value: 'GADSDEN_ALABAMA',
|
|
910
|
+
label: 'Gadsden - Alabama',
|
|
911
|
+
color: 'purple',
|
|
912
|
+
position: 129,
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
key: 'gainesvilleFlorida',
|
|
916
|
+
value: 'GAINESVILLE_FLORIDA',
|
|
917
|
+
label: 'Gainesville - Florida',
|
|
918
|
+
color: 'yellow',
|
|
919
|
+
position: 130,
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
key: 'gainesvilleGeorgia',
|
|
923
|
+
value: 'GAINESVILLE_GEORGIA',
|
|
924
|
+
label: 'Gainesville - Georgia',
|
|
925
|
+
color: 'pink',
|
|
926
|
+
position: 131,
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
key: 'gettysburgPennsylvania',
|
|
930
|
+
value: 'GETTYSBURG_PENNSYLVANIA',
|
|
931
|
+
label: 'Gettysburg - Pennsylvania',
|
|
932
|
+
color: 'cyan',
|
|
933
|
+
position: 132,
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
key: 'glensFallsNewYork',
|
|
937
|
+
value: 'GLENS_FALLS_NEW_YORK',
|
|
938
|
+
label: 'Glens Falls - New York',
|
|
939
|
+
color: 'brown',
|
|
940
|
+
position: 133,
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
key: 'goldsboroNorthCarolina',
|
|
944
|
+
value: 'GOLDSBORO_NORTH_CAROLINA',
|
|
945
|
+
label: 'Goldsboro - North Carolina',
|
|
946
|
+
color: 'lime',
|
|
947
|
+
position: 134,
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
key: 'grandForksNorthDakota',
|
|
951
|
+
value: 'GRAND_FORKS_NORTH_DAKOTA',
|
|
952
|
+
label: 'Grand Forks - North Dakota',
|
|
953
|
+
color: 'violet',
|
|
954
|
+
position: 135,
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
key: 'grandIslandNebraska',
|
|
958
|
+
value: 'GRAND_ISLAND_NEBRASKA',
|
|
959
|
+
label: 'Grand Island - Nebraska',
|
|
960
|
+
color: 'gold',
|
|
961
|
+
position: 136,
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
key: 'grandJunctionColorado',
|
|
965
|
+
value: 'GRAND_JUNCTION_COLORADO',
|
|
966
|
+
label: 'Grand Junction - Colorado',
|
|
967
|
+
color: 'turquoise',
|
|
968
|
+
position: 137,
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
key: 'grandRapidsMichigan',
|
|
972
|
+
value: 'GRAND_RAPIDS_MICHIGAN',
|
|
973
|
+
label: 'Grand Rapids - Michigan',
|
|
974
|
+
color: 'crimson',
|
|
975
|
+
position: 138,
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
key: 'grantsPassOregon',
|
|
979
|
+
value: 'GRANTS_PASS_OREGON',
|
|
980
|
+
label: 'Grants Pass - Oregon',
|
|
981
|
+
color: 'sky',
|
|
982
|
+
position: 139,
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
key: 'greatFallsMontana',
|
|
986
|
+
value: 'GREAT_FALLS_MONTANA',
|
|
987
|
+
label: 'Great Falls - Montana',
|
|
988
|
+
color: 'amber',
|
|
989
|
+
position: 140,
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
key: 'greeleyColorado',
|
|
993
|
+
value: 'GREELEY_COLORADO',
|
|
994
|
+
label: 'Greeley - Colorado',
|
|
995
|
+
color: 'plum',
|
|
996
|
+
position: 141,
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
key: 'greenBayWisconsin',
|
|
1000
|
+
value: 'GREEN_BAY_WISCONSIN',
|
|
1001
|
+
label: 'Green Bay - Wisconsin',
|
|
1002
|
+
color: 'grass',
|
|
1003
|
+
position: 142,
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
key: 'greensboroNorthCarolina',
|
|
1007
|
+
value: 'GREENSBORO_NORTH_CAROLINA',
|
|
1008
|
+
label: 'Greensboro - North Carolina',
|
|
1009
|
+
color: 'tomato',
|
|
1010
|
+
position: 143,
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
key: 'greenvilleNorthCarolina',
|
|
1014
|
+
value: 'GREENVILLE_NORTH_CAROLINA',
|
|
1015
|
+
label: 'Greenville - North Carolina',
|
|
1016
|
+
color: 'iris',
|
|
1017
|
+
position: 144,
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
key: 'greenvilleSouthCarolina',
|
|
1021
|
+
value: 'GREENVILLE_SOUTH_CAROLINA',
|
|
1022
|
+
label: 'Greenville - South Carolina',
|
|
1023
|
+
color: 'mint',
|
|
1024
|
+
position: 145,
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
key: 'gulfportMississippi',
|
|
1028
|
+
value: 'GULFPORT_MISSISSIPPI',
|
|
1029
|
+
label: 'Gulfport - Mississippi',
|
|
1030
|
+
color: 'ruby',
|
|
1031
|
+
position: 146,
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
key: 'hagerstownMaryland',
|
|
1035
|
+
value: 'HAGERSTOWN_MARYLAND',
|
|
1036
|
+
label: 'Hagerstown - Maryland',
|
|
1037
|
+
color: 'bronze',
|
|
1038
|
+
position: 147,
|
|
1039
|
+
},
|
|
1040
|
+
{
|
|
1041
|
+
key: 'hammondLouisiana',
|
|
1042
|
+
value: 'HAMMOND_LOUISIANA',
|
|
1043
|
+
label: 'Hammond - Louisiana',
|
|
1044
|
+
color: 'jade',
|
|
1045
|
+
position: 148,
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
key: 'hanfordCalifornia',
|
|
1049
|
+
value: 'HANFORD_CALIFORNIA',
|
|
1050
|
+
label: 'Hanford - California',
|
|
1051
|
+
color: 'gray',
|
|
1052
|
+
position: 149,
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
key: 'harrisburgPennsylvania',
|
|
1056
|
+
value: 'HARRISBURG_PENNSYLVANIA',
|
|
1057
|
+
label: 'Harrisburg - Pennsylvania',
|
|
1058
|
+
color: 'blue',
|
|
1059
|
+
position: 150,
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
key: 'harrisonburgVirginia',
|
|
1063
|
+
value: 'HARRISONBURG_VIRGINIA',
|
|
1064
|
+
label: 'Harrisonburg - Virginia',
|
|
1065
|
+
color: 'red',
|
|
1066
|
+
position: 151,
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
key: 'hartfordConnecticut',
|
|
1070
|
+
value: 'HARTFORD_CONNECTICUT',
|
|
1071
|
+
label: 'Hartford - Connecticut',
|
|
1072
|
+
color: 'green',
|
|
1073
|
+
position: 152,
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
key: 'hattiesburgMississippi',
|
|
1077
|
+
value: 'HATTIESBURG_MISSISSIPPI',
|
|
1078
|
+
label: 'Hattiesburg - Mississippi',
|
|
1079
|
+
color: 'orange',
|
|
1080
|
+
position: 153,
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
key: 'hickoryNorthCarolina',
|
|
1084
|
+
value: 'HICKORY_NORTH_CAROLINA',
|
|
1085
|
+
label: 'Hickory - North Carolina',
|
|
1086
|
+
color: 'purple',
|
|
1087
|
+
position: 154,
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
key: 'hiltonHeadIslandSouthCarolina',
|
|
1091
|
+
value: 'HILTON_HEAD_ISLAND_SOUTH_CAROLINA',
|
|
1092
|
+
label: 'Hilton Head Island - South Carolina',
|
|
1093
|
+
color: 'yellow',
|
|
1094
|
+
position: 155,
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
key: 'hinesvilleGeorgia',
|
|
1098
|
+
value: 'HINESVILLE_GEORGIA',
|
|
1099
|
+
label: 'Hinesville - Georgia',
|
|
1100
|
+
color: 'pink',
|
|
1101
|
+
position: 156,
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
key: 'homosassaSpringsFlorida',
|
|
1105
|
+
value: 'HOMOSASSA_SPRINGS_FLORIDA',
|
|
1106
|
+
label: 'Homosassa Springs - Florida',
|
|
1107
|
+
color: 'cyan',
|
|
1108
|
+
position: 157,
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
key: 'hotSpringsArkansas',
|
|
1112
|
+
value: 'HOT_SPRINGS_ARKANSAS',
|
|
1113
|
+
label: 'Hot Springs - Arkansas',
|
|
1114
|
+
color: 'brown',
|
|
1115
|
+
position: 158,
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
key: 'houmaLouisiana',
|
|
1119
|
+
value: 'HOUMA_LOUISIANA',
|
|
1120
|
+
label: 'Houma - Louisiana',
|
|
1121
|
+
color: 'lime',
|
|
1122
|
+
position: 159,
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
key: 'houstonTexas',
|
|
1126
|
+
value: 'HOUSTON_TEXAS',
|
|
1127
|
+
label: 'Houston - Texas',
|
|
1128
|
+
color: 'violet',
|
|
1129
|
+
position: 160,
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
key: 'huntingtonWestVirginia',
|
|
1133
|
+
value: 'HUNTINGTON_WEST_VIRGINIA',
|
|
1134
|
+
label: 'Huntington - West Virginia',
|
|
1135
|
+
color: 'gold',
|
|
1136
|
+
position: 161,
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
key: 'huntsvilleAlabama',
|
|
1140
|
+
value: 'HUNTSVILLE_ALABAMA',
|
|
1141
|
+
label: 'Huntsville - Alabama',
|
|
1142
|
+
color: 'turquoise',
|
|
1143
|
+
position: 162,
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
key: 'idahoFallsIdaho',
|
|
1147
|
+
value: 'IDAHO_FALLS_IDAHO',
|
|
1148
|
+
label: 'Idaho Falls - Idaho',
|
|
1149
|
+
color: 'crimson',
|
|
1150
|
+
position: 163,
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
key: 'indianapolisIndiana',
|
|
1154
|
+
value: 'INDIANAPOLIS_INDIANA',
|
|
1155
|
+
label: 'Indianapolis - Indiana',
|
|
1156
|
+
color: 'sky',
|
|
1157
|
+
position: 164,
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
key: 'iowaCityIowa',
|
|
1161
|
+
value: 'IOWA_CITY_IOWA',
|
|
1162
|
+
label: 'Iowa City - Iowa',
|
|
1163
|
+
color: 'amber',
|
|
1164
|
+
position: 165,
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
key: 'ithacaNewYork',
|
|
1168
|
+
value: 'ITHACA_NEW_YORK',
|
|
1169
|
+
label: 'Ithaca - New York',
|
|
1170
|
+
color: 'plum',
|
|
1171
|
+
position: 166,
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
key: 'jacksonMichigan',
|
|
1175
|
+
value: 'JACKSON_MICHIGAN',
|
|
1176
|
+
label: 'Jackson - Michigan',
|
|
1177
|
+
color: 'grass',
|
|
1178
|
+
position: 167,
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
key: 'jacksonMississippi',
|
|
1182
|
+
value: 'JACKSON_MISSISSIPPI',
|
|
1183
|
+
label: 'Jackson - Mississippi',
|
|
1184
|
+
color: 'tomato',
|
|
1185
|
+
position: 168,
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
key: 'jacksonTennessee',
|
|
1189
|
+
value: 'JACKSON_TENNESSEE',
|
|
1190
|
+
label: 'Jackson - Tennessee',
|
|
1191
|
+
color: 'iris',
|
|
1192
|
+
position: 169,
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
key: 'jacksonvilleFlorida',
|
|
1196
|
+
value: 'JACKSONVILLE_FLORIDA',
|
|
1197
|
+
label: 'Jacksonville - Florida',
|
|
1198
|
+
color: 'mint',
|
|
1199
|
+
position: 170,
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
key: 'jacksonvilleNorthCarolina',
|
|
1203
|
+
value: 'JACKSONVILLE_NORTH_CAROLINA',
|
|
1204
|
+
label: 'Jacksonville - North Carolina',
|
|
1205
|
+
color: 'ruby',
|
|
1206
|
+
position: 171,
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
key: 'janesvilleWisconsin',
|
|
1210
|
+
value: 'JANESVILLE_WISCONSIN',
|
|
1211
|
+
label: 'Janesville - Wisconsin',
|
|
1212
|
+
color: 'bronze',
|
|
1213
|
+
position: 172,
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
key: 'jeffersonCityMissouri',
|
|
1217
|
+
value: 'JEFFERSON_CITY_MISSOURI',
|
|
1218
|
+
label: 'Jefferson City - Missouri',
|
|
1219
|
+
color: 'jade',
|
|
1220
|
+
position: 173,
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
key: 'johnsonCityTennessee',
|
|
1224
|
+
value: 'JOHNSON_CITY_TENNESSEE',
|
|
1225
|
+
label: 'Johnson City - Tennessee',
|
|
1226
|
+
color: 'gray',
|
|
1227
|
+
position: 174,
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
key: 'johnstownPennsylvania',
|
|
1231
|
+
value: 'JOHNSTOWN_PENNSYLVANIA',
|
|
1232
|
+
label: 'Johnstown - Pennsylvania',
|
|
1233
|
+
color: 'blue',
|
|
1234
|
+
position: 175,
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
key: 'jonesboroArkansas',
|
|
1238
|
+
value: 'JONESBORO_ARKANSAS',
|
|
1239
|
+
label: 'Jonesboro - Arkansas',
|
|
1240
|
+
color: 'red',
|
|
1241
|
+
position: 176,
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
key: 'joplinMissouri',
|
|
1245
|
+
value: 'JOPLIN_MISSOURI',
|
|
1246
|
+
label: 'Joplin - Missouri',
|
|
1247
|
+
color: 'green',
|
|
1248
|
+
position: 177,
|
|
1249
|
+
},
|
|
1250
|
+
{
|
|
1251
|
+
key: 'kahuluiHawaii',
|
|
1252
|
+
value: 'KAHULUI_HAWAII',
|
|
1253
|
+
label: 'Kahului - Hawaii',
|
|
1254
|
+
color: 'orange',
|
|
1255
|
+
position: 178,
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
key: 'kalamazooMichigan',
|
|
1259
|
+
value: 'KALAMAZOO_MICHIGAN',
|
|
1260
|
+
label: 'Kalamazoo - Michigan',
|
|
1261
|
+
color: 'purple',
|
|
1262
|
+
position: 179,
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
key: 'kankakeeIllinois',
|
|
1266
|
+
value: 'KANKAKEE_ILLINOIS',
|
|
1267
|
+
label: 'Kankakee - Illinois',
|
|
1268
|
+
color: 'yellow',
|
|
1269
|
+
position: 180,
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
key: 'kansasCityMissouri',
|
|
1273
|
+
value: 'KANSAS_CITY_MISSOURI',
|
|
1274
|
+
label: 'Kansas City - Missouri',
|
|
1275
|
+
color: 'pink',
|
|
1276
|
+
position: 181,
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
key: 'kennewickWashington',
|
|
1280
|
+
value: 'KENNEWICK_WASHINGTON',
|
|
1281
|
+
label: 'Kennewick - Washington',
|
|
1282
|
+
color: 'cyan',
|
|
1283
|
+
position: 182,
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
key: 'killeenTexas',
|
|
1287
|
+
value: 'KILLEEN_TEXAS',
|
|
1288
|
+
label: 'Killeen - Texas',
|
|
1289
|
+
color: 'brown',
|
|
1290
|
+
position: 183,
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
key: 'kingsportTennessee',
|
|
1294
|
+
value: 'KINGSPORT_TENNESSEE',
|
|
1295
|
+
label: 'Kingsport - Tennessee',
|
|
1296
|
+
color: 'lime',
|
|
1297
|
+
position: 184,
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
key: 'kingstonNewYork',
|
|
1301
|
+
value: 'KINGSTON_NEW_YORK',
|
|
1302
|
+
label: 'Kingston - New York',
|
|
1303
|
+
color: 'violet',
|
|
1304
|
+
position: 185,
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
key: 'knoxvilleTennessee',
|
|
1308
|
+
value: 'KNOXVILLE_TENNESSEE',
|
|
1309
|
+
label: 'Knoxville - Tennessee',
|
|
1310
|
+
color: 'gold',
|
|
1311
|
+
position: 186,
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
key: 'kokomoIndiana',
|
|
1315
|
+
value: 'KOKOMO_INDIANA',
|
|
1316
|
+
label: 'Kokomo - Indiana',
|
|
1317
|
+
color: 'turquoise',
|
|
1318
|
+
position: 187,
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
key: 'laCrosseWisconsin',
|
|
1322
|
+
value: 'LA_CROSSE_WISCONSIN',
|
|
1323
|
+
label: 'La Crosse - Wisconsin',
|
|
1324
|
+
color: 'crimson',
|
|
1325
|
+
position: 188,
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
key: 'lafayetteIndiana',
|
|
1329
|
+
value: 'LAFAYETTE_INDIANA',
|
|
1330
|
+
label: 'Lafayette - Indiana',
|
|
1331
|
+
color: 'sky',
|
|
1332
|
+
position: 189,
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
key: 'lafayetteLouisiana',
|
|
1336
|
+
value: 'LAFAYETTE_LOUISIANA',
|
|
1337
|
+
label: 'Lafayette - Louisiana',
|
|
1338
|
+
color: 'amber',
|
|
1339
|
+
position: 190,
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
key: 'lakeCharlesLouisiana',
|
|
1343
|
+
value: 'LAKE_CHARLES_LOUISIANA',
|
|
1344
|
+
label: 'Lake Charles - Louisiana',
|
|
1345
|
+
color: 'plum',
|
|
1346
|
+
position: 191,
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
key: 'lakeHavasuCityArizona',
|
|
1350
|
+
value: 'LAKE_HAVASU_CITY_ARIZONA',
|
|
1351
|
+
label: 'Lake Havasu City - Arizona',
|
|
1352
|
+
color: 'grass',
|
|
1353
|
+
position: 192,
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
key: 'lakelandFlorida',
|
|
1357
|
+
value: 'LAKELAND_FLORIDA',
|
|
1358
|
+
label: 'Lakeland - Florida',
|
|
1359
|
+
color: 'tomato',
|
|
1360
|
+
position: 193,
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
key: 'lancasterPennsylvania',
|
|
1364
|
+
value: 'LANCASTER_PENNSYLVANIA',
|
|
1365
|
+
label: 'Lancaster - Pennsylvania',
|
|
1366
|
+
color: 'iris',
|
|
1367
|
+
position: 194,
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
key: 'lansingMichigan',
|
|
1371
|
+
value: 'LANSING_MICHIGAN',
|
|
1372
|
+
label: 'Lansing - Michigan',
|
|
1373
|
+
color: 'mint',
|
|
1374
|
+
position: 195,
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
key: 'laredoTexas',
|
|
1378
|
+
value: 'LAREDO_TEXAS',
|
|
1379
|
+
label: 'Laredo - Texas',
|
|
1380
|
+
color: 'ruby',
|
|
1381
|
+
position: 196,
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
key: 'lasCrucesNewMexico',
|
|
1385
|
+
value: 'LAS_CRUCES_NEW_MEXICO',
|
|
1386
|
+
label: 'Las Cruces - New Mexico',
|
|
1387
|
+
color: 'bronze',
|
|
1388
|
+
position: 197,
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
key: 'lasVegasNevada',
|
|
1392
|
+
value: 'LAS_VEGAS_NEVADA',
|
|
1393
|
+
label: 'Las Vegas - Nevada',
|
|
1394
|
+
color: 'jade',
|
|
1395
|
+
position: 198,
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
key: 'lawrenceKansas',
|
|
1399
|
+
value: 'LAWRENCE_KANSAS',
|
|
1400
|
+
label: 'Lawrence - Kansas',
|
|
1401
|
+
color: 'gray',
|
|
1402
|
+
position: 199,
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
key: 'lawtonOklahoma',
|
|
1406
|
+
value: 'LAWTON_OKLAHOMA',
|
|
1407
|
+
label: 'Lawton - Oklahoma',
|
|
1408
|
+
color: 'blue',
|
|
1409
|
+
position: 200,
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
key: 'lebanonPennsylvania',
|
|
1413
|
+
value: 'LEBANON_PENNSYLVANIA',
|
|
1414
|
+
label: 'Lebanon - Pennsylvania',
|
|
1415
|
+
color: 'red',
|
|
1416
|
+
position: 201,
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
key: 'lewistonIdaho',
|
|
1420
|
+
value: 'LEWISTON_IDAHO',
|
|
1421
|
+
label: 'Lewiston - Idaho',
|
|
1422
|
+
color: 'green',
|
|
1423
|
+
position: 202,
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
key: 'lewistonMaine',
|
|
1427
|
+
value: 'LEWISTON_MAINE',
|
|
1428
|
+
label: 'Lewiston - Maine',
|
|
1429
|
+
color: 'orange',
|
|
1430
|
+
position: 203,
|
|
1431
|
+
},
|
|
1432
|
+
{
|
|
1433
|
+
key: 'lexingtonKentucky',
|
|
1434
|
+
value: 'LEXINGTON_KENTUCKY',
|
|
1435
|
+
label: 'Lexington - Kentucky',
|
|
1436
|
+
color: 'purple',
|
|
1437
|
+
position: 204,
|
|
1438
|
+
},
|
|
1439
|
+
{
|
|
1440
|
+
key: 'limaOhio',
|
|
1441
|
+
value: 'LIMA_OHIO',
|
|
1442
|
+
label: 'Lima - Ohio',
|
|
1443
|
+
color: 'yellow',
|
|
1444
|
+
position: 205,
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
key: 'lincolnNebraska',
|
|
1448
|
+
value: 'LINCOLN_NEBRASKA',
|
|
1449
|
+
label: 'Lincoln - Nebraska',
|
|
1450
|
+
color: 'pink',
|
|
1451
|
+
position: 206,
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
key: 'littleRockArkansas',
|
|
1455
|
+
value: 'LITTLE_ROCK_ARKANSAS',
|
|
1456
|
+
label: 'Little Rock - Arkansas',
|
|
1457
|
+
color: 'cyan',
|
|
1458
|
+
position: 207,
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
key: 'loganUtah',
|
|
1462
|
+
value: 'LOGAN_UTAH',
|
|
1463
|
+
label: 'Logan - Utah',
|
|
1464
|
+
color: 'brown',
|
|
1465
|
+
position: 208,
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
key: 'longviewTexas',
|
|
1469
|
+
value: 'LONGVIEW_TEXAS',
|
|
1470
|
+
label: 'Longview - Texas',
|
|
1471
|
+
color: 'lime',
|
|
1472
|
+
position: 209,
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
key: 'longviewWashington',
|
|
1476
|
+
value: 'LONGVIEW_WASHINGTON',
|
|
1477
|
+
label: 'Longview - Washington',
|
|
1478
|
+
color: 'violet',
|
|
1479
|
+
position: 210,
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
key: 'losAngelesCalifornia',
|
|
1483
|
+
value: 'LOS_ANGELES_CALIFORNIA',
|
|
1484
|
+
label: 'Los Angeles - California',
|
|
1485
|
+
color: 'gold',
|
|
1486
|
+
position: 211,
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
key: 'louisvilleKentucky',
|
|
1490
|
+
value: 'LOUISVILLE_KENTUCKY',
|
|
1491
|
+
label: 'Louisville - Kentucky',
|
|
1492
|
+
color: 'turquoise',
|
|
1493
|
+
position: 212,
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
key: 'lubbockTexas',
|
|
1497
|
+
value: 'LUBBOCK_TEXAS',
|
|
1498
|
+
label: 'Lubbock - Texas',
|
|
1499
|
+
color: 'crimson',
|
|
1500
|
+
position: 213,
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
key: 'lynchburgVirginia',
|
|
1504
|
+
value: 'LYNCHBURG_VIRGINIA',
|
|
1505
|
+
label: 'Lynchburg - Virginia',
|
|
1506
|
+
color: 'sky',
|
|
1507
|
+
position: 214,
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
key: 'maconGeorgia',
|
|
1511
|
+
value: 'MACON_GEORGIA',
|
|
1512
|
+
label: 'Macon - Georgia',
|
|
1513
|
+
color: 'amber',
|
|
1514
|
+
position: 215,
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
key: 'maderaCalifornia',
|
|
1518
|
+
value: 'MADERA_CALIFORNIA',
|
|
1519
|
+
label: 'Madera - California',
|
|
1520
|
+
color: 'plum',
|
|
1521
|
+
position: 216,
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
key: 'madisonWisconsin',
|
|
1525
|
+
value: 'MADISON_WISCONSIN',
|
|
1526
|
+
label: 'Madison - Wisconsin',
|
|
1527
|
+
color: 'grass',
|
|
1528
|
+
position: 217,
|
|
1529
|
+
},
|
|
1530
|
+
{
|
|
1531
|
+
key: 'manchesterNewHampshire',
|
|
1532
|
+
value: 'MANCHESTER_NEW_HAMPSHIRE',
|
|
1533
|
+
label: 'Manchester - New Hampshire',
|
|
1534
|
+
color: 'tomato',
|
|
1535
|
+
position: 218,
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
key: 'manhattanKansas',
|
|
1539
|
+
value: 'MANHATTAN_KANSAS',
|
|
1540
|
+
label: 'Manhattan - Kansas',
|
|
1541
|
+
color: 'iris',
|
|
1542
|
+
position: 219,
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
key: 'mankatoMinnesota',
|
|
1546
|
+
value: 'MANKATO_MINNESOTA',
|
|
1547
|
+
label: 'Mankato - Minnesota',
|
|
1548
|
+
color: 'mint',
|
|
1549
|
+
position: 220,
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
key: 'mansfieldOhio',
|
|
1553
|
+
value: 'MANSFIELD_OHIO',
|
|
1554
|
+
label: 'Mansfield - Ohio',
|
|
1555
|
+
color: 'ruby',
|
|
1556
|
+
position: 221,
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
key: 'mcallenTexas',
|
|
1560
|
+
value: 'MCALLEN_TEXAS',
|
|
1561
|
+
label: 'McAllen - Texas',
|
|
1562
|
+
color: 'bronze',
|
|
1563
|
+
position: 222,
|
|
1564
|
+
},
|
|
1565
|
+
{
|
|
1566
|
+
key: 'medfordOregon',
|
|
1567
|
+
value: 'MEDFORD_OREGON',
|
|
1568
|
+
label: 'Medford - Oregon',
|
|
1569
|
+
color: 'jade',
|
|
1570
|
+
position: 223,
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
key: 'memphisTennessee',
|
|
1574
|
+
value: 'MEMPHIS_TENNESSEE',
|
|
1575
|
+
label: 'Memphis - Tennessee',
|
|
1576
|
+
color: 'gray',
|
|
1577
|
+
position: 224,
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
key: 'mercedCalifornia',
|
|
1581
|
+
value: 'MERCED_CALIFORNIA',
|
|
1582
|
+
label: 'Merced - California',
|
|
1583
|
+
color: 'blue',
|
|
1584
|
+
position: 225,
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
key: 'miamiFlorida',
|
|
1588
|
+
value: 'MIAMI_FLORIDA',
|
|
1589
|
+
label: 'Miami - Florida',
|
|
1590
|
+
color: 'red',
|
|
1591
|
+
position: 226,
|
|
1592
|
+
},
|
|
1593
|
+
{
|
|
1594
|
+
key: 'michiganCityIndiana',
|
|
1595
|
+
value: 'MICHIGAN_CITY_INDIANA',
|
|
1596
|
+
label: 'Michigan City - Indiana',
|
|
1597
|
+
color: 'green',
|
|
1598
|
+
position: 227,
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
key: 'midlandMichigan',
|
|
1602
|
+
value: 'MIDLAND_MICHIGAN',
|
|
1603
|
+
label: 'Midland - Michigan',
|
|
1604
|
+
color: 'orange',
|
|
1605
|
+
position: 228,
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
key: 'midlandTexas',
|
|
1609
|
+
value: 'MIDLAND_TEXAS',
|
|
1610
|
+
label: 'Midland - Texas',
|
|
1611
|
+
color: 'purple',
|
|
1612
|
+
position: 229,
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
key: 'milwaukeeWisconsin',
|
|
1616
|
+
value: 'MILWAUKEE_WISCONSIN',
|
|
1617
|
+
label: 'Milwaukee - Wisconsin',
|
|
1618
|
+
color: 'yellow',
|
|
1619
|
+
position: 230,
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
key: 'minneapolisMinnesota',
|
|
1623
|
+
value: 'MINNEAPOLIS_MINNESOTA',
|
|
1624
|
+
label: 'Minneapolis - Minnesota',
|
|
1625
|
+
color: 'pink',
|
|
1626
|
+
position: 231,
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
key: 'missoulaMontana',
|
|
1630
|
+
value: 'MISSOULA_MONTANA',
|
|
1631
|
+
label: 'Missoula - Montana',
|
|
1632
|
+
color: 'cyan',
|
|
1633
|
+
position: 232,
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
key: 'mobileAlabama',
|
|
1637
|
+
value: 'MOBILE_ALABAMA',
|
|
1638
|
+
label: 'Mobile - Alabama',
|
|
1639
|
+
color: 'brown',
|
|
1640
|
+
position: 233,
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
key: 'modestoCalifornia',
|
|
1644
|
+
value: 'MODESTO_CALIFORNIA',
|
|
1645
|
+
label: 'Modesto - California',
|
|
1646
|
+
color: 'lime',
|
|
1647
|
+
position: 234,
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
key: 'monroeLouisiana',
|
|
1651
|
+
value: 'MONROE_LOUISIANA',
|
|
1652
|
+
label: 'Monroe - Louisiana',
|
|
1653
|
+
color: 'violet',
|
|
1654
|
+
position: 235,
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
key: 'monroeMichigan',
|
|
1658
|
+
value: 'MONROE_MICHIGAN',
|
|
1659
|
+
label: 'Monroe - Michigan',
|
|
1660
|
+
color: 'gold',
|
|
1661
|
+
position: 236,
|
|
1662
|
+
},
|
|
1663
|
+
{
|
|
1664
|
+
key: 'montgomeryAlabama',
|
|
1665
|
+
value: 'MONTGOMERY_ALABAMA',
|
|
1666
|
+
label: 'Montgomery - Alabama',
|
|
1667
|
+
color: 'turquoise',
|
|
1668
|
+
position: 237,
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
key: 'morgantownWestVirginia',
|
|
1672
|
+
value: 'MORGANTOWN_WEST_VIRGINIA',
|
|
1673
|
+
label: 'Morgantown - West Virginia',
|
|
1674
|
+
color: 'crimson',
|
|
1675
|
+
position: 238,
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
key: 'morristownTennessee',
|
|
1679
|
+
value: 'MORRISTOWN_TENNESSEE',
|
|
1680
|
+
label: 'Morristown - Tennessee',
|
|
1681
|
+
color: 'sky',
|
|
1682
|
+
position: 239,
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
key: 'mountVernonWashington',
|
|
1686
|
+
value: 'MOUNT_VERNON_WASHINGTON',
|
|
1687
|
+
label: 'Mount Vernon - Washington',
|
|
1688
|
+
color: 'amber',
|
|
1689
|
+
position: 240,
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
key: 'muncieIndiana',
|
|
1693
|
+
value: 'MUNCIE_INDIANA',
|
|
1694
|
+
label: 'Muncie - Indiana',
|
|
1695
|
+
color: 'plum',
|
|
1696
|
+
position: 241,
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
key: 'muskegonMichigan',
|
|
1700
|
+
value: 'MUSKEGON_MICHIGAN',
|
|
1701
|
+
label: 'Muskegon - Michigan',
|
|
1702
|
+
color: 'grass',
|
|
1703
|
+
position: 242,
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
key: 'myrtleBeachSouthCarolina',
|
|
1707
|
+
value: 'MYRTLE_BEACH_SOUTH_CAROLINA',
|
|
1708
|
+
label: 'Myrtle Beach - South Carolina',
|
|
1709
|
+
color: 'tomato',
|
|
1710
|
+
position: 243,
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
key: 'napaCalifornia',
|
|
1714
|
+
value: 'NAPA_CALIFORNIA',
|
|
1715
|
+
label: 'Napa - California',
|
|
1716
|
+
color: 'iris',
|
|
1717
|
+
position: 244,
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
key: 'naplesFlorida',
|
|
1721
|
+
value: 'NAPLES_FLORIDA',
|
|
1722
|
+
label: 'Naples - Florida',
|
|
1723
|
+
color: 'mint',
|
|
1724
|
+
position: 245,
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
key: 'nashvilleTennessee',
|
|
1728
|
+
value: 'NASHVILLE_TENNESSEE',
|
|
1729
|
+
label: 'Nashville - Tennessee',
|
|
1730
|
+
color: 'ruby',
|
|
1731
|
+
position: 246,
|
|
1732
|
+
},
|
|
1733
|
+
{
|
|
1734
|
+
key: 'newBernNorthCarolina',
|
|
1735
|
+
value: 'NEW_BERN_NORTH_CAROLINA',
|
|
1736
|
+
label: 'New Bern - North Carolina',
|
|
1737
|
+
color: 'bronze',
|
|
1738
|
+
position: 247,
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
key: 'newHavenConnecticut',
|
|
1742
|
+
value: 'NEW_HAVEN_CONNECTICUT',
|
|
1743
|
+
label: 'New Haven - Connecticut',
|
|
1744
|
+
color: 'jade',
|
|
1745
|
+
position: 248,
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
key: 'newOrleansLouisiana',
|
|
1749
|
+
value: 'NEW_ORLEANS_LOUISIANA',
|
|
1750
|
+
label: 'New Orleans - Louisiana',
|
|
1751
|
+
color: 'gray',
|
|
1752
|
+
position: 249,
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
key: 'newYorkNewYork',
|
|
1756
|
+
value: 'NEW_YORK_NEW_YORK',
|
|
1757
|
+
label: 'New York - New York',
|
|
1758
|
+
color: 'blue',
|
|
1759
|
+
position: 250,
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
key: 'nilesMichigan',
|
|
1763
|
+
value: 'NILES_MICHIGAN',
|
|
1764
|
+
label: 'Niles - Michigan',
|
|
1765
|
+
color: 'red',
|
|
1766
|
+
position: 251,
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
key: 'northPortFlorida',
|
|
1770
|
+
value: 'NORTH_PORT_FLORIDA',
|
|
1771
|
+
label: 'North Port - Florida',
|
|
1772
|
+
color: 'green',
|
|
1773
|
+
position: 252,
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
key: 'norwichConnecticut',
|
|
1777
|
+
value: 'NORWICH_CONNECTICUT',
|
|
1778
|
+
label: 'Norwich - Connecticut',
|
|
1779
|
+
color: 'orange',
|
|
1780
|
+
position: 253,
|
|
1781
|
+
},
|
|
1782
|
+
{
|
|
1783
|
+
key: 'ocalaFlorida',
|
|
1784
|
+
value: 'OCALA_FLORIDA',
|
|
1785
|
+
label: 'Ocala - Florida',
|
|
1786
|
+
color: 'purple',
|
|
1787
|
+
position: 254,
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
key: 'oceanCityNewJersey',
|
|
1791
|
+
value: 'OCEAN_CITY_NEW_JERSEY',
|
|
1792
|
+
label: 'Ocean City - New Jersey',
|
|
1793
|
+
color: 'yellow',
|
|
1794
|
+
position: 255,
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
key: 'odessaTexas',
|
|
1798
|
+
value: 'ODESSA_TEXAS',
|
|
1799
|
+
label: 'Odessa - Texas',
|
|
1800
|
+
color: 'pink',
|
|
1801
|
+
position: 256,
|
|
1802
|
+
},
|
|
1803
|
+
{
|
|
1804
|
+
key: 'ogdenUtah',
|
|
1805
|
+
value: 'OGDEN_UTAH',
|
|
1806
|
+
label: 'Ogden - Utah',
|
|
1807
|
+
color: 'cyan',
|
|
1808
|
+
position: 257,
|
|
1809
|
+
},
|
|
1810
|
+
{
|
|
1811
|
+
key: 'oklahomaCityOklahoma',
|
|
1812
|
+
value: 'OKLAHOMA_CITY_OKLAHOMA',
|
|
1813
|
+
label: 'Oklahoma City - Oklahoma',
|
|
1814
|
+
color: 'brown',
|
|
1815
|
+
position: 258,
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
key: 'olympiaWashington',
|
|
1819
|
+
value: 'OLYMPIA_WASHINGTON',
|
|
1820
|
+
label: 'Olympia - Washington',
|
|
1821
|
+
color: 'lime',
|
|
1822
|
+
position: 259,
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
key: 'omahaNebraska',
|
|
1826
|
+
value: 'OMAHA_NEBRASKA',
|
|
1827
|
+
label: 'Omaha - Nebraska',
|
|
1828
|
+
color: 'violet',
|
|
1829
|
+
position: 260,
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
key: 'orlandoFlorida',
|
|
1833
|
+
value: 'ORLANDO_FLORIDA',
|
|
1834
|
+
label: 'Orlando - Florida',
|
|
1835
|
+
color: 'gold',
|
|
1836
|
+
position: 261,
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
key: 'oshkoshWisconsin',
|
|
1840
|
+
value: 'OSHKOSH_WISCONSIN',
|
|
1841
|
+
label: 'Oshkosh - Wisconsin',
|
|
1842
|
+
color: 'turquoise',
|
|
1843
|
+
position: 262,
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
key: 'owensboroKentucky',
|
|
1847
|
+
value: 'OWENSBORO_KENTUCKY',
|
|
1848
|
+
label: 'Owensboro - Kentucky',
|
|
1849
|
+
color: 'crimson',
|
|
1850
|
+
position: 263,
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
key: 'oxnardCalifornia',
|
|
1854
|
+
value: 'OXNARD_CALIFORNIA',
|
|
1855
|
+
label: 'Oxnard - California',
|
|
1856
|
+
color: 'sky',
|
|
1857
|
+
position: 264,
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
key: 'palmBayFlorida',
|
|
1861
|
+
value: 'PALM_BAY_FLORIDA',
|
|
1862
|
+
label: 'Palm Bay - Florida',
|
|
1863
|
+
color: 'amber',
|
|
1864
|
+
position: 265,
|
|
1865
|
+
},
|
|
1866
|
+
{
|
|
1867
|
+
key: 'panamaCityFlorida',
|
|
1868
|
+
value: 'PANAMA_CITY_FLORIDA',
|
|
1869
|
+
label: 'Panama City - Florida',
|
|
1870
|
+
color: 'plum',
|
|
1871
|
+
position: 266,
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
key: 'parkersburgWestVirginia',
|
|
1875
|
+
value: 'PARKERSBURG_WEST_VIRGINIA',
|
|
1876
|
+
label: 'Parkersburg - West Virginia',
|
|
1877
|
+
color: 'grass',
|
|
1878
|
+
position: 267,
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
key: 'pensacolaFlorida',
|
|
1882
|
+
value: 'PENSACOLA_FLORIDA',
|
|
1883
|
+
label: 'Pensacola - Florida',
|
|
1884
|
+
color: 'tomato',
|
|
1885
|
+
position: 268,
|
|
1886
|
+
},
|
|
1887
|
+
{
|
|
1888
|
+
key: 'peoriaIllinois',
|
|
1889
|
+
value: 'PEORIA_ILLINOIS',
|
|
1890
|
+
label: 'Peoria - Illinois',
|
|
1891
|
+
color: 'iris',
|
|
1892
|
+
position: 269,
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
key: 'philadelphiaPennsylvania',
|
|
1896
|
+
value: 'PHILADELPHIA_PENNSYLVANIA',
|
|
1897
|
+
label: 'Philadelphia - Pennsylvania',
|
|
1898
|
+
color: 'mint',
|
|
1899
|
+
position: 270,
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
key: 'phoenixArizona',
|
|
1903
|
+
value: 'PHOENIX_ARIZONA',
|
|
1904
|
+
label: 'Phoenix - Arizona',
|
|
1905
|
+
color: 'ruby',
|
|
1906
|
+
position: 271,
|
|
1907
|
+
},
|
|
1908
|
+
{
|
|
1909
|
+
key: 'pineBluffArkansas',
|
|
1910
|
+
value: 'PINE_BLUFF_ARKANSAS',
|
|
1911
|
+
label: 'Pine Bluff - Arkansas',
|
|
1912
|
+
color: 'bronze',
|
|
1913
|
+
position: 272,
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
key: 'pittsburghPennsylvania',
|
|
1917
|
+
value: 'PITTSBURGH_PENNSYLVANIA',
|
|
1918
|
+
label: 'Pittsburgh - Pennsylvania',
|
|
1919
|
+
color: 'jade',
|
|
1920
|
+
position: 273,
|
|
1921
|
+
},
|
|
1922
|
+
{
|
|
1923
|
+
key: 'pittsfieldMassachusetts',
|
|
1924
|
+
value: 'PITTSFIELD_MASSACHUSETTS',
|
|
1925
|
+
label: 'Pittsfield - Massachusetts',
|
|
1926
|
+
color: 'gray',
|
|
1927
|
+
position: 274,
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
key: 'pocatelloIdaho',
|
|
1931
|
+
value: 'POCATELLO_IDAHO',
|
|
1932
|
+
label: 'Pocatello - Idaho',
|
|
1933
|
+
color: 'blue',
|
|
1934
|
+
position: 275,
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
key: 'portStLucieFlorida',
|
|
1938
|
+
value: 'PORT_ST_LUCIE_FLORIDA',
|
|
1939
|
+
label: 'Port St. Lucie - Florida',
|
|
1940
|
+
color: 'red',
|
|
1941
|
+
position: 276,
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
key: 'portlandMaine',
|
|
1945
|
+
value: 'PORTLAND_MAINE',
|
|
1946
|
+
label: 'Portland - Maine',
|
|
1947
|
+
color: 'green',
|
|
1948
|
+
position: 277,
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
key: 'portlandOregon',
|
|
1952
|
+
value: 'PORTLAND_OREGON',
|
|
1953
|
+
label: 'Portland - Oregon',
|
|
1954
|
+
color: 'orange',
|
|
1955
|
+
position: 278,
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
key: 'poughkeepsieNewYork',
|
|
1959
|
+
value: 'POUGHKEEPSIE_NEW_YORK',
|
|
1960
|
+
label: 'Poughkeepsie - New York',
|
|
1961
|
+
color: 'purple',
|
|
1962
|
+
position: 279,
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
key: 'prescottValleyArizona',
|
|
1966
|
+
value: 'PRESCOTT_VALLEY_ARIZONA',
|
|
1967
|
+
label: 'Prescott Valley - Arizona',
|
|
1968
|
+
color: 'yellow',
|
|
1969
|
+
position: 280,
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
key: 'providenceRhodeIsland',
|
|
1973
|
+
value: 'PROVIDENCE_RHODE_ISLAND',
|
|
1974
|
+
label: 'Providence - Rhode Island',
|
|
1975
|
+
color: 'pink',
|
|
1976
|
+
position: 281,
|
|
1977
|
+
},
|
|
1978
|
+
{
|
|
1979
|
+
key: 'provoUtah',
|
|
1980
|
+
value: 'PROVO_UTAH',
|
|
1981
|
+
label: 'Provo - Utah',
|
|
1982
|
+
color: 'cyan',
|
|
1983
|
+
position: 282,
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
key: 'puebloColorado',
|
|
1987
|
+
value: 'PUEBLO_COLORADO',
|
|
1988
|
+
label: 'Pueblo - Colorado',
|
|
1989
|
+
color: 'brown',
|
|
1990
|
+
position: 283,
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
key: 'puntaGordaFlorida',
|
|
1994
|
+
value: 'PUNTA_GORDA_FLORIDA',
|
|
1995
|
+
label: 'Punta Gorda - Florida',
|
|
1996
|
+
color: 'lime',
|
|
1997
|
+
position: 284,
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
key: 'racineWisconsin',
|
|
2001
|
+
value: 'RACINE_WISCONSIN',
|
|
2002
|
+
label: 'Racine - Wisconsin',
|
|
2003
|
+
color: 'violet',
|
|
2004
|
+
position: 285,
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
key: 'raleighNorthCarolina',
|
|
2008
|
+
value: 'RALEIGH_NORTH_CAROLINA',
|
|
2009
|
+
label: 'Raleigh - North Carolina',
|
|
2010
|
+
color: 'gold',
|
|
2011
|
+
position: 286,
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
key: 'rapidCitySouthDakota',
|
|
2015
|
+
value: 'RAPID_CITY_SOUTH_DAKOTA',
|
|
2016
|
+
label: 'Rapid City - South Dakota',
|
|
2017
|
+
color: 'turquoise',
|
|
2018
|
+
position: 287,
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
key: 'readingPennsylvania',
|
|
2022
|
+
value: 'READING_PENNSYLVANIA',
|
|
2023
|
+
label: 'Reading - Pennsylvania',
|
|
2024
|
+
color: 'crimson',
|
|
2025
|
+
position: 288,
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
key: 'reddingCalifornia',
|
|
2029
|
+
value: 'REDDING_CALIFORNIA',
|
|
2030
|
+
label: 'Redding - California',
|
|
2031
|
+
color: 'sky',
|
|
2032
|
+
position: 289,
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
key: 'renoNevada',
|
|
2036
|
+
value: 'RENO_NEVADA',
|
|
2037
|
+
label: 'Reno - Nevada',
|
|
2038
|
+
color: 'amber',
|
|
2039
|
+
position: 290,
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
key: 'richmondVirginia',
|
|
2043
|
+
value: 'RICHMOND_VIRGINIA',
|
|
2044
|
+
label: 'Richmond - Virginia',
|
|
2045
|
+
color: 'plum',
|
|
2046
|
+
position: 291,
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
key: 'riversideCalifornia',
|
|
2050
|
+
value: 'RIVERSIDE_CALIFORNIA',
|
|
2051
|
+
label: 'Riverside - California',
|
|
2052
|
+
color: 'grass',
|
|
2053
|
+
position: 292,
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
key: 'roanokeVirginia',
|
|
2057
|
+
value: 'ROANOKE_VIRGINIA',
|
|
2058
|
+
label: 'Roanoke - Virginia',
|
|
2059
|
+
color: 'tomato',
|
|
2060
|
+
position: 293,
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
key: 'rochesterMinnesota',
|
|
2064
|
+
value: 'ROCHESTER_MINNESOTA',
|
|
2065
|
+
label: 'Rochester - Minnesota',
|
|
2066
|
+
color: 'iris',
|
|
2067
|
+
position: 294,
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
key: 'rochesterNewYork',
|
|
2071
|
+
value: 'ROCHESTER_NEW_YORK',
|
|
2072
|
+
label: 'Rochester - New York',
|
|
2073
|
+
color: 'mint',
|
|
2074
|
+
position: 295,
|
|
2075
|
+
},
|
|
2076
|
+
{
|
|
2077
|
+
key: 'rockfordIllinois',
|
|
2078
|
+
value: 'ROCKFORD_ILLINOIS',
|
|
2079
|
+
label: 'Rockford - Illinois',
|
|
2080
|
+
color: 'ruby',
|
|
2081
|
+
position: 296,
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
key: 'rockyMountNorthCarolina',
|
|
2085
|
+
value: 'ROCKY_MOUNT_NORTH_CAROLINA',
|
|
2086
|
+
label: 'Rocky Mount - North Carolina',
|
|
2087
|
+
color: 'bronze',
|
|
2088
|
+
position: 297,
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
key: 'romeGeorgia',
|
|
2092
|
+
value: 'ROME_GEORGIA',
|
|
2093
|
+
label: 'Rome - Georgia',
|
|
2094
|
+
color: 'jade',
|
|
2095
|
+
position: 298,
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
key: 'sacramentoCalifornia',
|
|
2099
|
+
value: 'SACRAMENTO_CALIFORNIA',
|
|
2100
|
+
label: 'Sacramento - California',
|
|
2101
|
+
color: 'gray',
|
|
2102
|
+
position: 299,
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
key: 'saginawMichigan',
|
|
2106
|
+
value: 'SAGINAW_MICHIGAN',
|
|
2107
|
+
label: 'Saginaw - Michigan',
|
|
2108
|
+
color: 'blue',
|
|
2109
|
+
position: 300,
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
key: 'salemOregon',
|
|
2113
|
+
value: 'SALEM_OREGON',
|
|
2114
|
+
label: 'Salem - Oregon',
|
|
2115
|
+
color: 'red',
|
|
2116
|
+
position: 301,
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
key: 'salinasCalifornia',
|
|
2120
|
+
value: 'SALINAS_CALIFORNIA',
|
|
2121
|
+
label: 'Salinas - California',
|
|
2122
|
+
color: 'green',
|
|
2123
|
+
position: 302,
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
key: 'salisburyMaryland',
|
|
2127
|
+
value: 'SALISBURY_MARYLAND',
|
|
2128
|
+
label: 'Salisbury - Maryland',
|
|
2129
|
+
color: 'orange',
|
|
2130
|
+
position: 303,
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
key: 'saltLakeCityUtah',
|
|
2134
|
+
value: 'SALT_LAKE_CITY_UTAH',
|
|
2135
|
+
label: 'Salt Lake City - Utah',
|
|
2136
|
+
color: 'purple',
|
|
2137
|
+
position: 304,
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
key: 'sanAngeloTexas',
|
|
2141
|
+
value: 'SAN_ANGELO_TEXAS',
|
|
2142
|
+
label: 'San Angelo - Texas',
|
|
2143
|
+
color: 'yellow',
|
|
2144
|
+
position: 305,
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
key: 'sanAntonioTexas',
|
|
2148
|
+
value: 'SAN_ANTONIO_TEXAS',
|
|
2149
|
+
label: 'San Antonio - Texas',
|
|
2150
|
+
color: 'pink',
|
|
2151
|
+
position: 306,
|
|
2152
|
+
},
|
|
2153
|
+
{
|
|
2154
|
+
key: 'sanDiegoCalifornia',
|
|
2155
|
+
value: 'SAN_DIEGO_CALIFORNIA',
|
|
2156
|
+
label: 'San Diego - California',
|
|
2157
|
+
color: 'cyan',
|
|
2158
|
+
position: 307,
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
key: 'sanFranciscoCalifornia',
|
|
2162
|
+
value: 'SAN_FRANCISCO_CALIFORNIA',
|
|
2163
|
+
label: 'San Francisco - California',
|
|
2164
|
+
color: 'brown',
|
|
2165
|
+
position: 308,
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
key: 'sanJoseCalifornia',
|
|
2169
|
+
value: 'SAN_JOSE_CALIFORNIA',
|
|
2170
|
+
label: 'San Jose - California',
|
|
2171
|
+
color: 'lime',
|
|
2172
|
+
position: 309,
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
key: 'sanLuisObispoCalifornia',
|
|
2176
|
+
value: 'SAN_LUIS_OBISPO_CALIFORNIA',
|
|
2177
|
+
label: 'San Luis Obispo - California',
|
|
2178
|
+
color: 'violet',
|
|
2179
|
+
position: 310,
|
|
2180
|
+
},
|
|
2181
|
+
{
|
|
2182
|
+
key: 'santaCruzCalifornia',
|
|
2183
|
+
value: 'SANTA_CRUZ_CALIFORNIA',
|
|
2184
|
+
label: 'Santa Cruz - California',
|
|
2185
|
+
color: 'gold',
|
|
2186
|
+
position: 311,
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
key: 'santaFeNewMexico',
|
|
2190
|
+
value: 'SANTA_FE_NEW_MEXICO',
|
|
2191
|
+
label: 'Santa Fe - New Mexico',
|
|
2192
|
+
color: 'turquoise',
|
|
2193
|
+
position: 312,
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
key: 'santaMariaCalifornia',
|
|
2197
|
+
value: 'SANTA_MARIA_CALIFORNIA',
|
|
2198
|
+
label: 'Santa Maria - California',
|
|
2199
|
+
color: 'crimson',
|
|
2200
|
+
position: 313,
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
key: 'santaRosaCalifornia',
|
|
2204
|
+
value: 'SANTA_ROSA_CALIFORNIA',
|
|
2205
|
+
label: 'Santa Rosa - California',
|
|
2206
|
+
color: 'sky',
|
|
2207
|
+
position: 314,
|
|
2208
|
+
},
|
|
2209
|
+
{
|
|
2210
|
+
key: 'savannahGeorgia',
|
|
2211
|
+
value: 'SAVANNAH_GEORGIA',
|
|
2212
|
+
label: 'Savannah - Georgia',
|
|
2213
|
+
color: 'amber',
|
|
2214
|
+
position: 315,
|
|
2215
|
+
},
|
|
2216
|
+
{
|
|
2217
|
+
key: 'scrantonPennsylvania',
|
|
2218
|
+
value: 'SCRANTON_PENNSYLVANIA',
|
|
2219
|
+
label: 'Scranton - Pennsylvania',
|
|
2220
|
+
color: 'plum',
|
|
2221
|
+
position: 316,
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
key: 'seattleWashington',
|
|
2225
|
+
value: 'SEATTLE_WASHINGTON',
|
|
2226
|
+
label: 'Seattle - Washington',
|
|
2227
|
+
color: 'grass',
|
|
2228
|
+
position: 317,
|
|
2229
|
+
},
|
|
2230
|
+
{
|
|
2231
|
+
key: 'sebastianFlorida',
|
|
2232
|
+
value: 'SEBASTIAN_FLORIDA',
|
|
2233
|
+
label: 'Sebastian - Florida',
|
|
2234
|
+
color: 'tomato',
|
|
2235
|
+
position: 318,
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
key: 'sebringFlorida',
|
|
2239
|
+
value: 'SEBRING_FLORIDA',
|
|
2240
|
+
label: 'Sebring - Florida',
|
|
2241
|
+
color: 'iris',
|
|
2242
|
+
position: 319,
|
|
2243
|
+
},
|
|
2244
|
+
{
|
|
2245
|
+
key: 'sheboyganWisconsin',
|
|
2246
|
+
value: 'SHEBOYGAN_WISCONSIN',
|
|
2247
|
+
label: 'Sheboygan - Wisconsin',
|
|
2248
|
+
color: 'mint',
|
|
2249
|
+
position: 320,
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
key: 'shermanTexas',
|
|
2253
|
+
value: 'SHERMAN_TEXAS',
|
|
2254
|
+
label: 'Sherman - Texas',
|
|
2255
|
+
color: 'ruby',
|
|
2256
|
+
position: 321,
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
key: 'shreveportLouisiana',
|
|
2260
|
+
value: 'SHREVEPORT_LOUISIANA',
|
|
2261
|
+
label: 'Shreveport - Louisiana',
|
|
2262
|
+
color: 'bronze',
|
|
2263
|
+
position: 322,
|
|
2264
|
+
},
|
|
2265
|
+
{
|
|
2266
|
+
key: 'sierraVistaArizona',
|
|
2267
|
+
value: 'SIERRA_VISTA_ARIZONA',
|
|
2268
|
+
label: 'Sierra Vista - Arizona',
|
|
2269
|
+
color: 'jade',
|
|
2270
|
+
position: 323,
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
key: 'siouxCityIowa',
|
|
2274
|
+
value: 'SIOUX_CITY_IOWA',
|
|
2275
|
+
label: 'Sioux City - Iowa',
|
|
2276
|
+
color: 'gray',
|
|
2277
|
+
position: 324,
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
key: 'siouxFallsSouthDakota',
|
|
2281
|
+
value: 'SIOUX_FALLS_SOUTH_DAKOTA',
|
|
2282
|
+
label: 'Sioux Falls - South Dakota',
|
|
2283
|
+
color: 'blue',
|
|
2284
|
+
position: 325,
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
key: 'southBendIndiana',
|
|
2288
|
+
value: 'SOUTH_BEND_INDIANA',
|
|
2289
|
+
label: 'South Bend - Indiana',
|
|
2290
|
+
color: 'red',
|
|
2291
|
+
position: 326,
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
key: 'spartanburgSouthCarolina',
|
|
2295
|
+
value: 'SPARTANBURG_SOUTH_CAROLINA',
|
|
2296
|
+
label: 'Spartanburg - South Carolina',
|
|
2297
|
+
color: 'green',
|
|
2298
|
+
position: 327,
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
key: 'spokaneWashington',
|
|
2302
|
+
value: 'SPOKANE_WASHINGTON',
|
|
2303
|
+
label: 'Spokane - Washington',
|
|
2304
|
+
color: 'orange',
|
|
2305
|
+
position: 328,
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
key: 'springfieldIllinois',
|
|
2309
|
+
value: 'SPRINGFIELD_ILLINOIS',
|
|
2310
|
+
label: 'Springfield - Illinois',
|
|
2311
|
+
color: 'purple',
|
|
2312
|
+
position: 329,
|
|
2313
|
+
},
|
|
2314
|
+
{
|
|
2315
|
+
key: 'springfieldMassachusetts',
|
|
2316
|
+
value: 'SPRINGFIELD_MASSACHUSETTS',
|
|
2317
|
+
label: 'Springfield - Massachusetts',
|
|
2318
|
+
color: 'yellow',
|
|
2319
|
+
position: 330,
|
|
2320
|
+
},
|
|
2321
|
+
{
|
|
2322
|
+
key: 'springfieldMissouri',
|
|
2323
|
+
value: 'SPRINGFIELD_MISSOURI',
|
|
2324
|
+
label: 'Springfield - Missouri',
|
|
2325
|
+
color: 'pink',
|
|
2326
|
+
position: 331,
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
key: 'springfieldOhio',
|
|
2330
|
+
value: 'SPRINGFIELD_OHIO',
|
|
2331
|
+
label: 'Springfield - Ohio',
|
|
2332
|
+
color: 'cyan',
|
|
2333
|
+
position: 332,
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
key: 'stCloudMinnesota',
|
|
2337
|
+
value: 'ST_CLOUD_MINNESOTA',
|
|
2338
|
+
label: 'St. Cloud - Minnesota',
|
|
2339
|
+
color: 'brown',
|
|
2340
|
+
position: 333,
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
key: 'stGeorgeUtah',
|
|
2344
|
+
value: 'ST_GEORGE_UTAH',
|
|
2345
|
+
label: 'St. George - Utah',
|
|
2346
|
+
color: 'lime',
|
|
2347
|
+
position: 334,
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
key: 'stJosephMissouri',
|
|
2351
|
+
value: 'ST_JOSEPH_MISSOURI',
|
|
2352
|
+
label: 'St. Joseph - Missouri',
|
|
2353
|
+
color: 'violet',
|
|
2354
|
+
position: 335,
|
|
2355
|
+
},
|
|
2356
|
+
{
|
|
2357
|
+
key: 'stLouisMissouri',
|
|
2358
|
+
value: 'ST_LOUIS_MISSOURI',
|
|
2359
|
+
label: 'St. Louis - Missouri',
|
|
2360
|
+
color: 'gold',
|
|
2361
|
+
position: 336,
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
key: 'stateCollegePennsylvania',
|
|
2365
|
+
value: 'STATE_COLLEGE_PENNSYLVANIA',
|
|
2366
|
+
label: 'State College - Pennsylvania',
|
|
2367
|
+
color: 'turquoise',
|
|
2368
|
+
position: 337,
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
key: 'stauntonVirginia',
|
|
2372
|
+
value: 'STAUNTON_VIRGINIA',
|
|
2373
|
+
label: 'Staunton - Virginia',
|
|
2374
|
+
color: 'crimson',
|
|
2375
|
+
position: 338,
|
|
2376
|
+
},
|
|
2377
|
+
{
|
|
2378
|
+
key: 'stocktonCalifornia',
|
|
2379
|
+
value: 'STOCKTON_CALIFORNIA',
|
|
2380
|
+
label: 'Stockton - California',
|
|
2381
|
+
color: 'sky',
|
|
2382
|
+
position: 339,
|
|
2383
|
+
},
|
|
2384
|
+
{
|
|
2385
|
+
key: 'sumterSouthCarolina',
|
|
2386
|
+
value: 'SUMTER_SOUTH_CAROLINA',
|
|
2387
|
+
label: 'Sumter - South Carolina',
|
|
2388
|
+
color: 'amber',
|
|
2389
|
+
position: 340,
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
key: 'syracuseNewYork',
|
|
2393
|
+
value: 'SYRACUSE_NEW_YORK',
|
|
2394
|
+
label: 'Syracuse - New York',
|
|
2395
|
+
color: 'plum',
|
|
2396
|
+
position: 341,
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
key: 'tallahasseeFlorida',
|
|
2400
|
+
value: 'TALLAHASSEE_FLORIDA',
|
|
2401
|
+
label: 'Tallahassee - Florida',
|
|
2402
|
+
color: 'grass',
|
|
2403
|
+
position: 342,
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
key: 'tampaFlorida',
|
|
2407
|
+
value: 'TAMPA_FLORIDA',
|
|
2408
|
+
label: 'Tampa - Florida',
|
|
2409
|
+
color: 'tomato',
|
|
2410
|
+
position: 343,
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
key: 'terreHauteIndiana',
|
|
2414
|
+
value: 'TERRE_HAUTE_INDIANA',
|
|
2415
|
+
label: 'Terre Haute - Indiana',
|
|
2416
|
+
color: 'iris',
|
|
2417
|
+
position: 344,
|
|
2418
|
+
},
|
|
2419
|
+
{
|
|
2420
|
+
key: 'texarkanaTexas',
|
|
2421
|
+
value: 'TEXARKANA_TEXAS',
|
|
2422
|
+
label: 'Texarkana - Texas',
|
|
2423
|
+
color: 'mint',
|
|
2424
|
+
position: 345,
|
|
2425
|
+
},
|
|
2426
|
+
{
|
|
2427
|
+
key: 'theVillagesFlorida',
|
|
2428
|
+
value: 'THE_VILLAGES_FLORIDA',
|
|
2429
|
+
label: 'The Villages - Florida',
|
|
2430
|
+
color: 'ruby',
|
|
2431
|
+
position: 346,
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
key: 'toledoOhio',
|
|
2435
|
+
value: 'TOLEDO_OHIO',
|
|
2436
|
+
label: 'Toledo - Ohio',
|
|
2437
|
+
color: 'bronze',
|
|
2438
|
+
position: 347,
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
key: 'topekaKansas',
|
|
2442
|
+
value: 'TOPEKA_KANSAS',
|
|
2443
|
+
label: 'Topeka - Kansas',
|
|
2444
|
+
color: 'jade',
|
|
2445
|
+
position: 348,
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
key: 'trentonNewJersey',
|
|
2449
|
+
value: 'TRENTON_NEW_JERSEY',
|
|
2450
|
+
label: 'Trenton - New Jersey',
|
|
2451
|
+
color: 'gray',
|
|
2452
|
+
position: 349,
|
|
2453
|
+
},
|
|
2454
|
+
{
|
|
2455
|
+
key: 'tucsonArizona',
|
|
2456
|
+
value: 'TUCSON_ARIZONA',
|
|
2457
|
+
label: 'Tucson - Arizona',
|
|
2458
|
+
color: 'blue',
|
|
2459
|
+
position: 350,
|
|
2460
|
+
},
|
|
2461
|
+
{
|
|
2462
|
+
key: 'tulsaOklahoma',
|
|
2463
|
+
value: 'TULSA_OKLAHOMA',
|
|
2464
|
+
label: 'Tulsa - Oklahoma',
|
|
2465
|
+
color: 'red',
|
|
2466
|
+
position: 351,
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
key: 'tuscaloosaAlabama',
|
|
2470
|
+
value: 'TUSCALOOSA_ALABAMA',
|
|
2471
|
+
label: 'Tuscaloosa - Alabama',
|
|
2472
|
+
color: 'green',
|
|
2473
|
+
position: 352,
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
key: 'twinFallsIdaho',
|
|
2477
|
+
value: 'TWIN_FALLS_IDAHO',
|
|
2478
|
+
label: 'Twin Falls - Idaho',
|
|
2479
|
+
color: 'orange',
|
|
2480
|
+
position: 353,
|
|
2481
|
+
},
|
|
2482
|
+
{
|
|
2483
|
+
key: 'tylerTexas',
|
|
2484
|
+
value: 'TYLER_TEXAS',
|
|
2485
|
+
label: 'Tyler - Texas',
|
|
2486
|
+
color: 'purple',
|
|
2487
|
+
position: 354,
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
key: 'urbanHonoluluHawaii',
|
|
2491
|
+
value: 'URBAN_HONOLULU_HAWAII',
|
|
2492
|
+
label: 'Urban Honolulu - Hawaii',
|
|
2493
|
+
color: 'yellow',
|
|
2494
|
+
position: 355,
|
|
2495
|
+
},
|
|
2496
|
+
{
|
|
2497
|
+
key: 'uticaNewYork',
|
|
2498
|
+
value: 'UTICA_NEW_YORK',
|
|
2499
|
+
label: 'Utica - New York',
|
|
2500
|
+
color: 'pink',
|
|
2501
|
+
position: 356,
|
|
2502
|
+
},
|
|
2503
|
+
{
|
|
2504
|
+
key: 'valdostaGeorgia',
|
|
2505
|
+
value: 'VALDOSTA_GEORGIA',
|
|
2506
|
+
label: 'Valdosta - Georgia',
|
|
2507
|
+
color: 'cyan',
|
|
2508
|
+
position: 357,
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
key: 'vallejoCalifornia',
|
|
2512
|
+
value: 'VALLEJO_CALIFORNIA',
|
|
2513
|
+
label: 'Vallejo - California',
|
|
2514
|
+
color: 'brown',
|
|
2515
|
+
position: 358,
|
|
2516
|
+
},
|
|
2517
|
+
{
|
|
2518
|
+
key: 'victoriaTexas',
|
|
2519
|
+
value: 'VICTORIA_TEXAS',
|
|
2520
|
+
label: 'Victoria - Texas',
|
|
2521
|
+
color: 'lime',
|
|
2522
|
+
position: 359,
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
key: 'vinelandNewJersey',
|
|
2526
|
+
value: 'VINELAND_NEW_JERSEY',
|
|
2527
|
+
label: 'Vineland - New Jersey',
|
|
2528
|
+
color: 'violet',
|
|
2529
|
+
position: 360,
|
|
2530
|
+
},
|
|
2531
|
+
{
|
|
2532
|
+
key: 'virginiaBeachVirginia',
|
|
2533
|
+
value: 'VIRGINIA_BEACH_VIRGINIA',
|
|
2534
|
+
label: 'Virginia Beach - Virginia',
|
|
2535
|
+
color: 'gold',
|
|
2536
|
+
position: 361,
|
|
2537
|
+
},
|
|
2538
|
+
{
|
|
2539
|
+
key: 'visaliaCalifornia',
|
|
2540
|
+
value: 'VISALIA_CALIFORNIA',
|
|
2541
|
+
label: 'Visalia - California',
|
|
2542
|
+
color: 'turquoise',
|
|
2543
|
+
position: 362,
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
key: 'wacoTexas',
|
|
2547
|
+
value: 'WACO_TEXAS',
|
|
2548
|
+
label: 'Waco - Texas',
|
|
2549
|
+
color: 'crimson',
|
|
2550
|
+
position: 363,
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
key: 'wallaWallaWashington',
|
|
2554
|
+
value: 'WALLA_WALLA_WASHINGTON',
|
|
2555
|
+
label: 'Walla Walla - Washington',
|
|
2556
|
+
color: 'sky',
|
|
2557
|
+
position: 364,
|
|
2558
|
+
},
|
|
2559
|
+
{
|
|
2560
|
+
key: 'warnerRobinsGeorgia',
|
|
2561
|
+
value: 'WARNER_ROBINS_GEORGIA',
|
|
2562
|
+
label: 'Warner Robins - Georgia',
|
|
2563
|
+
color: 'amber',
|
|
2564
|
+
position: 365,
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
key: 'waterlooIowa',
|
|
2568
|
+
value: 'WATERLOO_IOWA',
|
|
2569
|
+
label: 'Waterloo - Iowa',
|
|
2570
|
+
color: 'plum',
|
|
2571
|
+
position: 366,
|
|
2572
|
+
},
|
|
2573
|
+
{
|
|
2574
|
+
key: 'watertownNewYork',
|
|
2575
|
+
value: 'WATERTOWN_NEW_YORK',
|
|
2576
|
+
label: 'Watertown - New York',
|
|
2577
|
+
color: 'grass',
|
|
2578
|
+
position: 367,
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
key: 'wausauWisconsin',
|
|
2582
|
+
value: 'WAUSAU_WISCONSIN',
|
|
2583
|
+
label: 'Wausau - Wisconsin',
|
|
2584
|
+
color: 'tomato',
|
|
2585
|
+
position: 368,
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
key: 'weirtonWestVirginia',
|
|
2589
|
+
value: 'WEIRTON_WEST_VIRGINIA',
|
|
2590
|
+
label: 'Weirton - West Virginia',
|
|
2591
|
+
color: 'iris',
|
|
2592
|
+
position: 369,
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
key: 'wenatcheeWashington',
|
|
2596
|
+
value: 'WENATCHEE_WASHINGTON',
|
|
2597
|
+
label: 'Wenatchee - Washington',
|
|
2598
|
+
color: 'mint',
|
|
2599
|
+
position: 370,
|
|
2600
|
+
},
|
|
2601
|
+
{
|
|
2602
|
+
key: 'wheelingWestVirginia',
|
|
2603
|
+
value: 'WHEELING_WEST_VIRGINIA',
|
|
2604
|
+
label: 'Wheeling - West Virginia',
|
|
2605
|
+
color: 'ruby',
|
|
2606
|
+
position: 371,
|
|
2607
|
+
},
|
|
2608
|
+
{
|
|
2609
|
+
key: 'wichitaFallsTexas',
|
|
2610
|
+
value: 'WICHITA_FALLS_TEXAS',
|
|
2611
|
+
label: 'Wichita Falls - Texas',
|
|
2612
|
+
color: 'bronze',
|
|
2613
|
+
position: 372,
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
key: 'wichitaKansas',
|
|
2617
|
+
value: 'WICHITA_KANSAS',
|
|
2618
|
+
label: 'Wichita - Kansas',
|
|
2619
|
+
color: 'jade',
|
|
2620
|
+
position: 373,
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
key: 'williamsportPennsylvania',
|
|
2624
|
+
value: 'WILLIAMSPORT_PENNSYLVANIA',
|
|
2625
|
+
label: 'Williamsport - Pennsylvania',
|
|
2626
|
+
color: 'gray',
|
|
2627
|
+
position: 374,
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
key: 'wilmingtonNorthCarolina',
|
|
2631
|
+
value: 'WILMINGTON_NORTH_CAROLINA',
|
|
2632
|
+
label: 'Wilmington - North Carolina',
|
|
2633
|
+
color: 'blue',
|
|
2634
|
+
position: 375,
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
key: 'winchesterVirginia',
|
|
2638
|
+
value: 'WINCHESTER_VIRGINIA',
|
|
2639
|
+
label: 'Winchester - Virginia',
|
|
2640
|
+
color: 'red',
|
|
2641
|
+
position: 376,
|
|
2642
|
+
},
|
|
2643
|
+
{
|
|
2644
|
+
key: 'winstonNorthCarolina',
|
|
2645
|
+
value: 'WINSTON_NORTH_CAROLINA',
|
|
2646
|
+
label: 'Winston - North Carolina',
|
|
2647
|
+
color: 'green',
|
|
2648
|
+
position: 377,
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
key: 'worcesterMassachusetts',
|
|
2652
|
+
value: 'WORCESTER_MASSACHUSETTS',
|
|
2653
|
+
label: 'Worcester - Massachusetts',
|
|
2654
|
+
color: 'orange',
|
|
2655
|
+
position: 378,
|
|
2656
|
+
},
|
|
2657
|
+
{
|
|
2658
|
+
key: 'yakimaWashington',
|
|
2659
|
+
value: 'YAKIMA_WASHINGTON',
|
|
2660
|
+
label: 'Yakima - Washington',
|
|
2661
|
+
color: 'purple',
|
|
2662
|
+
position: 379,
|
|
2663
|
+
},
|
|
2664
|
+
{
|
|
2665
|
+
key: 'yorkPennsylvania',
|
|
2666
|
+
value: 'YORK_PENNSYLVANIA',
|
|
2667
|
+
label: 'York - Pennsylvania',
|
|
2668
|
+
color: 'yellow',
|
|
2669
|
+
position: 380,
|
|
2670
|
+
},
|
|
2671
|
+
{
|
|
2672
|
+
key: 'youngstownOhio',
|
|
2673
|
+
value: 'YOUNGSTOWN_OHIO',
|
|
2674
|
+
label: 'Youngstown - Ohio',
|
|
2675
|
+
color: 'pink',
|
|
2676
|
+
position: 381,
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
key: 'yubaCityCalifornia',
|
|
2680
|
+
value: 'YUBA_CITY_CALIFORNIA',
|
|
2681
|
+
label: 'Yuba City - California',
|
|
2682
|
+
color: 'cyan',
|
|
2683
|
+
position: 382,
|
|
2684
|
+
},
|
|
2685
|
+
{
|
|
2686
|
+
key: 'yumaArizona',
|
|
2687
|
+
value: 'YUMA_ARIZONA',
|
|
2688
|
+
label: 'Yuma - Arizona',
|
|
2689
|
+
color: 'brown',
|
|
2690
|
+
position: 383,
|
|
2691
|
+
},
|
|
2692
|
+
];
|