@cdc/map 2.6.2 → 2.6.3

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.
Files changed (37) hide show
  1. package/dist/cdcmap.js +27 -27
  2. package/examples/default-county.json +105 -0
  3. package/examples/default-single-state.json +109 -0
  4. package/examples/default-usa.json +744 -603
  5. package/examples/example-city-state.json +474 -0
  6. package/examples/example-world-map.json +1596 -0
  7. package/examples/gender-rate-map.json +1 -0
  8. package/package.json +50 -47
  9. package/src/CdcMap.js +422 -159
  10. package/src/components/CityList.js +3 -2
  11. package/src/components/CountyMap.js +556 -0
  12. package/src/components/DataTable.js +73 -19
  13. package/src/components/EditorPanel.js +2088 -1230
  14. package/src/components/Sidebar.js +5 -5
  15. package/src/components/SingleStateMap.js +326 -0
  16. package/src/components/UsaMap.js +20 -3
  17. package/src/data/abbreviations.js +57 -0
  18. package/src/data/color-palettes.js +10 -1
  19. package/src/data/county-map-halfquality.json +58453 -0
  20. package/src/data/county-map-quarterquality.json +1 -0
  21. package/src/data/county-topo.json +1 -0
  22. package/src/data/dfc-map.json +1 -0
  23. package/src/data/initial-state.js +2 -2
  24. package/src/data/newtest.json +1 -0
  25. package/src/data/state-abbreviations.js +60 -0
  26. package/src/data/supported-geos.js +3504 -151
  27. package/src/data/test.json +1 -0
  28. package/src/hooks/useActiveElement.js +19 -0
  29. package/src/index.html +27 -20
  30. package/src/index.js +8 -4
  31. package/src/scss/datatable.scss +2 -1
  32. package/src/scss/main.scss +10 -1
  33. package/src/scss/map.scss +153 -123
  34. package/src/scss/sidebar.scss +0 -1
  35. package/uploads/upload-example-city-state.json +392 -0
  36. package/uploads/upload-example-world-data.json +1490 -0
  37. package/LICENSE +0 -201
@@ -1,57 +1,170 @@
1
1
  export const supportedStates = {
2
2
  // States
3
- 'US-AL': ['Alabama', 'AL'],
4
- 'US-AK': ['Alaska', 'AK'],
5
- 'US-AZ': ['Arizona', 'AZ'],
6
- 'US-AR': ['Arkansas', 'AR'],
7
- 'US-CA': ['California', 'CA'],
8
- 'US-CO': ['Colorado', 'CO'],
9
- 'US-CT': ['Connecticut', 'CT'],
10
- 'US-DE': ['Delaware', 'DE'],
11
- 'US-FL': ['Florida', 'FL'],
12
- 'US-GA': ['Georgia', 'GA'],
13
- 'US-HI': ['Hawaii', 'HI'],
14
- 'US-ID': ['Idaho', 'ID'],
15
- 'US-IL': ['Illinois', 'IL'],
16
- 'US-IN': ['Indiana', 'IN'],
17
- 'US-IA': ['Iowa', 'IA'],
18
- 'US-KS': ['Kansas', 'KS'],
19
- 'US-KY': ['Kentucky', 'KY'],
20
- 'US-LA': ['Louisiana', 'LA'],
21
- 'US-ME': ['Maine', 'ME'],
22
- 'US-MD': ['Maryland', 'MD'],
23
- 'US-MA': ['Massachusetts', 'MA'],
24
- 'US-MI': ['Michigan', 'MI'],
25
- 'US-MN': ['Minnesota', 'MN'],
26
- 'US-MS': ['Mississippi', 'MS'],
27
- 'US-MO': ['Missouri', 'MO'],
28
- 'US-MT': ['Montana', 'MT'],
29
- 'US-NE': ['Nebraska', 'NE'],
30
- 'US-NV': ['Nevada', 'NV'],
31
- 'US-NH': ['New Hampshire', 'NH'],
32
- 'US-NJ': ['New Jersey', 'NJ'],
33
- 'US-NM': ['New Mexico', 'NM'],
34
- 'US-NY': ['New York', 'NY'],
35
- 'US-NC': ['North Carolina', 'NC'],
36
- 'US-ND': ['North Dakota', 'ND'],
37
- 'US-OH': ['Ohio', 'OH'],
38
- 'US-OK': ['Oklahoma', 'OK'],
39
- 'US-OR': ['Oregon', 'OR'],
40
- 'US-PA': ['Pennsylvania', 'PA'],
41
- 'US-RI': ['Rhode Island', 'RI'],
42
- 'US-SC': ['South Carolina', 'SC'],
43
- 'US-SD': ['South Dakota', 'SD'],
44
- 'US-TN': ['Tennessee', 'TN'],
45
- 'US-TX': ['Texas', 'TX'],
46
- 'US-UT': ['Utah', 'UT'],
47
- 'US-VT': ['Vermont', 'VT'],
48
- 'US-VA': ['Virginia', 'VA'],
49
- 'US-WA': ['Washington', 'WA'],
50
- 'US-WV': ['West Virginia', 'WV'],
51
- 'US-WI': ['Wisconsin', 'WI'],
52
- 'US-WY': ['Wyoming', 'WY'],
3
+ 'US-AL': ['ALABAMA', 'AL'],
4
+ 'US-AK': ['ALASKA', 'AK'],
5
+ 'US-AZ': ['ARIZONA', 'AZ'],
6
+ 'US-AR': ['ARKANSAS', 'AR'],
7
+ 'US-CA': ['CALIFORNIA', 'CA'],
8
+ 'US-CO': ['COLORADO', 'CO'],
9
+ 'US-CT': ['CONNECTICUT', 'CT'],
10
+ 'US-DE': ['DELAWARE', 'DE'],
11
+ 'US-FL': ['FLORIDA', 'FL'],
12
+ 'US-GA': ['GEORGIA', 'GA'],
13
+ 'US-HI': ['HAWAII', 'HI'],
14
+ 'US-ID': ['IDAHO', 'ID'],
15
+ 'US-IL': ['ILLINOIS', 'IL'],
16
+ 'US-IN': ['INDIANA', 'IN'],
17
+ 'US-IA': ['IOWA', 'IA'],
18
+ 'US-KS': ['KANSAS', 'KS'],
19
+ 'US-KY': ['KENTUCKY', 'KY'],
20
+ 'US-LA': ['LOUISIANA', 'LA'],
21
+ 'US-ME': ['MAINE', 'ME'],
22
+ 'US-MD': ['MARYLAND', 'MD'],
23
+ 'US-MA': ['MASSACHUSETTS', 'MA'],
24
+ 'US-MI': ['MICHIGAN', 'MI'],
25
+ 'US-MN': ['MINNESOTA', 'MN'],
26
+ 'US-MS': ['MISSISSIPPI', 'MS'],
27
+ 'US-MO': ['MISSOURI', 'MO'],
28
+ 'US-MT': ['MONTANA', 'MT'],
29
+ 'US-NE': ['NEBRASKA', 'NE'],
30
+ 'US-NV': ['NEVADA', 'NV'],
31
+ 'US-NH': ['NEW HAMPSHIRE', 'NH'],
32
+ 'US-NJ': ['NEW JERSEY', 'NJ'],
33
+ 'US-NM': ['NEW MEXICO', 'NM'],
34
+ 'US-NY': ['NEW YORK', 'NY'],
35
+ 'US-NC': ['NORTH CAROLINA', 'NC'],
36
+ 'US-ND': ['NORTH DAKOTA', 'ND'],
37
+ 'US-OH': ['OHIO', 'OH'],
38
+ 'US-OK': ['OKLAHOMA', 'OK'],
39
+ 'US-OR': ['OREGON', 'OR'],
40
+ 'US-PA': ['PENNSYLVANIA', 'PA'],
41
+ 'US-RI': ['RHODE ISLAND', 'RI'],
42
+ 'US-SC': ['SOUTH CAROLINA', 'SC'],
43
+ 'US-SD': ['SOUTH DAKOTA', 'SD'],
44
+ 'US-TN': ['TENNESSEE', 'TN'],
45
+ 'US-TX': ['TEXAS', 'TX'],
46
+ 'US-UT': ['UTAH', 'UT'],
47
+ 'US-VT': ['VERMONT', 'VT'],
48
+ 'US-VA': ['VIRGINIA', 'VA'],
49
+ 'US-WA': ['WASHINGTON', 'WA'],
50
+ 'US-WV': ['WEST VIRGINIA', 'WV'],
51
+ 'US-WI': ['WISCONSIN', 'WI'],
52
+ 'US-WY': ['WYOMING', 'WY']
53
53
  };
54
54
 
55
+
56
+ export const stateToIso = {
57
+ // States
58
+ 'Alabama': 'US-AL',
59
+ 'Alaska': 'US-AK',
60
+ 'Arizona': 'US-AZ',
61
+ 'Arkansas': 'US-AR',
62
+ 'California': 'US-CA',
63
+ 'Colorado': 'US-CO',
64
+ 'Connecticut': 'US-CT',
65
+ 'Delaware': 'US-DE',
66
+ 'Florida': 'US-FL',
67
+ 'Georgia': 'US-GA',
68
+ 'Hawaii': 'US-HI',
69
+ 'Idaho': 'US-ID',
70
+ 'Illinois': 'US-IL',
71
+ 'Indiana': 'US-IN',
72
+ 'Iowa': 'US-IA',
73
+ 'Kansas': 'US-KS',
74
+ 'Kentucky': 'US-KY',
75
+ 'Louisiana': 'US-LA',
76
+ 'Maine': 'US-ME',
77
+ 'Maryland': 'US-MD',
78
+ 'Massachusetts': 'US-MA',
79
+ 'Michigan': 'US-MI',
80
+ 'Minnesota': 'US-MN',
81
+ 'Mississippi': 'US-MS',
82
+ 'Missouri': 'US-MO',
83
+ 'Montana': 'US-MT',
84
+ 'Nebraska': 'US-NE',
85
+ 'Nevada': 'US-NV',
86
+ 'New Hampshire': 'US-NH',
87
+ 'New Jersey': 'US-NJ',
88
+ 'New Mexico': 'US-NM',
89
+ 'New York': 'US-NY',
90
+ 'North Carolina': 'US-NC',
91
+ 'North Dakota': 'US-ND',
92
+ 'Ohio': 'US-OH',
93
+ 'Oklahoma': 'US-OK',
94
+ 'Oregon': 'US-OR',
95
+ 'Pennsylvania': 'US-PA',
96
+ 'Rhode Island': 'US-RI',
97
+ 'South Carolina': 'US-SC',
98
+ 'South Dakota': 'US-SD',
99
+ 'Tennessee': 'US-TN',
100
+ 'Texas': 'US-TX',
101
+ 'Utah': 'US-UT',
102
+ 'Vermont': 'US-VT',
103
+ 'Virginia': 'US-VA',
104
+ 'Washington': 'US-WA',
105
+ 'West Virginia': 'US-WV',
106
+ 'Wisconsin': 'US-WI',
107
+ 'Wyoming': 'US-WY',
108
+ };
109
+
110
+ export const supportedStatesFipsCodes = {
111
+ '01': 'Alabama',
112
+ '02': 'Alaska',
113
+ '04': 'Arizona',
114
+ '05': 'Arkansas',
115
+ '06': 'California',
116
+ '08': 'Colorado',
117
+ '09': 'Connecticut',
118
+ '10': 'Delaware',
119
+ '12': 'Florida',
120
+ '13': 'Georgia',
121
+ '15': 'Hawaii',
122
+ '16': 'Idaho',
123
+ '17': 'Illinois',
124
+ '18': 'Indiana',
125
+ '19': 'Iowa',
126
+ '20': 'Kansas',
127
+ '21': 'Kentucky',
128
+ '22': 'Louisiana',
129
+ '23': 'Maine',
130
+ '24': 'Maryland',
131
+ '25': 'Massachusetts',
132
+ '26': 'Michigan',
133
+ '27': 'Minnesota',
134
+ '28': 'Mississippi',
135
+ '29': 'Missouri',
136
+ '30': 'Montana',
137
+ '31': 'Nebraska',
138
+ '32': 'Nevada',
139
+ '33': 'New Hampshire',
140
+ '34': 'New Jersey',
141
+ '35': 'New Mexico',
142
+ '36': 'New York',
143
+ '37': 'North Carolina',
144
+ '38': 'North Dakota',
145
+ '39': 'Ohio',
146
+ '40': 'Oklahoma',
147
+ '41': 'Oregon',
148
+ '42': 'Pennsylvania',
149
+ '44': 'Rhode Island',
150
+ '45': 'South Carolina',
151
+ '46': 'South Dakota',
152
+ '47': 'Tennessee',
153
+ '48': 'Texas',
154
+ '49': 'Utah',
155
+ '50': 'Vermont',
156
+ '51': 'Virginia',
157
+ '53': 'Washington',
158
+ '54': 'West Virginia',
159
+ '55': 'Wisconsin',
160
+ '56': 'Wyoming',
161
+ '60': 'American Samoa',
162
+ '66': 'Guam',
163
+ '69': 'Northern Mariana Islands',
164
+ '72': 'Puerto Rico',
165
+ '78': 'Virgin Islands'
166
+ }
167
+
55
168
  export const supportedCountries = {
56
169
  AFG: ['Afghanistan'],
57
170
  ALA: ['Åland', 'Åland Islands'],
@@ -315,108 +428,3348 @@ export const supportedTerritories = {
315
428
  };
316
429
 
317
430
  export const supportedCities = {
318
- 'District of Columbia': [-77.036873, 38.907192],
319
- 'Los Angeles County': [-118.229362, 34.058762],
320
- Mesa: [-111.831474, 33.415184],
321
- Phoenix: [-112.074036, 33.448376],
322
- Tucson: [-110.974709, 32.222607],
323
- Fresno: [-119.787125, 36.737797],
324
- 'Long Beach': [-118.193741, 33.770050],
325
- 'Los Angeles': [-118.243683, 34.052235],
326
- Oakland: [-122.271111, 37.804363],
327
- Sacramento: [-121.494400, 38.581573],
328
- 'San Diego': [-117.161087, 32.715736],
329
- 'San Francisco': [-122.419418, 37.774929],
330
- 'San Jose': [-121.886330, 37.338207],
331
- 'Colorado Springs': [-104.821365, 38.833881],
332
- Denver: [-104.990250, 39.739235],
333
- Jacksonville: [-81.655647, 30.332184],
334
- Miami: [-80.191788, 25.761681],
335
- Atlanta: [-84.387985, 33.748997],
336
- Chicago: [-87.629799, 41.878113],
337
- Indianapolis: [-86.158066, 39.768402],
338
- Wichita: [-97.330055, 37.687176],
339
- Louisville: [-85.758453, 38.252666],
340
- 'New Orleans': [-90.071533, 29.951065],
341
- Boston: [-71.058884, 42.360081],
431
+ 'DISTRICT OF COLUMBIA': [-77.036873, 38.907192],
432
+ 'LOS ANGELES COUNTY': [-118.229362, 34.058762],
433
+ MESA: [-111.831474, 33.415184],
434
+ PHOENIX: [-112.074036, 33.448376],
435
+ TUCSON: [-110.974709, 32.222607],
436
+ FRESNO: [-119.787125, 36.737797],
437
+ 'LONG BEACH': [-118.193741, 33.770050],
438
+ 'LOS ANGELES': [-118.243683, 34.052235],
439
+ OAKLAND: [-122.271111, 37.804363],
440
+ SACRAMENTO: [-121.494400, 38.581573],
441
+ 'SAN DIEGO': [-117.161087, 32.715736],
442
+ 'SAN FRANCISCO': [-122.419418, 37.774929],
443
+ 'SAN JOSE': [-121.886330, 37.338207],
444
+ 'COLORADO SPRINGS': [-104.821365, 38.833881],
445
+ DENVER: [-104.990250, 39.739235],
446
+ JACKSONVILLE: [-81.655647, 30.332184],
447
+ MIAMI: [-80.191788, 25.761681],
448
+ ATLANTA: [-84.387985, 33.748997],
449
+ CHICAGO: [-87.629799, 41.878113],
450
+ INDIANAPOLIS: [-86.158066, 39.768402],
451
+ WICHITA: [-97.330055, 37.687176],
452
+ LOUISVILLE: [-85.758453, 38.252666],
453
+ 'NEW ORLEANS': [-90.071533, 29.951065],
454
+ BOSTON: [-71.058884, 42.360081],
342
455
  Baltimore: [-76.612190, 39.290386],
343
456
  Detroit: [-83.045753, 42.331429],
344
457
  Minneapolis: [-93.265015, 44.977753],
345
- 'Kansas City': [-94.578568, 39.099728],
346
- Charlotte: [-80.843124, 35.227085],
347
- Raleigh: [-78.638176, 35.779591],
348
- Albuquerque: [-106.650421, 35.084385],
349
- 'New York City': [-74.005974, 40.712776],
350
- Omaha: [-95.934502, 41.256538],
351
- 'Las Vegas': [-115.139832, 36.169941],
352
- Cleveland: [-81.694359, 41.499321],
353
- Columbus: [-82.998795, 39.961178],
354
- 'Oklahoma City': [-97.516426, 35.467560],
355
- Tulsa: [-95.992775, 36.153980],
356
- Portland: [-122.658722, 45.512230],
357
- Philadelphia: [-75.165222, 39.952583],
358
- Nashville: [-86.781601, 36.162663],
359
- Memphis: [-90.048981, 35.149532],
360
- Arlington: [-97.108063, 32.735687],
361
- Austin: [-97.743057, 30.267153],
362
- Dallas: [-96.796989, 32.776665],
363
- 'El Paso': [-106.485023, 31.761877],
364
- 'Fort Worth': [-97.330765, 32.755489],
365
- Houston: [-95.358421, 29.749907],
366
- 'San Antonio': [-98.493629, 29.424122],
367
- 'Virginia Beach': [-75.977982, 36.852924],
368
- Seattle: [-122.332069, 47.606209],
369
- Milwaukee: [-87.906471, 43.038902],
370
- Tucscon: [-110.974709, 32.222607],
371
- Tampa: [-82.457176, 27.950575],
372
- Bakersfield: [-119.018715, 35.373291],
373
- Aurora: [-93.717979, 36.970890],
374
- Anaheim: [-117.914299, 33.836594],
375
- Honolulu: [-157.858337, 21.306944],
376
- 'Santa Ana': [-117.867653, 33.745472],
377
- Riverside: [-117.375496, 33.980602],
378
- 'Corpus Christi': [-97.396378, 27.800583],
379
- Lexington: [-84.503716, 38.040585],
380
- Stockton: [-121.290779, 37.957703],
381
- Henderson: [-114.981720, 36.039524],
382
- 'Saint Paul': [-93.089958, 44.953705],
383
- 'St. Louis': [-90.199402, 38.627003],
384
- Cincinnati: [-84.512016, 39.103119],
385
- Pittsburgh: [-79.995888, 40.440624],
386
- Greensboro: [-79.791977, 36.072636],
387
- Anchorage: [-149.900284, 61.218056],
388
- Plano: [-96.698883, 33.019844],
389
- Lincoln: [-95.262955, 37.346134],
390
- Orlando: [-81.379234, 28.538336],
391
- Irvine: [-117.826508, 33.684566],
392
- Newark: [-95.582733, 37.443188],
393
- Toledo: [-83.537865, 41.652805],
394
- Durham: [-78.898621, 35.994034],
395
- 'Chula Vista': [-117.084198, 32.640053],
396
- 'Fort Wayne': [-85.139351, 41.079273],
397
- 'Jersey City': [-74.077644, 40.728157],
398
- 'St. Petersburg': [-82.640289, 27.767601],
399
- Laredo: [-99.507553, 27.503561],
400
- Madison: [-89.401230, 43.073051],
401
- Chandler: [-111.841248, 33.306160],
402
- Buffalo: [-78.878372, 42.886448],
403
- Lubbock: [-101.855164, 33.577862],
404
- Scottsdale: [-111.926048, 33.494171],
405
- Reno: [-119.813805, 39.529633],
406
- Glendale: [-118.255074, 34.142509],
407
- Gilbert: [-111.789024, 33.352825],
408
- 'Winston-Salem': [-80.244217, 36.099861],
409
- 'North Las Vegas': [-115.114571, 36.195850],
410
- Norfolk: [-76.285873, 36.850769],
411
- Chesapeake: [-76.287491, 36.768208],
412
- Garland: [-96.638885, 32.912624],
413
- Irving: [-96.948891, 32.814018],
414
- Hialeah: [-80.278107, 25.857595],
415
- Fremont: [-121.988571, 37.548271],
416
- Boise: [-116.202316, 43.615021],
417
- Richmond: [-77.436050, 37.540726],
418
- 'Baton Rouge': [-91.187149, 30.451468],
419
- Spokane: [-117.426048, 47.658779],
420
- 'Marion County, Indiana': [-86.136543, 39.781029],
421
- 'Montgomery County, Marlyand': [-77.199406, 39.153515]
458
+ 'KANSAS CITY': [-94.578568, 39.099728],
459
+ CHARLOTTE: [-80.843124, 35.227085],
460
+ RALEIGH: [-78.638176, 35.779591],
461
+ ALBUQUERQUE: [-106.650421, 35.084385],
462
+ 'NEW YORK CITY': [-74.005974, 40.712776],
463
+ OMAHA: [-95.934502, 41.256538],
464
+ 'LAS VEGAS': [-115.139832, 36.169941],
465
+ CLEVELAND: [-81.694359, 41.499321],
466
+ COLUMBUS: [-82.998795, 39.961178],
467
+ 'OKLAHOMA CITY': [-97.516426, 35.467560],
468
+ TULSA: [-95.992775, 36.153980],
469
+ PORTLAND: [-122.658722, 45.512230],
470
+ PHILIDELPHIA: [-75.165222, 39.952583],
471
+ NASHVILLE: [-86.781601, 36.162663],
472
+ MEMPHIS: [-90.048981, 35.149532],
473
+ ARLINGTON: [-97.108063, 32.735687],
474
+ AUSTIN: [-97.743057, 30.267153],
475
+ DALLAS: [-96.796989, 32.776665],
476
+ 'EL PASO': [-106.485023, 31.761877],
477
+ 'FORT WORTH': [-97.330765, 32.755489],
478
+ HOUSTON: [-95.358421, 29.749907],
479
+ 'SAN ANTONIO': [-98.493629, 29.424122],
480
+ 'VIRGINIA BEACH': [-75.977982, 36.852924],
481
+ SEATTLE: [-122.332069, 47.606209],
482
+ MILWAUKEE: [-87.906471, 43.038902],
483
+ TUSCON: [-110.974709, 32.222607],
484
+ TAMPA: [-82.457176, 27.950575],
485
+ BAKERSFIELD: [-119.018715, 35.373291],
486
+ AURORA: [-93.717979, 36.970890],
487
+ ANAHEIM: [-117.914299, 33.836594],
488
+ HONOLULU: [-157.858337, 21.306944],
489
+ 'SANTA ANA': [-117.867653, 33.745472],
490
+ RIVERSIDE: [-117.375496, 33.980602],
491
+ 'CORPUS CHRISTI': [-97.396378, 27.800583],
492
+ LEXINGTON: [-84.503716, 38.040585],
493
+ STOCKTON: [-121.290779, 37.957703],
494
+ HENDERSON: [-114.981720, 36.039524],
495
+ 'SAINT PAUL': [-93.089958, 44.953705],
496
+ 'ST. LOUIS': [-90.199402, 38.627003],
497
+ CINCINNATI: [-84.512016, 39.103119],
498
+ PITTSBURGH: [-79.995888, 40.440624],
499
+ GREENSBORO: [-79.791977, 36.072636],
500
+ ANCHORAGE: [-149.900284, 61.218056],
501
+ PLANO: [-96.698883, 33.019844],
502
+ LINCOLN: [-95.262955, 37.346134],
503
+ ORLANDO: [-81.379234, 28.538336],
504
+ IRVINE: [-117.826508, 33.684566],
505
+ NEWARK: [-95.582733, 37.443188],
506
+ TOLEDO: [-83.537865, 41.652805],
507
+ DURHAM: [-78.898621, 35.994034],
508
+ 'CHULA VISTA': [-117.084198, 32.640053],
509
+ 'FOR WAYNE': [-85.139351, 41.079273],
510
+ 'JERSEY CITY': [-74.077644, 40.728157],
511
+ 'ST. PETERSBURG': [-82.640289, 27.767601],
512
+ LAREDO: [-99.507553, 27.503561],
513
+ MADISON: [-89.401230, 43.073051],
514
+ CHANDLER: [-111.841248, 33.306160],
515
+ BUFFALO: [-78.878372, 42.886448],
516
+ LUBBOCK: [-101.855164, 33.577862],
517
+ SCOTTSDALE: [-111.926048, 33.494171],
518
+ RENO: [-119.813805, 39.529633],
519
+ GLENDALE: [-118.255074, 34.142509],
520
+ GILBERT: [-111.789024, 33.352825],
521
+ 'WINSTON-SALEM': [-80.244217, 36.099861],
522
+ 'NORTH LAS VEGAS': [-115.114571, 36.195850],
523
+ NORFOLK: [-76.285873, 36.850769],
524
+ CHESAPEAKE: [-76.287491, 36.768208],
525
+ GARLAND: [-96.638885, 32.912624],
526
+ IRVING: [-96.948891, 32.814018],
527
+ HIALEAH: [-80.278107, 25.857595],
528
+ FREMONT: [-121.988571, 37.548271],
529
+ BOISE: [-116.202316, 43.615021],
530
+ RICHMOND: [-77.436050, 37.540726],
531
+ 'BATON ROUGE': [-91.187149, 30.451468],
532
+ SPOKANE: [-117.426048, 47.658779],
533
+ 'MARION COUNTY, INDIANA': [-86.136543, 39.781029],
534
+ 'MONTGOMERY COUNTY, MARYLAND': [-77.199406, 39.153515]
422
535
  };
536
+
537
+ export const supportedCounties = {
538
+ '10001': 'Kent',
539
+ '10003': 'New Castle',
540
+ '10005': 'Sussex',
541
+ '11001': 'Washington',
542
+ '12001': 'Alachua',
543
+ '12003': 'Baker',
544
+ '12005': 'Bay',
545
+ '12007': 'Bradford',
546
+ '12009': 'Brevard',
547
+ '12011': 'Broward',
548
+ '12013': 'Calhoun',
549
+ '12015': 'Charlotte',
550
+ '12017': 'Citrus',
551
+ '12019': 'Clay',
552
+ '12021': 'Collier',
553
+ '12023': 'Columbia',
554
+ '12027': 'De Soto',
555
+ '12029': 'Dixie',
556
+ '12031': 'Duval',
557
+ '12033': 'Escambia',
558
+ '12035': 'Flagler',
559
+ '12037': 'Franklin',
560
+ '12039': 'Gadsden',
561
+ '12041': 'Gilchrist',
562
+ '12043': 'Glades',
563
+ '12045': 'Gulf',
564
+ '12047': 'Hamilton',
565
+ '12049': 'Hardee',
566
+ '12051': 'Hendry',
567
+ '12053': 'Hernando',
568
+ '12055': 'Highlands',
569
+ '12057': 'Hillsborough',
570
+ '12059': 'Holmes',
571
+ '12061': 'Indian River',
572
+ '12063': 'Jackson',
573
+ '12065': 'Jefferson',
574
+ '12067': 'Lafayette',
575
+ '12069': 'Lake',
576
+ '12071': 'Lee',
577
+ '12073': 'Leon',
578
+ '12075': 'Levy',
579
+ '12077': 'Liberty',
580
+ '12079': 'Madison',
581
+ '12081': 'Manatee',
582
+ '12083': 'Marion',
583
+ '12085': 'Martin',
584
+ '12086': 'Miami-Dade',
585
+ '12087': 'Monroe',
586
+ '12089': 'Nassau',
587
+ '12091': 'Okaloosa',
588
+ '12093': 'Okeechobee',
589
+ '12095': 'Orange',
590
+ '12097': 'Osceola',
591
+ '12099': 'Palm Beach',
592
+ '12101': 'Pasco',
593
+ '12103': 'Pinellas',
594
+ '12105': 'Polk',
595
+ '12107': 'Putnam',
596
+ '12109': 'St Johns',
597
+ '12111': 'St Lucie',
598
+ '12113': 'Santa Rosa',
599
+ '12115': 'Sarasota',
600
+ '12117': 'Seminole',
601
+ '12119': 'Sumter',
602
+ '12121': 'Suwannee',
603
+ '12123': 'Taylor',
604
+ '12125': 'Union',
605
+ '12127': 'Volusia',
606
+ '12129': 'Wakulla',
607
+ '12131': 'Walton',
608
+ '12133': 'Washington',
609
+ '13001': 'Appling',
610
+ '13003': 'Atkinson',
611
+ '13005': 'Bacon',
612
+ '13007': 'Baker',
613
+ '13009': 'Baldwin',
614
+ '13011': 'Banks',
615
+ '13013': 'Barrow',
616
+ '13015': 'Bartow',
617
+ '13017': 'Ben Hill',
618
+ '13019': 'Berrien',
619
+ '13021': 'Bibb',
620
+ '13023': 'Bleckley',
621
+ '13025': 'Brantley',
622
+ '13027': 'Brooks',
623
+ '13029': 'Bryan',
624
+ '13031': 'Bulloch',
625
+ '13033': 'Burke',
626
+ '13035': 'Butts',
627
+ '13037': 'Calhoun',
628
+ '13039': 'Camden',
629
+ '13043': 'Candler',
630
+ '13045': 'Carroll',
631
+ '13047': 'Catoosa',
632
+ '13049': 'Charlton',
633
+ '13051': 'Chatham',
634
+ '13053': 'Chattahoochee',
635
+ '13055': 'Chattooga',
636
+ '13057': 'Cherokee',
637
+ '13059': 'Clarke',
638
+ '13061': 'Clay',
639
+ '13063': 'Clayton',
640
+ '13065': 'Clinch',
641
+ '13067': 'Cobb',
642
+ '13069': 'Coffee',
643
+ '13071': 'Colquitt',
644
+ '13073': 'Columbia',
645
+ '13075': 'Cook',
646
+ '13077': 'Coweta',
647
+ '13079': 'Crawford',
648
+ '13081': 'Crisp',
649
+ '13083': 'Dade',
650
+ '13085': 'Dawson',
651
+ '13087': 'Decatur',
652
+ '13089': 'De Kalb',
653
+ '13091': 'Dodge',
654
+ '13093': 'Dooly',
655
+ '13095': 'Dougherty',
656
+ '13097': 'Douglas',
657
+ '13099': 'Early',
658
+ '13101': 'Echols',
659
+ '13103': 'Effingham',
660
+ '13105': 'Elbert',
661
+ '13107': 'Emanuel',
662
+ '13109': 'Evans',
663
+ '13111': 'Fannin',
664
+ '13113': 'Fayette',
665
+ '13115': 'Floyd',
666
+ '13117': 'Forsyth',
667
+ '13119': 'Franklin',
668
+ '13121': 'Fulton',
669
+ '13123': 'Gilmer',
670
+ '13125': 'Glascock',
671
+ '13127': 'Glynn',
672
+ '13129': 'Gordon',
673
+ '13131': 'Grady',
674
+ '13133': 'Greene',
675
+ '13135': 'Gwinnett',
676
+ '13137': 'Habersham',
677
+ '13139': 'Hall',
678
+ '13141': 'Hancock',
679
+ '13143': 'Haralson',
680
+ '13145': 'Harris',
681
+ '13147': 'Hart',
682
+ '13149': 'Heard',
683
+ '13151': 'Henry',
684
+ '13153': 'Houston',
685
+ '13155': 'Irwin',
686
+ '13157': 'Jackson',
687
+ '13159': 'Jasper',
688
+ '13161': 'Jeff Davis',
689
+ '13163': 'Jefferson',
690
+ '13165': 'Jenkins',
691
+ '13167': 'Johnson',
692
+ '13169': 'Jones',
693
+ '13171': 'Lamar',
694
+ '13173': 'Lanier',
695
+ '13175': 'Laurens',
696
+ '13177': 'Lee',
697
+ '13179': 'Liberty',
698
+ '13181': 'Lincoln',
699
+ '13183': 'Long',
700
+ '13185': 'Lowndes',
701
+ '13187': 'Lumpkin',
702
+ '13189': 'McDuffie',
703
+ '13191': 'McIntosh',
704
+ '13193': 'Macon',
705
+ '13195': 'Madison',
706
+ '13197': 'Marion',
707
+ '13199': 'Meriwether',
708
+ '13201': 'Miller',
709
+ '13205': 'Mitchell',
710
+ '13207': 'Monroe',
711
+ '13209': 'Montgomery',
712
+ '13211': 'Morgan',
713
+ '13213': 'Murray',
714
+ '13215': 'Muscogee',
715
+ '13217': 'Newton',
716
+ '13219': 'Oconee',
717
+ '13221': 'Oglethorpe',
718
+ '13223': 'Paulding',
719
+ '13225': 'Peach',
720
+ '13227': 'Pickens',
721
+ '13229': 'Pierce',
722
+ '13231': 'Pike',
723
+ '13233': 'Polk',
724
+ '13235': 'Pulaski',
725
+ '13237': 'Putnam',
726
+ '13239': 'Quitman',
727
+ '13241': 'Rabun',
728
+ '13243': 'Randolph',
729
+ '13245': 'Richmond',
730
+ '13247': 'Rockdale',
731
+ '13249': 'Schley',
732
+ '13251': 'Screven',
733
+ '13253': 'Seminole',
734
+ '13255': 'Spalding',
735
+ '13257': 'Stephens',
736
+ '13259': 'Stewart',
737
+ '13261': 'Sumter',
738
+ '13263': 'Talbot',
739
+ '13265': 'Taliaferro',
740
+ '13267': 'Tattnall',
741
+ '13269': 'Taylor',
742
+ '13271': 'Telfair',
743
+ '13273': 'Terrell',
744
+ '13275': 'Thomas',
745
+ '13277': 'Tift',
746
+ '13279': 'Toombs',
747
+ '13281': 'Towns',
748
+ '13283': 'Treutlen',
749
+ '13285': 'Troup',
750
+ '13287': 'Turner',
751
+ '13289': 'Twiggs',
752
+ '13291': 'Union',
753
+ '13293': 'Upson',
754
+ '13295': 'Walker',
755
+ '13297': 'Walton',
756
+ '13299': 'Ware',
757
+ '13301': 'Warren',
758
+ '13303': 'Washington',
759
+ '13305': 'Wayne',
760
+ '13307': 'Webster',
761
+ '13309': 'Wheeler',
762
+ '13311': 'White',
763
+ '13313': 'Whitfield',
764
+ '13315': 'Wilcox',
765
+ '13317': 'Wilkes',
766
+ '13319': 'Wilkinson',
767
+ '13321': 'Worth',
768
+ '15001': 'Hawaii',
769
+ '15003': 'Honolulu',
770
+ '15007': 'Kauai',
771
+ '15009': 'Maui',
772
+ '16001': 'Ada',
773
+ '16003': 'Adams',
774
+ '16005': 'Bannock',
775
+ '16007': 'Bear Lake',
776
+ '16009': 'Benewah',
777
+ '16011': 'Bingham',
778
+ '16013': 'Blaine',
779
+ '16015': 'Boise',
780
+ '16017': 'Bonner',
781
+ '16019': 'Bonneville',
782
+ '16021': 'Boundary',
783
+ '16023': 'Butte',
784
+ '16025': 'Camas',
785
+ '16027': 'Canyon',
786
+ '16029': 'Caribou',
787
+ '16031': 'Cassia',
788
+ '16033': 'Clark',
789
+ '16035': 'Clearwater',
790
+ '16037': 'Custer',
791
+ '16039': 'Elmore',
792
+ '16041': 'Franklin',
793
+ '16043': 'Fremont',
794
+ '16045': 'Gem',
795
+ '16047': 'Gooding',
796
+ '16049': 'Idaho',
797
+ '16051': 'Jefferson',
798
+ '16053': 'Jerome',
799
+ '16055': 'Kootenai',
800
+ '16057': 'Latah',
801
+ '16059': 'Lemhi',
802
+ '16061': 'Lewis',
803
+ '16063': 'Lincoln',
804
+ '16065': 'Madison',
805
+ '16067': 'Minidoka',
806
+ '16069': 'Nez Perce',
807
+ '16071': 'Oneida',
808
+ '16073': 'Owyhee',
809
+ '16075': 'Payette',
810
+ '16077': 'Power',
811
+ '16079': 'Shoshone',
812
+ '16081': 'Teton',
813
+ '16083': 'Twin Falls',
814
+ '16085': 'Valley',
815
+ '16087': 'Washington',
816
+ '17001': 'Adams',
817
+ '17003': 'Alexander',
818
+ '17005': 'Bond',
819
+ '17007': 'Boone',
820
+ '17009': 'Brown',
821
+ '17011': 'Bureau',
822
+ '17013': 'Calhoun',
823
+ '17015': 'Carroll',
824
+ '17017': 'Cass',
825
+ '17019': 'Champaign',
826
+ '17021': 'Christian',
827
+ '17023': 'Clark',
828
+ '17025': 'Clay',
829
+ '17027': 'Clinton',
830
+ '17029': 'Coles',
831
+ '17031': 'Cook',
832
+ '17033': 'Crawford',
833
+ '17035': 'Cumberland',
834
+ '17037': 'De Kalb',
835
+ '17039': 'De Witt',
836
+ '17041': 'Douglas',
837
+ '17043': 'Du Page',
838
+ '17045': 'Edgar',
839
+ '17047': 'Edwards',
840
+ '17049': 'Effingham',
841
+ '17051': 'Fayette',
842
+ '17053': 'Ford',
843
+ '17055': 'Franklin',
844
+ '17057': 'Fulton',
845
+ '17059': 'Gallatin',
846
+ '17061': 'Greene',
847
+ '17063': 'Grundy',
848
+ '17065': 'Hamilton',
849
+ '17067': 'Hancock',
850
+ '17069': 'Hardin',
851
+ '17071': 'Henderson',
852
+ '17073': 'Henry',
853
+ '17075': 'Iroquois',
854
+ '17077': 'Jackson',
855
+ '17079': 'Jasper',
856
+ '17081': 'Jefferson',
857
+ '17083': 'Jersey',
858
+ '17085': 'Jo Daviess',
859
+ '17087': 'Johnson',
860
+ '17089': 'Kane',
861
+ '17091': 'Kankakee',
862
+ '17093': 'Kendall',
863
+ '17095': 'Knox',
864
+ '17097': 'Lake',
865
+ '17099': 'La Salle',
866
+ '17101': 'Lawrence',
867
+ '17103': 'Lee',
868
+ '17105': 'Livingston',
869
+ '17107': 'Logan',
870
+ '17109': 'McDonough',
871
+ '17111': 'McHenry',
872
+ '17113': 'McLean',
873
+ '17115': 'Macon',
874
+ '17117': 'Macoupin',
875
+ '17119': 'Madison',
876
+ '17121': 'Marion',
877
+ '17123': 'Marshall',
878
+ '17125': 'Mason',
879
+ '17127': 'Massac',
880
+ '17129': 'Menard',
881
+ '17131': 'Mercer',
882
+ '17133': 'Monroe',
883
+ '17135': 'Montgomery',
884
+ '17137': 'Morgan',
885
+ '17139': 'Moultrie',
886
+ '17141': 'Ogle',
887
+ '17143': 'Peoria',
888
+ '17145': 'Perry',
889
+ '17147': 'Piatt',
890
+ '17149': 'Pike',
891
+ '17151': 'Pope',
892
+ '17153': 'Pulaski',
893
+ '17155': 'Putnam',
894
+ '17157': 'Randolph',
895
+ '17159': 'Richland',
896
+ '17161': 'Rock Island',
897
+ '17163': 'St Clair',
898
+ '17165': 'Saline',
899
+ '17167': 'Sangamon',
900
+ '17169': 'Schuyler',
901
+ '17171': 'Scott',
902
+ '17173': 'Shelby',
903
+ '17175': 'Stark',
904
+ '17177': 'Stephenson',
905
+ '17179': 'Tazewell',
906
+ '17181': 'Union',
907
+ '17183': 'Vermilion',
908
+ '17185': 'Wabash',
909
+ '17187': 'Warren',
910
+ '17189': 'Washington',
911
+ '17191': 'Wayne',
912
+ '17193': 'White',
913
+ '17195': 'Whiteside',
914
+ '17197': 'Will',
915
+ '17199': 'Williamson',
916
+ '17201': 'Winnebago',
917
+ '17203': 'Woodford',
918
+ '18001': 'Adams',
919
+ '18003': 'Allen',
920
+ '18005': 'Bartholomew',
921
+ '18007': 'Benton',
922
+ '18009': 'Blackford',
923
+ '18011': 'Boone',
924
+ '18013': 'Brown',
925
+ '18015': 'Carroll',
926
+ '18017': 'Cass',
927
+ '18019': 'Clark',
928
+ '18021': 'Clay',
929
+ '18023': 'Clinton',
930
+ '18025': 'Crawford',
931
+ '18027': 'Daviess',
932
+ '18029': 'Dearborn',
933
+ '18031': 'Decatur',
934
+ '18033': 'De Kalb',
935
+ '18035': 'Delaware',
936
+ '18037': 'Dubois',
937
+ '18039': 'Elkhart',
938
+ '18041': 'Fayette',
939
+ '18043': 'Floyd',
940
+ '18045': 'Fountain',
941
+ '18047': 'Franklin',
942
+ '18049': 'Fulton',
943
+ '18051': 'Gibson',
944
+ '18053': 'Grant',
945
+ '18055': 'Greene',
946
+ '18057': 'Hamilton',
947
+ '18059': 'Hancock',
948
+ '18061': 'Harrison',
949
+ '18063': 'Hendricks',
950
+ '18065': 'Henry',
951
+ '18067': 'Howard',
952
+ '18069': 'Huntington',
953
+ '18071': 'Jackson',
954
+ '18073': 'Jasper',
955
+ '18075': 'Jay',
956
+ '18077': 'Jefferson',
957
+ '18079': 'Jennings',
958
+ '18081': 'Johnson',
959
+ '18083': 'Knox',
960
+ '18085': 'Kosciusko',
961
+ '18087': 'La Grange',
962
+ '18089': 'Lake',
963
+ '18091': 'La Porte',
964
+ '18093': 'Lawrence',
965
+ '18095': 'Madison',
966
+ '18097': 'Marion',
967
+ '18099': 'Marshall',
968
+ '18101': 'Martin',
969
+ '18103': 'Miami',
970
+ '18105': 'Monroe',
971
+ '18107': 'Montgomery',
972
+ '18109': 'Morgan',
973
+ '18111': 'Newton',
974
+ '18113': 'Noble',
975
+ '18115': 'Ohio',
976
+ '18117': 'Orange',
977
+ '18119': 'Owen',
978
+ '18121': 'Parke',
979
+ '18123': 'Perry',
980
+ '18125': 'Pike',
981
+ '18127': 'Porter',
982
+ '18129': 'Posey',
983
+ '18131': 'Pulaski',
984
+ '18133': 'Putnam',
985
+ '18135': 'Randolph',
986
+ '18137': 'Ripley',
987
+ '18139': 'Rush',
988
+ '18141': 'St Joseph',
989
+ '18143': 'Scott',
990
+ '18145': 'Shelby',
991
+ '18147': 'Spencer',
992
+ '18149': 'Starke',
993
+ '18151': 'Steuben',
994
+ '18153': 'Sullivan',
995
+ '18155': 'Switzerland',
996
+ '18157': 'Tippecanoe',
997
+ '18159': 'Tipton',
998
+ '18161': 'Union',
999
+ '18163': 'Vanderburgh',
1000
+ '18165': 'Vermillion',
1001
+ '18167': 'Vigo',
1002
+ '18169': 'Wabash',
1003
+ '18171': 'Warren',
1004
+ '18173': 'Warrick',
1005
+ '18175': 'Washington',
1006
+ '18177': 'Wayne',
1007
+ '18179': 'Wells',
1008
+ '18181': 'White',
1009
+ '18183': 'Whitley',
1010
+ '19001': 'Adair',
1011
+ '19003': 'Adams',
1012
+ '19005': 'Allamakee',
1013
+ '19007': 'Appanoose',
1014
+ '19009': 'Audubon',
1015
+ '19011': 'Benton',
1016
+ '19013': 'Black Hawk',
1017
+ '19015': 'Boone',
1018
+ '19017': 'Bremer',
1019
+ '19019': 'Buchanan',
1020
+ '19021': 'Buena Vista',
1021
+ '19023': 'Butler',
1022
+ '19025': 'Calhoun',
1023
+ '19027': 'Carroll',
1024
+ '19029': 'Cass',
1025
+ '19031': 'Cedar',
1026
+ '19033': 'Cerro Gordo',
1027
+ '19035': 'Cherokee',
1028
+ '19037': 'Chickasaw',
1029
+ '19039': 'Clarke',
1030
+ '19041': 'Clay',
1031
+ '19043': 'Clayton',
1032
+ '19045': 'Clinton',
1033
+ '19047': 'Crawford',
1034
+ '19049': 'Dallas',
1035
+ '19051': 'Davis',
1036
+ '19053': 'Decatur',
1037
+ '19055': 'Delaware',
1038
+ '19057': 'Des Moines',
1039
+ '19059': 'Dickinson',
1040
+ '19061': 'Dubuque',
1041
+ '19063': 'Emmet',
1042
+ '19065': 'Fayette',
1043
+ '19067': 'Floyd',
1044
+ '19069': 'Franklin',
1045
+ '19071': 'Fremont',
1046
+ '19073': 'Greene',
1047
+ '19075': 'Grundy',
1048
+ '19077': 'Guthrie',
1049
+ '19079': 'Hamilton',
1050
+ '19081': 'Hancock',
1051
+ '19083': 'Hardin',
1052
+ '19085': 'Harrison',
1053
+ '19087': 'Henry',
1054
+ '19089': 'Howard',
1055
+ '19091': 'Humboldt',
1056
+ '19093': 'Ida',
1057
+ '19095': 'Iowa',
1058
+ '19097': 'Jackson',
1059
+ '19099': 'Jasper',
1060
+ '19101': 'Jefferson',
1061
+ '19103': 'Johnson',
1062
+ '19105': 'Jones',
1063
+ '19107': 'Keokuk',
1064
+ '19109': 'Kossuth',
1065
+ '19111': 'Lee',
1066
+ '19113': 'Linn',
1067
+ '19115': 'Louisa',
1068
+ '19117': 'Lucas',
1069
+ '19119': 'Lyon',
1070
+ '19121': 'Madison',
1071
+ '19123': 'Mahaska',
1072
+ '19125': 'Marion',
1073
+ '19127': 'Marshall',
1074
+ '19129': 'Mills',
1075
+ '19131': 'Mitchell',
1076
+ '19133': 'Monona',
1077
+ '19135': 'Monroe',
1078
+ '19137': 'Montgomery',
1079
+ '19139': 'Muscatine',
1080
+ '19141': 'O Brien',
1081
+ '19143': 'Osceola',
1082
+ '19145': 'Page',
1083
+ '19147': 'Palo Alto',
1084
+ '19149': 'Plymouth',
1085
+ '19151': 'Pocahontas',
1086
+ '19153': 'Polk',
1087
+ '19155': 'Pottawattamie',
1088
+ '19157': 'Poweshiek',
1089
+ '19159': 'Ringgold',
1090
+ '19161': 'Sac',
1091
+ '19163': 'Scott',
1092
+ '19165': 'Shelby',
1093
+ '19167': 'Sioux',
1094
+ '19169': 'Story',
1095
+ '19171': 'Tama',
1096
+ '19173': 'Taylor',
1097
+ '19175': 'Union',
1098
+ '19177': 'Van Buren',
1099
+ '19179': 'Wapello',
1100
+ '19181': 'Warren',
1101
+ '19183': 'Washington',
1102
+ '19185': 'Wayne',
1103
+ '19187': 'Webster',
1104
+ '19189': 'Winnebago',
1105
+ '19191': 'Winneshiek',
1106
+ '19193': 'Woodbury',
1107
+ '19195': 'Worth',
1108
+ '19197': 'Wright',
1109
+ '20001': 'Allen',
1110
+ '20003': 'Anderson',
1111
+ '20005': 'Atchison',
1112
+ '20007': 'Barber',
1113
+ '20009': 'Barton',
1114
+ '20011': 'Bourbon',
1115
+ '20013': 'Brown',
1116
+ '20015': 'Butler',
1117
+ '20017': 'Chase',
1118
+ '20019': 'Chautauqua',
1119
+ '20021': 'Cherokee',
1120
+ '20023': 'Cheyenne',
1121
+ '20025': 'Clark',
1122
+ '20027': 'Clay',
1123
+ '20029': 'Cloud',
1124
+ '20031': 'Coffey',
1125
+ '20033': 'Comanche',
1126
+ '20035': 'Cowley',
1127
+ '20037': 'Crawford',
1128
+ '20039': 'Decatur',
1129
+ '20041': 'Dickinson',
1130
+ '20043': 'Doniphan',
1131
+ '20045': 'Douglas',
1132
+ '20047': 'Edwards',
1133
+ '20049': 'Elk',
1134
+ '20051': 'Ellis',
1135
+ '20053': 'Ellsworth',
1136
+ '20055': 'Finney',
1137
+ '20057': 'Ford',
1138
+ '20059': 'Franklin',
1139
+ '20061': 'Geary',
1140
+ '20063': 'Gove',
1141
+ '20065': 'Graham',
1142
+ '20067': 'Grant',
1143
+ '20069': 'Gray',
1144
+ '20071': 'Greeley',
1145
+ '20073': 'Greenwood',
1146
+ '20075': 'Hamilton',
1147
+ '20077': 'Harper',
1148
+ '20079': 'Harvey',
1149
+ '20081': 'Haskell',
1150
+ '20083': 'Hodgeman',
1151
+ '20085': 'Jackson',
1152
+ '20087': 'Jefferson',
1153
+ '20089': 'Jewell',
1154
+ '20091': 'Johnson',
1155
+ '20093': 'Kearny',
1156
+ '20095': 'Kingman',
1157
+ '20097': 'Kiowa',
1158
+ '20099': 'Labette',
1159
+ '20101': 'Lane',
1160
+ '20103': 'Leavenworth',
1161
+ '20105': 'Lincoln',
1162
+ '20107': 'Linn',
1163
+ '20109': 'Logan',
1164
+ '20111': 'Lyon',
1165
+ '20113': 'McPherson',
1166
+ '20115': 'Marion',
1167
+ '20117': 'Marshall',
1168
+ '20119': 'Meade',
1169
+ '20121': 'Miami',
1170
+ '20123': 'Mitchell',
1171
+ '20125': 'Montgomery',
1172
+ '20127': 'Morris',
1173
+ '20129': 'Morton',
1174
+ '20131': 'Nemaha',
1175
+ '20133': 'Neosho',
1176
+ '20135': 'Ness',
1177
+ '20137': 'Norton',
1178
+ '20139': 'Osage',
1179
+ '20141': 'Osborne',
1180
+ '20143': 'Ottawa',
1181
+ '20145': 'Pawnee',
1182
+ '20147': 'Phillips',
1183
+ '20149': 'Pottawatomie',
1184
+ '20151': 'Pratt',
1185
+ '20153': 'Rawlins',
1186
+ '20155': 'Reno',
1187
+ '20157': 'Republic',
1188
+ '20159': 'Rice',
1189
+ '20161': 'Riley',
1190
+ '20163': 'Rooks',
1191
+ '20165': 'Rush',
1192
+ '20167': 'Russell',
1193
+ '20169': 'Saline',
1194
+ '20171': 'Scott',
1195
+ '20173': 'Sedgwick',
1196
+ '20175': 'Seward',
1197
+ '20177': 'Shawnee',
1198
+ '20179': 'Sheridan',
1199
+ '20181': 'Sherman',
1200
+ '20183': 'Smith',
1201
+ '20185': 'Stafford',
1202
+ '20187': 'Stanton',
1203
+ '20189': 'Stevens',
1204
+ '20191': 'Sumner',
1205
+ '20193': 'Thomas',
1206
+ '20195': 'Trego',
1207
+ '20197': 'Wabaunsee',
1208
+ '20199': 'Wallace',
1209
+ '20201': 'Washington',
1210
+ '20203': 'Wichita',
1211
+ '20205': 'Wilson',
1212
+ '20207': 'Woodson',
1213
+ '20209': 'Wyandotte',
1214
+ '21001': 'Adair',
1215
+ '21003': 'Allen',
1216
+ '21005': 'Anderson',
1217
+ '21007': 'Ballard',
1218
+ '21009': 'Barren',
1219
+ '21011': 'Bath',
1220
+ '21013': 'Bell',
1221
+ '21015': 'Boone',
1222
+ '21017': 'Bourbon',
1223
+ '21019': 'Boyd',
1224
+ '21021': 'Boyle',
1225
+ '21023': 'Bracken',
1226
+ '21025': 'Breathitt',
1227
+ '21027': 'Breckinridge',
1228
+ '21029': 'Bullitt',
1229
+ '21031': 'Butler',
1230
+ '21033': 'Caldwell',
1231
+ '21035': 'Calloway',
1232
+ '21037': 'Campbell',
1233
+ '21039': 'Carlisle',
1234
+ '21041': 'Carroll',
1235
+ '21043': 'Carter',
1236
+ '21045': 'Casey',
1237
+ '21047': 'Christian',
1238
+ '21049': 'Clark',
1239
+ '21051': 'Clay',
1240
+ '21053': 'Clinton',
1241
+ '21055': 'Crittenden',
1242
+ '21057': 'Cumberland',
1243
+ '21059': 'Daviess',
1244
+ '21061': 'Edmonson',
1245
+ '21063': 'Elliott',
1246
+ '21065': 'Estill',
1247
+ '21067': 'Fayette',
1248
+ '21069': 'Fleming',
1249
+ '21071': 'Floyd',
1250
+ '21073': 'Franklin',
1251
+ '21075': 'Fulton',
1252
+ '21077': 'Gallatin',
1253
+ '21079': 'Garrard',
1254
+ '21081': 'Grant',
1255
+ '21083': 'Graves',
1256
+ '21085': 'Grayson',
1257
+ '21087': 'Green',
1258
+ '21089': 'Greenup',
1259
+ '21091': 'Hancock',
1260
+ '21093': 'Hardin',
1261
+ '21095': 'Harlan',
1262
+ '21097': 'Harrison',
1263
+ '21099': 'Hart',
1264
+ '21101': 'Henderson',
1265
+ '21103': 'Henry',
1266
+ '21105': 'Hickman',
1267
+ '21107': 'Hopkins',
1268
+ '21109': 'Jackson',
1269
+ '21111': 'Jefferson',
1270
+ '21113': 'Jessamine',
1271
+ '21115': 'Johnson',
1272
+ '21117': 'Kenton',
1273
+ '21119': 'Knott',
1274
+ '21121': 'Knox',
1275
+ '21123': 'Larue',
1276
+ '21125': 'Laurel',
1277
+ '21127': 'Lawrence',
1278
+ '21129': 'Lee',
1279
+ '21131': 'Leslie',
1280
+ '21133': 'Letcher',
1281
+ '21135': 'Lewis',
1282
+ '21137': 'Lincoln',
1283
+ '21139': 'Livingston',
1284
+ '21141': 'Logan',
1285
+ '21143': 'Lyon',
1286
+ '21145': 'McCracken',
1287
+ '21147': 'McCreary',
1288
+ '21149': 'McLean',
1289
+ '21151': 'Madison',
1290
+ '21153': 'Magoffin',
1291
+ '21155': 'Marion',
1292
+ '21157': 'Marshall',
1293
+ '21159': 'Martin',
1294
+ '21161': 'Mason',
1295
+ '21163': 'Meade',
1296
+ '21165': 'Menifee',
1297
+ '21167': 'Mercer',
1298
+ '21169': 'Metcalfe',
1299
+ '21171': 'Monroe',
1300
+ '21173': 'Montgomery',
1301
+ '21175': 'Morgan',
1302
+ '21177': 'Muhlenberg',
1303
+ '21179': 'Nelson',
1304
+ '21181': 'Nicholas',
1305
+ '21183': 'Ohio',
1306
+ '21185': 'Oldham',
1307
+ '21187': 'Owen',
1308
+ '21189': 'Owsley',
1309
+ '21191': 'Pendleton',
1310
+ '21193': 'Perry',
1311
+ '21195': 'Pike',
1312
+ '21197': 'Powell',
1313
+ '21199': 'Pulaski',
1314
+ '21201': 'Robertson',
1315
+ '21203': 'Rockcastle',
1316
+ '21205': 'Rowan',
1317
+ '21207': 'Russell',
1318
+ '21209': 'Scott',
1319
+ '21211': 'Shelby',
1320
+ '21213': 'Simpson',
1321
+ '21215': 'Spencer',
1322
+ '21217': 'Taylor',
1323
+ '21219': 'Todd',
1324
+ '21221': 'Trigg',
1325
+ '21223': 'Trimble',
1326
+ '21225': 'Union',
1327
+ '21227': 'Warren',
1328
+ '21229': 'Washington',
1329
+ '21231': 'Wayne',
1330
+ '21233': 'Webster',
1331
+ '21235': 'Whitley',
1332
+ '21237': 'Wolfe',
1333
+ '21239': 'Woodford',
1334
+ '22001': 'Acadia Parish',
1335
+ '22003': 'Allen Parish',
1336
+ '22005': 'Ascension Parish',
1337
+ '22007': 'Assumption Parish',
1338
+ '22009': 'Avoyelles Parish',
1339
+ '22011': 'Beauregard Parish',
1340
+ '22013': 'Bienville Parish',
1341
+ '22015': 'Bossier Parish',
1342
+ '22017': 'Caddo Parish',
1343
+ '22019': 'Calcasieu Parish',
1344
+ '22021': 'Caldwell Parish',
1345
+ '22023': 'Cameron Parish',
1346
+ '22025': 'Catahoula Parish',
1347
+ '22027': 'Claiborne Parish',
1348
+ '22029': 'Concordia Parish',
1349
+ '22031': 'De Soto Parish',
1350
+ '22033': 'East Baton Rouge Parish',
1351
+ '22035': 'East Carroll Parish',
1352
+ '22037': 'East Feliciana Parish',
1353
+ '22039': 'Evangeline Parish',
1354
+ '22041': 'Franklin Parish',
1355
+ '22043': 'Grant Parish',
1356
+ '22045': 'Iberia Parish',
1357
+ '22047': 'Iberville Parish',
1358
+ '22049': 'Jackson Parish',
1359
+ '22051': 'Jefferson Parish',
1360
+ '22053': 'Jefferson Davis Parish',
1361
+ '22055': 'Lafayette Parish',
1362
+ '22057': 'Lafourche Parish',
1363
+ '22059': 'La Salle Parish',
1364
+ '22061': 'Lincoln Parish',
1365
+ '22063': 'Livingston Parish',
1366
+ '22065': 'Madison Parish',
1367
+ '22067': 'Morehouse Parish',
1368
+ '22069': 'Natchitoches Parish',
1369
+ '22071': 'Orleans Parish',
1370
+ '22073': 'Ouachita Parish',
1371
+ '22075': 'Plaquemines Parish',
1372
+ '22077': 'Pointe Coupee Parish',
1373
+ '22079': 'Rapides Parish',
1374
+ '22081': 'Red River Parish',
1375
+ '22083': 'Richland Parish',
1376
+ '22085': 'Sabine Parish',
1377
+ '22087': 'St Bernard Parish',
1378
+ '22089': 'St Charles Parish',
1379
+ '22091': 'St Helena Parish',
1380
+ '22093': 'St James Parish',
1381
+ '22095': 'St John the Baptist Parish',
1382
+ '22097': 'St Landry Parish',
1383
+ '22099': 'St Martin Parish',
1384
+ '22101': 'St Mary Parish',
1385
+ '22103': 'St Tammany Parish',
1386
+ '22105': 'Tangipahoa Parish',
1387
+ '22107': 'Tensas Parish',
1388
+ '22109': 'Terrebonne Parish',
1389
+ '22111': 'Union Parish',
1390
+ '22113': 'Vermilion Parish',
1391
+ '22115': 'Vernon Parish',
1392
+ '22117': 'Washington Parish',
1393
+ '22119': 'Webster Parish',
1394
+ '22121': 'West Baton Rouge Parish',
1395
+ '22123': 'West Carroll Parish',
1396
+ '22125': 'West Feliciana Parish',
1397
+ '22127': 'Winn Parish',
1398
+ '23001': 'Androscoggin',
1399
+ '23003': 'Aroostook',
1400
+ '23005': 'Cumberland',
1401
+ '23007': 'Franklin',
1402
+ '23009': 'Hancock',
1403
+ '23011': 'Kennebec',
1404
+ '23013': 'Knox',
1405
+ '23015': 'Lincoln',
1406
+ '23017': 'Oxford',
1407
+ '23019': 'Penobscot',
1408
+ '23021': 'Piscataquis',
1409
+ '23023': 'Sagadahoc',
1410
+ '23025': 'Somerset',
1411
+ '23027': 'Waldo',
1412
+ '23029': 'Washington',
1413
+ '23031': 'York',
1414
+ '24001': 'Allegany',
1415
+ '24003': 'Anne Arundel',
1416
+ '24005': 'Baltimore',
1417
+ '24009': 'Calvert',
1418
+ '24011': 'Caroline',
1419
+ '24013': 'Carroll',
1420
+ '24015': 'Cecil',
1421
+ '24017': 'Charles',
1422
+ '24019': 'Dorchester',
1423
+ '24021': 'Frederick',
1424
+ '24023': 'Garrett',
1425
+ '24025': 'Harford',
1426
+ '24027': 'Howard',
1427
+ '24029': 'Kent',
1428
+ '24031': 'Montgomery',
1429
+ '24033': 'Prince Georges',
1430
+ '24035': 'Queen Annes',
1431
+ '24037': 'St Marys',
1432
+ '24039': 'Somerset',
1433
+ '24041': 'Talbot',
1434
+ '24043': 'Washington',
1435
+ '24045': 'Wicomico',
1436
+ '24047': 'Worcester',
1437
+ '24510': 'Baltimore City',
1438
+ '25001': 'Barnstable',
1439
+ '25003': 'Berkshire',
1440
+ '25005': 'Bristol',
1441
+ '25007': 'Dukes',
1442
+ '25009': 'Essex',
1443
+ '25011': 'Franklin',
1444
+ '25013': 'Hampden',
1445
+ '25015': 'Hampshire',
1446
+ '25017': 'Middlesex',
1447
+ '25019': 'Nantucket',
1448
+ '25021': 'Norfolk',
1449
+ '25023': 'Plymouth',
1450
+ '25025': 'Suffolk',
1451
+ '25027': 'Worcester',
1452
+ '26001': 'Alcona',
1453
+ '26003': 'Alger',
1454
+ '26005': 'Allegan',
1455
+ '26007': 'Alpena',
1456
+ '26009': 'Antrim',
1457
+ '26011': 'Arenac',
1458
+ '26013': 'Baraga',
1459
+ '26015': 'Barry',
1460
+ '26017': 'Bay',
1461
+ '26019': 'Benzie',
1462
+ '26021': 'Berrien',
1463
+ '26023': 'Branch',
1464
+ '26025': 'Calhoun',
1465
+ '26027': 'Cass',
1466
+ '26029': 'Charlevoix',
1467
+ '26031': 'Cheboygan',
1468
+ '26033': 'Chippewa',
1469
+ '26035': 'Clare',
1470
+ '26037': 'Clinton',
1471
+ '26039': 'Crawford',
1472
+ '26041': 'Delta',
1473
+ '26043': 'Dickinson',
1474
+ '26045': 'Eaton',
1475
+ '26047': 'Emmet',
1476
+ '26049': 'Genesee',
1477
+ '26051': 'Gladwin',
1478
+ '26053': 'Gogebic',
1479
+ '26055': 'Grand Traverse',
1480
+ '26057': 'Gratiot',
1481
+ '26059': 'Hillsdale',
1482
+ '26061': 'Houghton',
1483
+ '26063': 'Huron',
1484
+ '26065': 'Ingham',
1485
+ '26067': 'Ionia',
1486
+ '26069': 'Iosco',
1487
+ '26071': 'Iron',
1488
+ '26073': 'Isabella',
1489
+ '26075': 'Jackson',
1490
+ '26077': 'Kalamazoo',
1491
+ '26079': 'Kalkaska',
1492
+ '26081': 'Kent',
1493
+ '26083': 'Keweenaw',
1494
+ '26085': 'Lake',
1495
+ '26087': 'Lapeer',
1496
+ '26089': 'Leelanau',
1497
+ '26091': 'Lenawee',
1498
+ '26093': 'Livingston',
1499
+ '26095': 'Luce',
1500
+ '26097': 'Mackinac',
1501
+ '26099': 'Macomb',
1502
+ '26101': 'Manistee',
1503
+ '26103': 'Marquette',
1504
+ '26105': 'Mason',
1505
+ '26107': 'Mecosta',
1506
+ '26109': 'Menominee',
1507
+ '26111': 'Midland',
1508
+ '26113': 'Missaukee',
1509
+ '26115': 'Monroe',
1510
+ '26117': 'Montcalm',
1511
+ '26119': 'Montmorency',
1512
+ '26121': 'Muskegon',
1513
+ '26123': 'Newaygo',
1514
+ '26125': 'Oakland',
1515
+ '26127': 'Oceana',
1516
+ '26129': 'Ogemaw',
1517
+ '26131': 'Ontonagon',
1518
+ '26133': 'Osceola',
1519
+ '26135': 'Oscoda',
1520
+ '26137': 'Otsego',
1521
+ '26139': 'Ottawa',
1522
+ '26141': 'Presque Isle',
1523
+ '26143': 'Roscommon',
1524
+ '26145': 'Saginaw',
1525
+ '26147': 'St Clair',
1526
+ '26149': 'St Joseph',
1527
+ '26151': 'Sanilac',
1528
+ '26153': 'Schoolcraft',
1529
+ '26155': 'Shiawassee',
1530
+ '26157': 'Tuscola',
1531
+ '26159': 'Van Buren',
1532
+ '26161': 'Washtenaw',
1533
+ '26163': 'Wayne',
1534
+ '26165': 'Wexford',
1535
+ '27001': 'Aitkin',
1536
+ '27003': 'Anoka',
1537
+ '27005': 'Becker',
1538
+ '27007': 'Beltrami',
1539
+ '27009': 'Benton',
1540
+ '27011': 'Big Stone',
1541
+ '27013': 'Blue Earth',
1542
+ '27015': 'Brown',
1543
+ '27017': 'Carlton',
1544
+ '27019': 'Carver',
1545
+ '27021': 'Cass',
1546
+ '27023': 'Chippewa',
1547
+ '27025': 'Chisago',
1548
+ '27027': 'Clay',
1549
+ '27029': 'Clearwater',
1550
+ '27031': 'Cook',
1551
+ '27033': 'Cottonwood',
1552
+ '27035': 'Crow Wing',
1553
+ '27037': 'Dakota',
1554
+ '27039': 'Dodge',
1555
+ '27041': 'Douglas',
1556
+ '27043': 'Faribault',
1557
+ '27045': 'Fillmore',
1558
+ '27047': 'Freeborn',
1559
+ '27049': 'Goodhue',
1560
+ '27051': 'Grant',
1561
+ '27053': 'Hennepin',
1562
+ '27055': 'Houston',
1563
+ '27057': 'Hubbard',
1564
+ '27059': 'Isanti',
1565
+ '27061': 'Itasca',
1566
+ '27063': 'Jackson',
1567
+ '27065': 'Kanabec',
1568
+ '27067': 'Kandiyohi',
1569
+ '27069': 'Kittson',
1570
+ '27071': 'Koochiching',
1571
+ '27073': 'Lac qui Parle',
1572
+ '27075': 'Lake',
1573
+ '27077': 'Lake of the Woods',
1574
+ '27079': 'Le Sueur',
1575
+ '27081': 'Lincoln',
1576
+ '27083': 'Lyon',
1577
+ '27085': 'McLeod',
1578
+ '27087': 'Mahnomen',
1579
+ '27089': 'Marshall',
1580
+ '27091': 'Martin',
1581
+ '27093': 'Meeker',
1582
+ '27095': 'Mille Lacs',
1583
+ '27097': 'Morrison',
1584
+ '27099': 'Mower',
1585
+ '27101': 'Murray',
1586
+ '27103': 'Nicollet',
1587
+ '27105': 'Nobles',
1588
+ '27107': 'Norman',
1589
+ '27109': 'Olmsted',
1590
+ '27111': 'Otter Tail',
1591
+ '27113': 'Pennington',
1592
+ '27115': 'Pine',
1593
+ '27117': 'Pipestone',
1594
+ '27119': 'Polk',
1595
+ '27121': 'Pope',
1596
+ '27123': 'Ramsey',
1597
+ '27125': 'Red Lake',
1598
+ '27127': 'Redwood',
1599
+ '27129': 'Renville',
1600
+ '27131': 'Rice',
1601
+ '27133': 'Rock',
1602
+ '27135': 'Roseau',
1603
+ '27137': 'St Louis',
1604
+ '27139': 'Scott',
1605
+ '27141': 'Sherburne',
1606
+ '27143': 'Sibley',
1607
+ '27145': 'Stearns',
1608
+ '27147': 'Steele',
1609
+ '27149': 'Stevens',
1610
+ '27151': 'Swift',
1611
+ '27153': 'Todd',
1612
+ '27155': 'Traverse',
1613
+ '27157': 'Wabasha',
1614
+ '27159': 'Wadena',
1615
+ '27161': 'Waseca',
1616
+ '27163': 'Washington',
1617
+ '27165': 'Watonwan',
1618
+ '27167': 'Wilkin',
1619
+ '27169': 'Winona',
1620
+ '27171': 'Wright',
1621
+ '27173': 'Yellow Medicine',
1622
+ '28001': 'Adams',
1623
+ '28003': 'Alcorn',
1624
+ '28005': 'Amite',
1625
+ '28007': 'Attala',
1626
+ '28009': 'Benton',
1627
+ '28011': 'Bolivar',
1628
+ '28013': 'Calhoun',
1629
+ '28015': 'Carroll',
1630
+ '28017': 'Chickasaw',
1631
+ '28019': 'Choctaw',
1632
+ '28021': 'Claiborne',
1633
+ '28023': 'Clarke',
1634
+ '28025': 'Clay',
1635
+ '28027': 'Coahoma',
1636
+ '28029': 'Copiah',
1637
+ '28031': 'Covington',
1638
+ '28033': 'De Soto',
1639
+ '28035': 'Forrest',
1640
+ '28037': 'Franklin',
1641
+ '28039': 'George',
1642
+ '28041': 'Greene',
1643
+ '28043': 'Grenada',
1644
+ '28045': 'Hancock',
1645
+ '28047': 'Harrison',
1646
+ '28049': 'Hinds',
1647
+ '28051': 'Holmes',
1648
+ '28053': 'Humphreys',
1649
+ '28055': 'Issaquena',
1650
+ '28057': 'Itawamba',
1651
+ '28059': 'Jackson',
1652
+ '28061': 'Jasper',
1653
+ '28063': 'Jefferson',
1654
+ '28065': 'Jefferson Davis',
1655
+ '28067': 'Jones',
1656
+ '28069': 'Kemper',
1657
+ '28071': 'Lafayette',
1658
+ '28073': 'Lamar',
1659
+ '28075': 'Lauderdale',
1660
+ '28077': 'Lawrence',
1661
+ '28079': 'Leake',
1662
+ '28081': 'Lee',
1663
+ '28083': 'Leflore',
1664
+ '28085': 'Lincoln',
1665
+ '28087': 'Lowndes',
1666
+ '28089': 'Madison',
1667
+ '28091': 'Marion',
1668
+ '28093': 'Marshall',
1669
+ '28095': 'Monroe',
1670
+ '28097': 'Montgomery',
1671
+ '28099': 'Neshoba',
1672
+ '28101': 'Newton',
1673
+ '28103': 'Noxubee',
1674
+ '28105': 'Oktibbeha',
1675
+ '28107': 'Panola',
1676
+ '28109': 'Pearl River',
1677
+ '28111': 'Perry',
1678
+ '28113': 'Pike',
1679
+ '28115': 'Pontotoc',
1680
+ '28117': 'Prentiss',
1681
+ '28119': 'Quitman',
1682
+ '28121': 'Rankin',
1683
+ '28123': 'Scott',
1684
+ '28125': 'Sharkey',
1685
+ '28127': 'Simpson',
1686
+ '28129': 'Smith',
1687
+ '28131': 'Stone',
1688
+ '28133': 'Sunflower',
1689
+ '28135': 'Tallahatchie',
1690
+ '28137': 'Tate',
1691
+ '28139': 'Tippah',
1692
+ '28141': 'Tishomingo',
1693
+ '28143': 'Tunica',
1694
+ '28145': 'Union',
1695
+ '28147': 'Walthall',
1696
+ '28149': 'Warren',
1697
+ '28151': 'Washington',
1698
+ '28153': 'Wayne',
1699
+ '28155': 'Webster',
1700
+ '28157': 'Wilkinson',
1701
+ '28159': 'Winston',
1702
+ '28161': 'Yalobusha',
1703
+ '28163': 'Yazoo',
1704
+ '29001': 'Adair',
1705
+ '29003': 'Andrew',
1706
+ '29005': 'Atchison',
1707
+ '29007': 'Audrain',
1708
+ '29009': 'Barry',
1709
+ '29011': 'Barton',
1710
+ '29013': 'Bates',
1711
+ '29015': 'Benton',
1712
+ '29017': 'Bollinger',
1713
+ '29019': 'Boone',
1714
+ '29021': 'Buchanan',
1715
+ '29023': 'Butler',
1716
+ '29025': 'Caldwell',
1717
+ '29027': 'Callaway',
1718
+ '29029': 'Camden',
1719
+ '29031': 'Cape Girardeau',
1720
+ '29033': 'Carroll',
1721
+ '29035': 'Carter',
1722
+ '29037': 'Cass',
1723
+ '29039': 'Cedar',
1724
+ '29041': 'Chariton',
1725
+ '29043': 'Christian',
1726
+ '29045': 'Clark',
1727
+ '29047': 'Clay',
1728
+ '29049': 'Clinton',
1729
+ '29051': 'Cole',
1730
+ '29053': 'Cooper',
1731
+ '29055': 'Crawford',
1732
+ '29057': 'Dade',
1733
+ '29059': 'Dallas',
1734
+ '29061': 'Daviess',
1735
+ '29063': 'De Kalb',
1736
+ '29065': 'Dent',
1737
+ '29067': 'Douglas',
1738
+ '29069': 'Dunklin',
1739
+ '29071': 'Franklin',
1740
+ '29073': 'Gasconade',
1741
+ '29075': 'Gentry',
1742
+ '29077': 'Greene',
1743
+ '29079': 'Grundy',
1744
+ '29081': 'Harrison',
1745
+ '29083': 'Henry',
1746
+ '29085': 'Hickory',
1747
+ '29087': 'Holt',
1748
+ '29089': 'Howard',
1749
+ '29091': 'Howell',
1750
+ '29093': 'Iron',
1751
+ '29095': 'Jackson',
1752
+ '29097': 'Jasper',
1753
+ '29099': 'Jefferson',
1754
+ '29101': 'Johnson',
1755
+ '29103': 'Knox',
1756
+ '29105': 'Laclede',
1757
+ '29107': 'Lafayette',
1758
+ '29109': 'Lawrence',
1759
+ '29111': 'Lewis',
1760
+ '29113': 'Lincoln',
1761
+ '29115': 'Linn',
1762
+ '29117': 'Livingston',
1763
+ '29119': 'McDonald',
1764
+ '29121': 'Macon',
1765
+ '29123': 'Madison',
1766
+ '29125': 'Maries',
1767
+ '29127': 'Marion',
1768
+ '29129': 'Mercer',
1769
+ '29131': 'Miller',
1770
+ '29133': 'Mississippi',
1771
+ '29135': 'Moniteau',
1772
+ '29137': 'Monroe',
1773
+ '29139': 'Montgomery',
1774
+ '29141': 'Morgan',
1775
+ '29143': 'New Madrid',
1776
+ '29145': 'Newton',
1777
+ '29147': 'Nodaway',
1778
+ '29149': 'Oregon',
1779
+ '29151': 'Osage',
1780
+ '29153': 'Ozark',
1781
+ '29155': 'Pemiscot',
1782
+ '29157': 'Perry',
1783
+ '29159': 'Pettis',
1784
+ '29161': 'Phelps',
1785
+ '29163': 'Pike',
1786
+ '29165': 'Platte',
1787
+ '29167': 'Polk',
1788
+ '29169': 'Pulaski',
1789
+ '29171': 'Putnam',
1790
+ '29173': 'Ralls',
1791
+ '29175': 'Randolph',
1792
+ '29177': 'Ray',
1793
+ '29179': 'Reynolds',
1794
+ '29181': 'Ripley',
1795
+ '29183': 'St Charles',
1796
+ '29185': 'St Clair',
1797
+ '29186': 'Ste. Genevieve',
1798
+ '29187': 'St Francois',
1799
+ '29189': 'St Louis',
1800
+ '29195': 'Saline',
1801
+ '29197': 'Schuyler',
1802
+ '29199': 'Scotland',
1803
+ '29201': 'Scott',
1804
+ '29203': 'Shannon',
1805
+ '29205': 'Shelby',
1806
+ '29207': 'Stoddard',
1807
+ '29209': 'Stone',
1808
+ '29211': 'Sullivan',
1809
+ '29213': 'Taney',
1810
+ '29215': 'Texas',
1811
+ '29217': 'Vernon',
1812
+ '29219': 'Warren',
1813
+ '29221': 'Washington',
1814
+ '29223': 'Wayne',
1815
+ '29225': 'Webster',
1816
+ '29227': 'Worth',
1817
+ '29229': 'Wright',
1818
+ '29510': 'St Louis City',
1819
+ '30001': 'Beaverhead',
1820
+ '30003': 'Big Horn',
1821
+ '30005': 'Blaine',
1822
+ '30007': 'Broadwater',
1823
+ '30009': 'Carbon',
1824
+ '30011': 'Carter',
1825
+ '30013': 'Cascade',
1826
+ '30015': 'Chouteau',
1827
+ '30017': 'Custer',
1828
+ '30019': 'Daniels',
1829
+ '30021': 'Dawson',
1830
+ '30023': 'Deer Lodge',
1831
+ '30025': 'Fallon',
1832
+ '30027': 'Fergus',
1833
+ '30029': 'Flathead',
1834
+ '30031': 'Gallatin',
1835
+ '30033': 'Garfield',
1836
+ '30035': 'Glacier',
1837
+ '30037': 'Golden Valley',
1838
+ '30039': 'Granite',
1839
+ '30041': 'Hill',
1840
+ '30043': 'Jefferson',
1841
+ '30045': 'Judith Basin',
1842
+ '30047': 'Lake',
1843
+ '30049': 'Lewis and Clark',
1844
+ '30051': 'Liberty',
1845
+ '30053': 'Lincoln',
1846
+ '30055': 'McCone',
1847
+ '30057': 'Madison',
1848
+ '30059': 'Meagher',
1849
+ '30061': 'Mineral',
1850
+ '30063': 'Missoula',
1851
+ '30065': 'Musselshell',
1852
+ '30067': 'Park',
1853
+ '30069': 'Petroleum',
1854
+ '30071': 'Phillips',
1855
+ '30073': 'Pondera',
1856
+ '30075': 'Powder River',
1857
+ '30077': 'Powell',
1858
+ '30079': 'Prairie',
1859
+ '30081': 'Ravalli',
1860
+ '30083': 'Richland',
1861
+ '30085': 'Roosevelt',
1862
+ '30087': 'Rosebud',
1863
+ '30089': 'Sanders',
1864
+ '30091': 'Sheridan',
1865
+ '30093': 'Silver Bow',
1866
+ '30095': 'Stillwater',
1867
+ '30097': 'Sweet Grass',
1868
+ '30099': 'Teton',
1869
+ '30101': 'Toole',
1870
+ '30103': 'Treasure',
1871
+ '30105': 'Valley',
1872
+ '30107': 'Wheatland',
1873
+ '30109': 'Wibaux',
1874
+ '30111': 'Yellowstone',
1875
+ '30113': 'Yellowstone Nat Park',
1876
+ '31001': 'Adams',
1877
+ '31003': 'Antelope',
1878
+ '31005': 'Arthur',
1879
+ '31007': 'Banner',
1880
+ '31009': 'Blaine',
1881
+ '31011': 'Boone',
1882
+ '31013': 'Box Butte',
1883
+ '31015': 'Boyd',
1884
+ '31017': 'Brown',
1885
+ '31019': 'Buffalo',
1886
+ '31021': 'Burt',
1887
+ '31023': 'Butler',
1888
+ '31025': 'Cass',
1889
+ '31027': 'Cedar',
1890
+ '31029': 'Chase',
1891
+ '31031': 'Cherry',
1892
+ '31033': 'Cheyenne',
1893
+ '31035': 'Clay',
1894
+ '31037': 'Colfax',
1895
+ '31039': 'Cuming',
1896
+ '31041': 'Custer',
1897
+ '31043': 'Dakota',
1898
+ '31045': 'Dawes',
1899
+ '31047': 'Dawson',
1900
+ '31049': 'Deuel',
1901
+ '31051': 'Dixon',
1902
+ '31053': 'Dodge',
1903
+ '31055': 'Douglas',
1904
+ '31057': 'Dundy',
1905
+ '31059': 'Fillmore',
1906
+ '31061': 'Franklin',
1907
+ '31063': 'Frontier',
1908
+ '31065': 'Furnas',
1909
+ '31067': 'Gage',
1910
+ '31069': 'Garden',
1911
+ '31071': 'Garfield',
1912
+ '31073': 'Gosper',
1913
+ '31075': 'Grant',
1914
+ '31077': 'Greeley',
1915
+ '31079': 'Hall',
1916
+ '31081': 'Hamilton',
1917
+ '31083': 'Harlan',
1918
+ '31085': 'Hayes',
1919
+ '31087': 'Hitchcock',
1920
+ '31089': 'Holt',
1921
+ '31091': 'Hooker',
1922
+ '31093': 'Howard',
1923
+ '31095': 'Jefferson',
1924
+ '31097': 'Johnson',
1925
+ '31099': 'Kearney',
1926
+ '31101': 'Keith',
1927
+ '31103': 'Keya Paha',
1928
+ '31105': 'Kimball',
1929
+ '31107': 'Knox',
1930
+ '31109': 'Lancaster',
1931
+ '31111': 'Lincoln',
1932
+ '31113': 'Logan',
1933
+ '31115': 'Loup',
1934
+ '31117': 'McPherson',
1935
+ '31119': 'Madison',
1936
+ '31121': 'Merrick',
1937
+ '31123': 'Morrill',
1938
+ '31125': 'Nance',
1939
+ '31127': 'Nemaha',
1940
+ '31129': 'Nuckolls',
1941
+ '31131': 'Otoe',
1942
+ '31133': 'Pawnee',
1943
+ '31135': 'Perkins',
1944
+ '31137': 'Phelps',
1945
+ '31139': 'Pierce',
1946
+ '31141': 'Platte',
1947
+ '31143': 'Polk',
1948
+ '31145': 'Red Willow',
1949
+ '31147': 'Richardson',
1950
+ '31149': 'Rock',
1951
+ '31151': 'Saline',
1952
+ '31153': 'Sarpy',
1953
+ '31155': 'Saunders',
1954
+ '31157': 'Scotts Bluff',
1955
+ '31159': 'Seward',
1956
+ '31161': 'Sheridan',
1957
+ '31163': 'Sherman',
1958
+ '31165': 'Sioux',
1959
+ '31167': 'Stanton',
1960
+ '31169': 'Thayer',
1961
+ '31171': 'Thomas',
1962
+ '31173': 'Thurston',
1963
+ '31175': 'Valley',
1964
+ '31177': 'Washington',
1965
+ '31179': 'Wayne',
1966
+ '31181': 'Webster',
1967
+ '31183': 'Wheeler',
1968
+ '31185': 'York',
1969
+ '32001': 'Churchill',
1970
+ '32003': 'Clark',
1971
+ '32005': 'Douglas',
1972
+ '32007': 'Elko',
1973
+ '32009': 'Esmeralda',
1974
+ '32011': 'Eureka',
1975
+ '32013': 'Humboldt',
1976
+ '32015': 'Lander',
1977
+ '32017': 'Lincoln',
1978
+ '32019': 'Lyon',
1979
+ '32021': 'Mineral',
1980
+ '32023': 'Nye',
1981
+ '32027': 'Pershing',
1982
+ '32029': 'Storey',
1983
+ '32031': 'Washoe',
1984
+ '32033': 'White Pine',
1985
+ '32510': 'Carson City',
1986
+ '33001': 'Belknap',
1987
+ '33003': 'Carroll',
1988
+ '33005': 'Cheshire',
1989
+ '33007': 'Coos',
1990
+ '33009': 'Grafton',
1991
+ '33011': 'Hillsborough',
1992
+ '33013': 'Merrimack',
1993
+ '33015': 'Rockingham',
1994
+ '33017': 'Strafford',
1995
+ '33019': 'Sullivan',
1996
+ '34001': 'Atlantic',
1997
+ '34003': 'Bergen',
1998
+ '34005': 'Burlington',
1999
+ '34007': 'Camden',
2000
+ '34009': 'Cape May',
2001
+ '34011': 'Cumberland',
2002
+ '34013': 'Essex',
2003
+ '34015': 'Gloucester',
2004
+ '34017': 'Hudson',
2005
+ '34019': 'Hunterdon',
2006
+ '34021': 'Mercer',
2007
+ '34023': 'Middlesex',
2008
+ '34025': 'Monmouth',
2009
+ '34027': 'Morris',
2010
+ '34029': 'Ocean',
2011
+ '34031': 'Passaic',
2012
+ '34033': 'Salem',
2013
+ '34035': 'Somerset',
2014
+ '34037': 'Sussex',
2015
+ '34039': 'Union',
2016
+ '34041': 'Warren',
2017
+ '35001': 'Bernalillo',
2018
+ '35003': 'Catron',
2019
+ '35005': 'Chaves',
2020
+ '35006': 'Cibola',
2021
+ '35007': 'Colfax',
2022
+ '35009': 'Curry',
2023
+ '35011': 'De Baca',
2024
+ '35013': 'Dona Ana',
2025
+ '35015': 'Eddy',
2026
+ '35017': 'Grant',
2027
+ '35019': 'Guadalupe',
2028
+ '35021': 'Harding',
2029
+ '35023': 'Hidalgo',
2030
+ '35025': 'Lea',
2031
+ '35027': 'Lincoln',
2032
+ '35028': 'Los Alamos',
2033
+ '35029': 'Luna',
2034
+ '35031': 'McKinley',
2035
+ '35033': 'Mora',
2036
+ '35035': 'Otero',
2037
+ '35037': 'Quay',
2038
+ '35039': 'Rio Arriba',
2039
+ '35041': 'Roosevelt',
2040
+ '35043': 'Sandoval',
2041
+ '35045': 'San Juan',
2042
+ '35047': 'San Miguel',
2043
+ '35049': 'Santa Fe',
2044
+ '35051': 'Sierra',
2045
+ '35053': 'Socorro',
2046
+ '35055': 'Taos',
2047
+ '35057': 'Torrance',
2048
+ '35059': 'Union',
2049
+ '35061': 'Valencia',
2050
+ '36001': 'Albany',
2051
+ '36003': 'Allegany',
2052
+ '36005': 'Bronx',
2053
+ '36007': 'Broome',
2054
+ '36009': 'Cattaraugus',
2055
+ '36011': 'Cayuga',
2056
+ '36013': 'Chautauqua',
2057
+ '36015': 'Chemung',
2058
+ '36017': 'Chenango',
2059
+ '36019': 'Clinton',
2060
+ '36021': 'Columbia',
2061
+ '36023': 'Cortland',
2062
+ '36025': 'Delaware',
2063
+ '36027': 'Dutchess',
2064
+ '36029': 'Erie',
2065
+ '36031': 'Essex',
2066
+ '36033': 'Franklin',
2067
+ '36035': 'Fulton',
2068
+ '36037': 'Genesee',
2069
+ '36039': 'Greene',
2070
+ '36041': 'Hamilton',
2071
+ '36043': 'Herkimer',
2072
+ '36045': 'Jefferson',
2073
+ '36047': 'Kings',
2074
+ '36049': 'Lewis',
2075
+ '36051': 'Livingston',
2076
+ '36053': 'Madison',
2077
+ '36055': 'Monroe',
2078
+ '36057': 'Montgomery',
2079
+ '36059': 'Nassau',
2080
+ '36061': 'New York',
2081
+ '36063': 'Niagara',
2082
+ '36065': 'Oneida',
2083
+ '36067': 'Onondaga',
2084
+ '36069': 'Ontario',
2085
+ '36071': 'Orange',
2086
+ '36073': 'Orleans',
2087
+ '36075': 'Oswego',
2088
+ '36077': 'Otsego',
2089
+ '36079': 'Putnam',
2090
+ '36081': 'Queens',
2091
+ '36083': 'Rensselaer',
2092
+ '36085': 'Richmond',
2093
+ '36087': 'Rockland',
2094
+ '36089': 'St Lawrence',
2095
+ '36091': 'Saratoga',
2096
+ '36093': 'Schenectady',
2097
+ '36095': 'Schoharie',
2098
+ '36097': 'Schuyler',
2099
+ '36099': 'Seneca',
2100
+ '36101': 'Steuben',
2101
+ '36103': 'Suffolk',
2102
+ '36105': 'Sullivan',
2103
+ '36107': 'Tioga',
2104
+ '36109': 'Tompkins',
2105
+ '36111': 'Ulster',
2106
+ '36113': 'Warren',
2107
+ '36115': 'Washington',
2108
+ '36117': 'Wayne',
2109
+ '36119': 'Westchester',
2110
+ '36121': 'Wyoming',
2111
+ '36123': 'Yates',
2112
+ '37001': 'Alamance',
2113
+ '37003': 'Alexander',
2114
+ '37005': 'Alleghany',
2115
+ '37007': 'Anson',
2116
+ '37009': 'Ashe',
2117
+ '37011': 'Avery',
2118
+ '37013': 'Beaufort',
2119
+ '37015': 'Bertie',
2120
+ '37017': 'Bladen',
2121
+ '37019': 'Brunswick',
2122
+ '37021': 'Buncombe',
2123
+ '37023': 'Burke',
2124
+ '37025': 'Cabarrus',
2125
+ '37027': 'Caldwell',
2126
+ '37029': 'Camden',
2127
+ '37031': 'Carteret',
2128
+ '37033': 'Caswell',
2129
+ '37035': 'Catawba',
2130
+ '37037': 'Chatham',
2131
+ '37039': 'Cherokee',
2132
+ '37041': 'Chowan',
2133
+ '37043': 'Clay',
2134
+ '37045': 'Cleveland',
2135
+ '37047': 'Columbus',
2136
+ '37049': 'Craven',
2137
+ '37051': 'Cumberland',
2138
+ '37053': 'Currituck',
2139
+ '37055': 'Dare',
2140
+ '37057': 'Davidson',
2141
+ '37059': 'Davie',
2142
+ '37061': 'Duplin',
2143
+ '37063': 'Durham',
2144
+ '37065': 'Edgecombe',
2145
+ '37067': 'Forsyth',
2146
+ '37069': 'Franklin',
2147
+ '37071': 'Gaston',
2148
+ '37073': 'Gates',
2149
+ '37075': 'Graham',
2150
+ '37077': 'Granville',
2151
+ '37079': 'Greene',
2152
+ '37081': 'Guilford',
2153
+ '37083': 'Halifax',
2154
+ '37085': 'Harnett',
2155
+ '37087': 'Haywood',
2156
+ '37089': 'Henderson',
2157
+ '37091': 'Hertford',
2158
+ '37093': 'Hoke',
2159
+ '37095': 'Hyde',
2160
+ '37097': 'Iredell',
2161
+ '37099': 'Jackson',
2162
+ '37101': 'Johnston',
2163
+ '37103': 'Jones',
2164
+ '37105': 'Lee',
2165
+ '37107': 'Lenoir',
2166
+ '37109': 'Lincoln',
2167
+ '37111': 'McDowell',
2168
+ '37113': 'Macon',
2169
+ '37115': 'Madison',
2170
+ '37117': 'Martin',
2171
+ '37119': 'Mecklenburg',
2172
+ '37121': 'Mitchell',
2173
+ '37123': 'Montgomery',
2174
+ '37125': 'Moore',
2175
+ '37127': 'Nash',
2176
+ '37129': 'New Hanover',
2177
+ '37131': 'Northampton',
2178
+ '37133': 'Onslow',
2179
+ '37135': 'Orange',
2180
+ '37137': 'Pamlico',
2181
+ '37139': 'Pasquotank',
2182
+ '37141': 'Pender',
2183
+ '37143': 'Perquimans',
2184
+ '37145': 'Person',
2185
+ '37147': 'Pitt',
2186
+ '37149': 'Polk',
2187
+ '37151': 'Randolph',
2188
+ '37153': 'Richmond',
2189
+ '37155': 'Robeson',
2190
+ '37157': 'Rockingham',
2191
+ '37159': 'Rowan',
2192
+ '37161': 'Rutherford',
2193
+ '37163': 'Sampson',
2194
+ '37165': 'Scotland',
2195
+ '37167': 'Stanly',
2196
+ '37169': 'Stokes',
2197
+ '37171': 'Surry',
2198
+ '37173': 'Swain',
2199
+ '37175': 'Transylvania',
2200
+ '37177': 'Tyrrell',
2201
+ '37179': 'Union',
2202
+ '37181': 'Vance',
2203
+ '37183': 'Wake',
2204
+ '37185': 'Warren',
2205
+ '37187': 'Washington',
2206
+ '37189': 'Watauga',
2207
+ '37191': 'Wayne',
2208
+ '37193': 'Wilkes',
2209
+ '37195': 'Wilson',
2210
+ '37197': 'Yadkin',
2211
+ '37199': 'Yancey',
2212
+ '38001': 'Adams',
2213
+ '38003': 'Barnes',
2214
+ '38005': 'Benson',
2215
+ '38007': 'Billings',
2216
+ '38009': 'Bottineau',
2217
+ '38011': 'Bowman',
2218
+ '38013': 'Burke',
2219
+ '38015': 'Burleigh',
2220
+ '38017': 'Cass',
2221
+ '38019': 'Cavalier',
2222
+ '38021': 'Dickey',
2223
+ '38023': 'Divide',
2224
+ '38025': 'Dunn',
2225
+ '38027': 'Eddy',
2226
+ '38029': 'Emmons',
2227
+ '38031': 'Foster',
2228
+ '38033': 'Golden Valley',
2229
+ '38035': 'Grand Forks',
2230
+ '38037': 'Grant',
2231
+ '38039': 'Griggs',
2232
+ '38041': 'Hettinger',
2233
+ '38043': 'Kidder',
2234
+ '38045': 'La Moure',
2235
+ '38047': 'Logan',
2236
+ '38049': 'McHenry',
2237
+ '38051': 'McIntosh',
2238
+ '38053': 'McKenzie',
2239
+ '38055': 'McLean',
2240
+ '38057': 'Mercer',
2241
+ '38059': 'Morton',
2242
+ '38061': 'Mountrail',
2243
+ '38063': 'Nelson',
2244
+ '38065': 'Oliver',
2245
+ '38067': 'Pembina',
2246
+ '38069': 'Pierce',
2247
+ '38071': 'Ramsey',
2248
+ '38073': 'Ransom',
2249
+ '38075': 'Renville',
2250
+ '38077': 'Richland',
2251
+ '38079': 'Rolette',
2252
+ '38081': 'Sargent',
2253
+ '38083': 'Sheridan',
2254
+ '38085': 'Sioux',
2255
+ '38087': 'Slope',
2256
+ '38089': 'Stark',
2257
+ '38091': 'Steele',
2258
+ '38093': 'Stutsman',
2259
+ '38095': 'Towner',
2260
+ '38097': 'Traill',
2261
+ '38099': 'Walsh',
2262
+ '38101': 'Ward',
2263
+ '38103': 'Wells',
2264
+ '38105': 'Williams',
2265
+ '39001': 'Adams',
2266
+ '39003': 'Allen',
2267
+ '39005': 'Ashland',
2268
+ '39007': 'Ashtabula',
2269
+ '39009': 'Athens',
2270
+ '39011': 'Auglaize',
2271
+ '39013': 'Belmont',
2272
+ '39015': 'Brown',
2273
+ '39017': 'Butler',
2274
+ '39019': 'Carroll',
2275
+ '39021': 'Champaign',
2276
+ '39023': 'Clark',
2277
+ '39025': 'Clermont',
2278
+ '39027': 'Clinton',
2279
+ '39029': 'Columbiana',
2280
+ '39031': 'Coshocton',
2281
+ '39033': 'Crawford',
2282
+ '39035': 'Cuyahoga',
2283
+ '39037': 'Darke',
2284
+ '39039': 'Defiance',
2285
+ '39041': 'Delaware',
2286
+ '39043': 'Erie',
2287
+ '39045': 'Fairfield',
2288
+ '39047': 'Fayette',
2289
+ '39049': 'Franklin',
2290
+ '39051': 'Fulton',
2291
+ '39053': 'Gallia',
2292
+ '39055': 'Geauga',
2293
+ '39057': 'Greene',
2294
+ '39059': 'Guernsey',
2295
+ '39061': 'Hamilton',
2296
+ '39063': 'Hancock',
2297
+ '39065': 'Hardin',
2298
+ '39067': 'Harrison',
2299
+ '39069': 'Henry',
2300
+ '39071': 'Highland',
2301
+ '39073': 'Hocking',
2302
+ '39075': 'Holmes',
2303
+ '39077': 'Huron',
2304
+ '39079': 'Jackson',
2305
+ '39081': 'Jefferson',
2306
+ '39083': 'Knox',
2307
+ '39085': 'Lake',
2308
+ '39087': 'Lawrence',
2309
+ '39089': 'Licking',
2310
+ '39091': 'Logan',
2311
+ '39093': 'Lorain',
2312
+ '39095': 'Lucas',
2313
+ '39097': 'Madison',
2314
+ '39099': 'Mahoning',
2315
+ '39101': 'Marion',
2316
+ '39103': 'Medina',
2317
+ '39105': 'Meigs',
2318
+ '39107': 'Mercer',
2319
+ '39109': 'Miami',
2320
+ '39111': 'Monroe',
2321
+ '39113': 'Montgomery',
2322
+ '39115': 'Morgan',
2323
+ '39117': 'Morrow',
2324
+ '39119': 'Muskingum',
2325
+ '39121': 'Noble',
2326
+ '39123': 'Ottawa',
2327
+ '39125': 'Paulding',
2328
+ '39127': 'Perry',
2329
+ '39129': 'Pickaway',
2330
+ '39131': 'Pike',
2331
+ '39133': 'Portage',
2332
+ '39135': 'Preble',
2333
+ '39137': 'Putnam',
2334
+ '39139': 'Richland',
2335
+ '39141': 'Ross',
2336
+ '39143': 'Sandusky',
2337
+ '39145': 'Scioto',
2338
+ '39147': 'Seneca',
2339
+ '39149': 'Shelby',
2340
+ '39151': 'Stark',
2341
+ '39153': 'Summit',
2342
+ '39155': 'Trumbull',
2343
+ '39157': 'Tuscarawas',
2344
+ '39159': 'Union',
2345
+ '39161': 'Van Wert',
2346
+ '39163': 'Vinton',
2347
+ '39165': 'Warren',
2348
+ '39167': 'Washington',
2349
+ '39169': 'Wayne',
2350
+ '39171': 'Williams',
2351
+ '39173': 'Wood',
2352
+ '39175': 'Wyandot',
2353
+ '40001': 'Adair',
2354
+ '40003': 'Alfalfa',
2355
+ '40005': 'Atoka',
2356
+ '40007': 'Beaver',
2357
+ '40009': 'Beckham',
2358
+ '40011': 'Blaine',
2359
+ '40013': 'Bryan',
2360
+ '40015': 'Caddo',
2361
+ '40017': 'Canadian',
2362
+ '40019': 'Carter',
2363
+ '40021': 'Cherokee',
2364
+ '40023': 'Choctaw',
2365
+ '40025': 'Cimarron',
2366
+ '40027': 'Cleveland',
2367
+ '40029': 'Coal',
2368
+ '40031': 'Comanche',
2369
+ '40033': 'Cotton',
2370
+ '40035': 'Craig',
2371
+ '40037': 'Creek',
2372
+ '40039': 'Custer',
2373
+ '40041': 'Delaware',
2374
+ '40043': 'Dewey',
2375
+ '40045': 'Ellis',
2376
+ '40047': 'Garfield',
2377
+ '40049': 'Garvin',
2378
+ '40051': 'Grady',
2379
+ '40053': 'Grant',
2380
+ '40055': 'Greer',
2381
+ '40057': 'Harmon',
2382
+ '40059': 'Harper',
2383
+ '40061': 'Haskell',
2384
+ '40063': 'Hughes',
2385
+ '40065': 'Jackson',
2386
+ '40067': 'Jefferson',
2387
+ '40069': 'Johnston',
2388
+ '40071': 'Kay',
2389
+ '40073': 'Kingfisher',
2390
+ '40075': 'Kiowa',
2391
+ '40077': 'Latimer',
2392
+ '40079': 'Le Flore',
2393
+ '40081': 'Lincoln',
2394
+ '40083': 'Logan',
2395
+ '40085': 'Love',
2396
+ '40087': 'McClain',
2397
+ '40089': 'McCurtain',
2398
+ '40091': 'McIntosh',
2399
+ '40093': 'Major',
2400
+ '40095': 'Marshall',
2401
+ '40097': 'Mayes',
2402
+ '40099': 'Murray',
2403
+ '40101': 'Muskogee',
2404
+ '40103': 'Noble',
2405
+ '40105': 'Nowata',
2406
+ '40107': 'Okfuskee',
2407
+ '40109': 'Oklahoma',
2408
+ '40111': 'Okmulgee',
2409
+ '40113': 'Osage',
2410
+ '40115': 'Ottawa',
2411
+ '40117': 'Pawnee',
2412
+ '40119': 'Payne',
2413
+ '40121': 'Pittsburg',
2414
+ '40123': 'Pontotoc',
2415
+ '40125': 'Pottawatomie',
2416
+ '40127': 'Pushmataha',
2417
+ '40129': 'Roger Mills',
2418
+ '40131': 'Rogers',
2419
+ '40133': 'Seminole',
2420
+ '40135': 'Sequoyah',
2421
+ '40137': 'Stephens',
2422
+ '40139': 'Texas',
2423
+ '40141': 'Tillman',
2424
+ '40143': 'Tulsa',
2425
+ '40145': 'Wagoner',
2426
+ '40147': 'Washington',
2427
+ '40149': 'Washita',
2428
+ '40151': 'Woods',
2429
+ '40153': 'Woodward',
2430
+ '41001': 'Baker',
2431
+ '41003': 'Benton',
2432
+ '41005': 'Clackamas',
2433
+ '41007': 'Clatsop',
2434
+ '41009': 'Columbia',
2435
+ '41011': 'Coos',
2436
+ '41013': 'Crook',
2437
+ '41015': 'Curry',
2438
+ '41017': 'Deschutes',
2439
+ '41019': 'Douglas',
2440
+ '41021': 'Gilliam',
2441
+ '41023': 'Grant',
2442
+ '41025': 'Harney',
2443
+ '41027': 'Hood River',
2444
+ '41029': 'Jackson',
2445
+ '41031': 'Jefferson',
2446
+ '41033': 'Josephine',
2447
+ '41035': 'Klamath',
2448
+ '41037': 'Lake',
2449
+ '41039': 'Lane',
2450
+ '41041': 'Lincoln',
2451
+ '41043': 'Linn',
2452
+ '41045': 'Malheur',
2453
+ '41047': 'Marion',
2454
+ '41049': 'Morrow',
2455
+ '41051': 'Multnomah',
2456
+ '41053': 'Polk',
2457
+ '41055': 'Sherman',
2458
+ '41057': 'Tillamook',
2459
+ '41059': 'Umatilla',
2460
+ '41061': 'Union',
2461
+ '41063': 'Wallowa',
2462
+ '41065': 'Wasco',
2463
+ '41067': 'Washington',
2464
+ '41069': 'Wheeler',
2465
+ '41071': 'Yamhill',
2466
+ '42001': 'Adams',
2467
+ '42003': 'Allegheny',
2468
+ '42005': 'Armstrong',
2469
+ '42007': 'Beaver',
2470
+ '42009': 'Bedford',
2471
+ '42011': 'Berks',
2472
+ '42013': 'Blair',
2473
+ '42015': 'Bradford',
2474
+ '42017': 'Bucks',
2475
+ '42019': 'Butler',
2476
+ '42021': 'Cambria',
2477
+ '42023': 'Cameron',
2478
+ '42025': 'Carbon',
2479
+ '42027': 'Centre',
2480
+ '42029': 'Chester',
2481
+ '42031': 'Clarion',
2482
+ '42033': 'Clearfield',
2483
+ '42035': 'Clinton',
2484
+ '42037': 'Columbia',
2485
+ '42039': 'Crawford',
2486
+ '42041': 'Cumberland',
2487
+ '42043': 'Dauphin',
2488
+ '42045': 'Delaware',
2489
+ '42047': 'Elk',
2490
+ '42049': 'Erie',
2491
+ '42051': 'Fayette',
2492
+ '42053': 'Forest',
2493
+ '42055': 'Franklin',
2494
+ '42057': 'Fulton',
2495
+ '42059': 'Greene',
2496
+ '42061': 'Huntingdon',
2497
+ '42063': 'Indiana',
2498
+ '42065': 'Jefferson',
2499
+ '42067': 'Juniata',
2500
+ '42069': 'Lackawanna',
2501
+ '42071': 'Lancaster',
2502
+ '42073': 'Lawrence',
2503
+ '42075': 'Lebanon',
2504
+ '42077': 'Lehigh',
2505
+ '42079': 'Luzerne',
2506
+ '42081': 'Lycoming',
2507
+ '42083': 'McKean',
2508
+ '42085': 'Mercer',
2509
+ '42087': 'Mifflin',
2510
+ '42089': 'Monroe',
2511
+ '42091': 'Montgomery',
2512
+ '42093': 'Montour',
2513
+ '42095': 'Northampton',
2514
+ '42097': 'Northumberland',
2515
+ '42099': 'Perry',
2516
+ '42101': 'Philadelphia',
2517
+ '42103': 'Pike',
2518
+ '42105': 'Potter',
2519
+ '42107': 'Schuylkill',
2520
+ '42109': 'Snyder',
2521
+ '42111': 'Somerset',
2522
+ '42113': 'Sullivan',
2523
+ '42115': 'Susquehanna',
2524
+ '42117': 'Tioga',
2525
+ '42119': 'Union',
2526
+ '42121': 'Venango',
2527
+ '42123': 'Warren',
2528
+ '42125': 'Washington',
2529
+ '42127': 'Wayne',
2530
+ '42129': 'Westmoreland',
2531
+ '42131': 'Wyoming',
2532
+ '42133': 'York',
2533
+ '44001': 'Bristol',
2534
+ '44003': 'Kent',
2535
+ '44005': 'Newport',
2536
+ '44007': 'Providence',
2537
+ '44009': 'Washington',
2538
+ '45001': 'Abbeville',
2539
+ '45003': 'Aiken',
2540
+ '45005': 'Allendale',
2541
+ '45007': 'Anderson',
2542
+ '45009': 'Bamberg',
2543
+ '45011': 'Barnwell',
2544
+ '45013': 'Beaufort',
2545
+ '45015': 'Berkeley',
2546
+ '45017': 'Calhoun',
2547
+ '45019': 'Charleston',
2548
+ '45021': 'Cherokee',
2549
+ '45023': 'Chester',
2550
+ '45025': 'Chesterfield',
2551
+ '45027': 'Clarendon',
2552
+ '45029': 'Colleton',
2553
+ '45031': 'Darlington',
2554
+ '45033': 'Dillon',
2555
+ '45035': 'Dorchester',
2556
+ '45037': 'Edgefield',
2557
+ '45039': 'Fairfield',
2558
+ '45041': 'Florence',
2559
+ '45043': 'Georgetown',
2560
+ '45045': 'Greenville',
2561
+ '45047': 'Greenwood',
2562
+ '45049': 'Hampton',
2563
+ '45051': 'Horry',
2564
+ '45053': 'Jasper',
2565
+ '45055': 'Kershaw',
2566
+ '45057': 'Lancaster',
2567
+ '45059': 'Laurens',
2568
+ '45061': 'Lee',
2569
+ '45063': 'Lexington',
2570
+ '45065': 'McCormick',
2571
+ '45067': 'Marion',
2572
+ '45069': 'Marlboro',
2573
+ '45071': 'Newberry',
2574
+ '45073': 'Oconee',
2575
+ '45075': 'Orangeburg',
2576
+ '45077': 'Pickens',
2577
+ '45079': 'Richland',
2578
+ '45081': 'Saluda',
2579
+ '45083': 'Spartanburg',
2580
+ '45085': 'Sumter',
2581
+ '45087': 'Union',
2582
+ '45089': 'Williamsburg',
2583
+ '45091': 'York',
2584
+ '46003': 'Aurora',
2585
+ '46005': 'Beadle',
2586
+ '46007': 'Bennett',
2587
+ '46009': 'Bon Homme',
2588
+ '46011': 'Brookings',
2589
+ '46013': 'Brown',
2590
+ '46015': 'Brule',
2591
+ '46017': 'Buffalo',
2592
+ '46019': 'Butte',
2593
+ '46021': 'Campbell',
2594
+ '46023': 'Charles Mix',
2595
+ '46025': 'Clark',
2596
+ '46027': 'Clay',
2597
+ '46029': 'Codington',
2598
+ '46031': 'Corson',
2599
+ '46033': 'Custer',
2600
+ '46035': 'Davison',
2601
+ '46037': 'Day',
2602
+ '46039': 'Deuel',
2603
+ '46041': 'Dewey',
2604
+ '46043': 'Douglas',
2605
+ '46045': 'Edmunds',
2606
+ '46047': 'Fall River',
2607
+ '46049': 'Faulk',
2608
+ '46051': 'Grant',
2609
+ '46053': 'Gregory',
2610
+ '46055': 'Haakon',
2611
+ '46057': 'Hamlin',
2612
+ '46059': 'Hand',
2613
+ '46061': 'Hanson',
2614
+ '46063': 'Harding',
2615
+ '46065': 'Hughes',
2616
+ '46067': 'Hutchinson',
2617
+ '46069': 'Hyde',
2618
+ '46071': 'Jackson',
2619
+ '46073': 'Jerauld',
2620
+ '46075': 'Jones',
2621
+ '46077': 'Kingsbury',
2622
+ '46079': 'Lake',
2623
+ '46081': 'Lawrence',
2624
+ '46083': 'Lincoln',
2625
+ '46085': 'Lyman',
2626
+ '46087': 'McCook',
2627
+ '46089': 'McPherson',
2628
+ '46091': 'Marshall',
2629
+ '46093': 'Meade',
2630
+ '46095': 'Mellette',
2631
+ '46097': 'Miner',
2632
+ '46099': 'Minnehaha',
2633
+ '46101': 'Moody',
2634
+ '46103': 'Pennington',
2635
+ '46105': 'Perkins',
2636
+ '46107': 'Potter',
2637
+ '46109': 'Roberts',
2638
+ '46111': 'Sanborn',
2639
+ '46113': 'Shannon',
2640
+ '46115': 'Spink',
2641
+ '46117': 'Stanley',
2642
+ '46119': 'Sully',
2643
+ '46121': 'Todd',
2644
+ '46123': 'Tripp',
2645
+ '46125': 'Turner',
2646
+ '46127': 'Union',
2647
+ '46129': 'Walworth',
2648
+ '46135': 'Yankton',
2649
+ '46137': 'Ziebach',
2650
+ '47001': 'Anderson',
2651
+ '47003': 'Bedford',
2652
+ '47005': 'Benton',
2653
+ '47007': 'Bledsoe',
2654
+ '47009': 'Blount',
2655
+ '47011': 'Bradley',
2656
+ '47013': 'Campbell',
2657
+ '47015': 'Cannon',
2658
+ '47017': 'Carroll',
2659
+ '47019': 'Carter',
2660
+ '47021': 'Cheatham',
2661
+ '47023': 'Chester',
2662
+ '47025': 'Claiborne',
2663
+ '47027': 'Clay',
2664
+ '47029': 'Cocke',
2665
+ '47031': 'Coffee',
2666
+ '47033': 'Crockett',
2667
+ '47035': 'Cumberland',
2668
+ '47037': 'Davidson',
2669
+ '47039': 'Decatur',
2670
+ '47041': 'De Kalb',
2671
+ '47043': 'Dickson',
2672
+ '47045': 'Dyer',
2673
+ '47047': 'Fayette',
2674
+ '47049': 'Fentress',
2675
+ '47051': 'Franklin',
2676
+ '47053': 'Gibson',
2677
+ '47055': 'Giles',
2678
+ '47057': 'Grainger',
2679
+ '47059': 'Greene',
2680
+ '47061': 'Grundy',
2681
+ '47063': 'Hamblen',
2682
+ '47065': 'Hamilton',
2683
+ '47067': 'Hancock',
2684
+ '47069': 'Hardeman',
2685
+ '47071': 'Hardin',
2686
+ '47073': 'Hawkins',
2687
+ '47075': 'Haywood',
2688
+ '47077': 'Henderson',
2689
+ '47079': 'Henry',
2690
+ '47081': 'Hickman',
2691
+ '47083': 'Houston',
2692
+ '47085': 'Humphreys',
2693
+ '47087': 'Jackson',
2694
+ '47089': 'Jefferson',
2695
+ '47091': 'Johnson',
2696
+ '47093': 'Knox',
2697
+ '47095': 'Lake',
2698
+ '47097': 'Lauderdale',
2699
+ '47099': 'Lawrence',
2700
+ '47101': 'Lewis',
2701
+ '47103': 'Lincoln',
2702
+ '47105': 'Loudon',
2703
+ '47107': 'McMinn',
2704
+ '47109': 'McNairy',
2705
+ '47111': 'Macon',
2706
+ '47113': 'Madison',
2707
+ '47115': 'Marion',
2708
+ '47117': 'Marshall',
2709
+ '47119': 'Maury',
2710
+ '47121': 'Meigs',
2711
+ '47123': 'Monroe',
2712
+ '47125': 'Montgomery',
2713
+ '47127': 'Moore',
2714
+ '47129': 'Morgan',
2715
+ '47131': 'Obion',
2716
+ '47133': 'Overton',
2717
+ '47135': 'Perry',
2718
+ '47137': 'Pickett',
2719
+ '47139': 'Polk',
2720
+ '47141': 'Putnam',
2721
+ '47143': 'Rhea',
2722
+ '47145': 'Roane',
2723
+ '47147': 'Robertson',
2724
+ '47149': 'Rutherford',
2725
+ '47151': 'Scott',
2726
+ '47153': 'Sequatchie',
2727
+ '47155': 'Sevier',
2728
+ '47157': 'Shelby',
2729
+ '47159': 'Smith',
2730
+ '47161': 'Stewart',
2731
+ '47163': 'Sullivan',
2732
+ '47165': 'Sumner',
2733
+ '47167': 'Tipton',
2734
+ '47169': 'Trousdale',
2735
+ '47171': 'Unicoi',
2736
+ '47173': 'Union',
2737
+ '47175': 'Van Buren',
2738
+ '47177': 'Warren',
2739
+ '47179': 'Washington',
2740
+ '47181': 'Wayne',
2741
+ '47183': 'Weakley',
2742
+ '47185': 'White',
2743
+ '47187': 'Williamson',
2744
+ '47189': 'Wilson',
2745
+ '48001': 'Anderson',
2746
+ '48003': 'Andrews',
2747
+ '48005': 'Angelina',
2748
+ '48007': 'Aransas',
2749
+ '48009': 'Archer',
2750
+ '48011': 'Armstrong',
2751
+ '48013': 'Atascosa',
2752
+ '48015': 'Austin',
2753
+ '48017': 'Bailey',
2754
+ '48019': 'Bandera',
2755
+ '48021': 'Bastrop',
2756
+ '48023': 'Baylor',
2757
+ '48025': 'Bee',
2758
+ '48027': 'Bell',
2759
+ '48029': 'Bexar',
2760
+ '48031': 'Blanco',
2761
+ '48033': 'Borden',
2762
+ '48035': 'Bosque',
2763
+ '48037': 'Bowie',
2764
+ '48039': 'Brazoria',
2765
+ '48041': 'Brazos',
2766
+ '48043': 'Brewster',
2767
+ '48045': 'Briscoe',
2768
+ '48047': 'Brooks',
2769
+ '48049': 'Brown',
2770
+ '48051': 'Burleson',
2771
+ '48053': 'Burnet',
2772
+ '48055': 'Caldwell',
2773
+ '48057': 'Calhoun',
2774
+ '48059': 'Callahan',
2775
+ '48061': 'Cameron',
2776
+ '48063': 'Camp',
2777
+ '48065': 'Carson',
2778
+ '48067': 'Cass',
2779
+ '48069': 'Castro',
2780
+ '48071': 'Chambers',
2781
+ '48073': 'Cherokee',
2782
+ '48075': 'Childress',
2783
+ '48077': 'Clay',
2784
+ '48079': 'Cochran',
2785
+ '48081': 'Coke',
2786
+ '48083': 'Coleman',
2787
+ '48085': 'Collin',
2788
+ '48087': 'Collingsworth',
2789
+ '48089': 'Colorado',
2790
+ '48091': 'Comal',
2791
+ '48093': 'Comanche',
2792
+ '48095': 'Concho',
2793
+ '48097': 'Cooke',
2794
+ '48099': 'Coryell',
2795
+ '48101': 'Cottle',
2796
+ '48103': 'Crane',
2797
+ '48105': 'Crockett',
2798
+ '48107': 'Crosby',
2799
+ '48109': 'Culberson',
2800
+ '48111': 'Dallam',
2801
+ '48113': 'Dallas',
2802
+ '48115': 'Dawson',
2803
+ '48117': 'Deaf Smith',
2804
+ '48119': 'Delta',
2805
+ '48121': 'Denton',
2806
+ '48123': 'De Witt',
2807
+ '48125': 'Dickens',
2808
+ '48127': 'Dimmit',
2809
+ '48129': 'Donley',
2810
+ '48131': 'Duval',
2811
+ '48133': 'Eastland',
2812
+ '48135': 'Ector',
2813
+ '48137': 'Edwards',
2814
+ '48139': 'Ellis',
2815
+ '48141': 'El Paso',
2816
+ '48143': 'Erath',
2817
+ '48145': 'Falls',
2818
+ '48147': 'Fannin',
2819
+ '48149': 'Fayette',
2820
+ '48151': 'Fisher',
2821
+ '48153': 'Floyd',
2822
+ '48155': 'Foard',
2823
+ '48157': 'Fort Bend',
2824
+ '48159': 'Franklin',
2825
+ '48161': 'Freestone',
2826
+ '48163': 'Frio',
2827
+ '48165': 'Gaines',
2828
+ '48167': 'Galveston',
2829
+ '48169': 'Garza',
2830
+ '48171': 'Gillespie',
2831
+ '48173': 'Glasscock',
2832
+ '48175': 'Goliad',
2833
+ '48177': 'Gonzales',
2834
+ '48179': 'Gray',
2835
+ '48181': 'Grayson',
2836
+ '48183': 'Gregg',
2837
+ '48185': 'Grimes',
2838
+ '48187': 'Guadalupe',
2839
+ '48189': 'Hale',
2840
+ '48191': 'Hall',
2841
+ '48193': 'Hamilton',
2842
+ '48195': 'Hansford',
2843
+ '48197': 'Hardeman',
2844
+ '48199': 'Hardin',
2845
+ '48201': 'Harris',
2846
+ '48203': 'Harrison',
2847
+ '48205': 'Hartley',
2848
+ '48207': 'Haskell',
2849
+ '48209': 'Hays',
2850
+ '48211': 'Hemphill',
2851
+ '48213': 'Henderson',
2852
+ '48215': 'Hidalgo',
2853
+ '48217': 'Hill',
2854
+ '48219': 'Hockley',
2855
+ '48221': 'Hood',
2856
+ '48223': 'Hopkins',
2857
+ '48225': 'Houston',
2858
+ '48227': 'Howard',
2859
+ '48229': 'Hudspeth',
2860
+ '48231': 'Hunt',
2861
+ '48233': 'Hutchinson',
2862
+ '48235': 'Irion',
2863
+ '48237': 'Jack',
2864
+ '48239': 'Jackson',
2865
+ '48241': 'Jasper',
2866
+ '48243': 'Jeff Davis',
2867
+ '48245': 'Jefferson',
2868
+ '48247': 'Jim Hogg',
2869
+ '48249': 'Jim Wells',
2870
+ '48251': 'Johnson',
2871
+ '48253': 'Jones',
2872
+ '48255': 'Karnes',
2873
+ '48257': 'Kaufman',
2874
+ '48259': 'Kendall',
2875
+ '48261': 'Kenedy',
2876
+ '48263': 'Kent',
2877
+ '48265': 'Kerr',
2878
+ '48267': 'Kimble',
2879
+ '48269': 'King',
2880
+ '48271': 'Kinney',
2881
+ '48273': 'Kleberg',
2882
+ '48275': 'Knox',
2883
+ '48277': 'Lamar',
2884
+ '48279': 'Lamb',
2885
+ '48281': 'Lampasas',
2886
+ '48283': 'La Salle',
2887
+ '48285': 'Lavaca',
2888
+ '48287': 'Lee',
2889
+ '48289': 'Leon',
2890
+ '48291': 'Liberty',
2891
+ '48293': 'Limestone',
2892
+ '48295': 'Lipscomb',
2893
+ '48297': 'Live Oak',
2894
+ '48299': 'Llano',
2895
+ '48301': 'Loving',
2896
+ '48303': 'Lubbock',
2897
+ '48305': 'Lynn',
2898
+ '48307': 'McCulloch',
2899
+ '48309': 'McLennan',
2900
+ '48311': 'McMullen',
2901
+ '48313': 'Madison',
2902
+ '48315': 'Marion',
2903
+ '48317': 'Martin',
2904
+ '48319': 'Mason',
2905
+ '48321': 'Matagorda',
2906
+ '48323': 'Maverick',
2907
+ '48325': 'Medina',
2908
+ '48327': 'Menard',
2909
+ '48329': 'Midland',
2910
+ '48331': 'Milam',
2911
+ '48333': 'Mills',
2912
+ '48335': 'Mitchell',
2913
+ '48337': 'Montague',
2914
+ '48339': 'Montgomery',
2915
+ '48341': 'Moore',
2916
+ '48343': 'Morris',
2917
+ '48345': 'Motley',
2918
+ '48347': 'Nacogdoches',
2919
+ '48349': 'Navarro',
2920
+ '48351': 'Newton',
2921
+ '48353': 'Nolan',
2922
+ '48355': 'Nueces',
2923
+ '48357': 'Ochiltree',
2924
+ '48359': 'Oldham',
2925
+ '48361': 'Orange',
2926
+ '48363': 'Palo Pinto',
2927
+ '48365': 'Panola',
2928
+ '48367': 'Parker',
2929
+ '48369': 'Parmer',
2930
+ '48371': 'Pecos',
2931
+ '48373': 'Polk',
2932
+ '48375': 'Potter',
2933
+ '48377': 'Presidio',
2934
+ '48379': 'Rains',
2935
+ '48381': 'Randall',
2936
+ '48383': 'Reagan',
2937
+ '48385': 'Real',
2938
+ '48387': 'Red River',
2939
+ '48389': 'Reeves',
2940
+ '48391': 'Refugio',
2941
+ '48393': 'Roberts',
2942
+ '48395': 'Robertson',
2943
+ '48397': 'Rockwall',
2944
+ '48399': 'Runnels',
2945
+ '48401': 'Rusk',
2946
+ '48403': 'Sabine',
2947
+ '48405': 'San Augustine',
2948
+ '48407': 'San Jacinto',
2949
+ '48409': 'San Patricio',
2950
+ '48411': 'San Saba',
2951
+ '48413': 'Schleicher',
2952
+ '48415': 'Scurry',
2953
+ '48417': 'Shackelford',
2954
+ '48419': 'Shelby',
2955
+ '48421': 'Sherman',
2956
+ '48423': 'Smith',
2957
+ '48425': 'Somervell',
2958
+ '48427': 'Starr',
2959
+ '48429': 'Stephens',
2960
+ '48431': 'Sterling',
2961
+ '48433': 'Stonewall',
2962
+ '48435': 'Sutton',
2963
+ '48437': 'Swisher',
2964
+ '48439': 'Tarrant',
2965
+ '48441': 'Taylor',
2966
+ '48443': 'Terrell',
2967
+ '48445': 'Terry',
2968
+ '48447': 'Throckmorton',
2969
+ '48449': 'Titus',
2970
+ '48451': 'Tom Green',
2971
+ '48453': 'Travis',
2972
+ '48455': 'Trinity',
2973
+ '48457': 'Tyler',
2974
+ '48459': 'Upshur',
2975
+ '48461': 'Upton',
2976
+ '48463': 'Uvalde',
2977
+ '48465': 'Val Verde',
2978
+ '48467': 'Van Zandt',
2979
+ '48469': 'Victoria',
2980
+ '48471': 'Walker',
2981
+ '48473': 'Waller',
2982
+ '48475': 'Ward',
2983
+ '48477': 'Washington',
2984
+ '48479': 'Webb',
2985
+ '48481': 'Wharton',
2986
+ '48483': 'Wheeler',
2987
+ '48485': 'Wichita',
2988
+ '48487': 'Wilbarger',
2989
+ '48489': 'Willacy',
2990
+ '48491': 'Williamson',
2991
+ '48493': 'Wilson',
2992
+ '48495': 'Winkler',
2993
+ '48497': 'Wise',
2994
+ '48499': 'Wood',
2995
+ '48501': 'Yoakum',
2996
+ '48503': 'Young',
2997
+ '48505': 'Zapata',
2998
+ '48507': 'Zavala',
2999
+ '49001': 'Beaver',
3000
+ '49003': 'Box Elder',
3001
+ '49005': 'Cache',
3002
+ '49007': 'Carbon',
3003
+ '49009': 'Daggett',
3004
+ '49011': 'Davis',
3005
+ '49013': 'Duchesne',
3006
+ '49015': 'Emery',
3007
+ '49017': 'Garfield',
3008
+ '49019': 'Grand',
3009
+ '49021': 'Iron',
3010
+ '49023': 'Juab',
3011
+ '49025': 'Kane',
3012
+ '49027': 'Millard',
3013
+ '49029': 'Morgan',
3014
+ '49031': 'Piute',
3015
+ '49033': 'Rich',
3016
+ '49035': 'Salt Lake',
3017
+ '49037': 'San Juan',
3018
+ '49039': 'Sanpete',
3019
+ '49041': 'Sevier',
3020
+ '49043': 'Summit',
3021
+ '49045': 'Tooele',
3022
+ '49047': 'Uintah',
3023
+ '49049': 'Utah',
3024
+ '49051': 'Wasatch',
3025
+ '49053': 'Washington',
3026
+ '49055': 'Wayne',
3027
+ '49057': 'Weber',
3028
+ '50001': 'Addison',
3029
+ '50003': 'Bennington',
3030
+ '50005': 'Caledonia',
3031
+ '50007': 'Chittenden',
3032
+ '50009': 'Essex',
3033
+ '50011': 'Franklin',
3034
+ '50013': 'Grand Isle',
3035
+ '50015': 'Lamoille',
3036
+ '50017': 'Orange',
3037
+ '50019': 'Orleans',
3038
+ '50021': 'Rutland',
3039
+ '50023': 'Washington',
3040
+ '50025': 'Windham',
3041
+ '50027': 'Windsor',
3042
+ '51001': 'Accomack',
3043
+ '51003': 'Albemarle',
3044
+ '51005': 'Alleghany',
3045
+ '51007': 'Amelia',
3046
+ '51009': 'Amherst',
3047
+ '51011': 'Appomattox',
3048
+ '51013': 'Arlington',
3049
+ '51015': 'Augusta',
3050
+ '51017': 'Bath',
3051
+ '51019': 'Bedford',
3052
+ '51021': 'Bland',
3053
+ '51023': 'Botetourt',
3054
+ '51025': 'Brunswick',
3055
+ '51027': 'Buchanan',
3056
+ '51029': 'Buckingham',
3057
+ '51031': 'Campbell',
3058
+ '51033': 'Caroline',
3059
+ '51035': 'Carroll',
3060
+ '51036': 'Charles City',
3061
+ '51037': 'Charlotte',
3062
+ '51041': 'Chesterfield',
3063
+ '51043': 'Clarke',
3064
+ '51045': 'Craig',
3065
+ '51047': 'Culpeper',
3066
+ '51049': 'Cumberland',
3067
+ '51051': 'Dickenson',
3068
+ '51053': 'Dinwiddie',
3069
+ '51057': 'Essex',
3070
+ '51059': 'Fairfax',
3071
+ '51061': 'Fauquier',
3072
+ '51063': 'Floyd',
3073
+ '51065': 'Fluvanna',
3074
+ '51067': 'Franklin',
3075
+ '51069': 'Frederick',
3076
+ '51071': 'Giles',
3077
+ '51073': 'Gloucester',
3078
+ '51075': 'Goochland',
3079
+ '51077': 'Grayson',
3080
+ '51079': 'Greene',
3081
+ '51081': 'Greensville',
3082
+ '51083': 'Halifax',
3083
+ '51085': 'Hanover',
3084
+ '51087': 'Henrico',
3085
+ '51089': 'Henry',
3086
+ '51091': 'Highland',
3087
+ '51093': 'Isle of Wight',
3088
+ '51095': 'James City',
3089
+ '51097': 'King and Queen',
3090
+ '51099': 'King George',
3091
+ '51101': 'King William',
3092
+ '51103': 'Lancaster',
3093
+ '51105': 'Lee',
3094
+ '51107': 'Loudoun',
3095
+ '51109': 'Louisa',
3096
+ '51111': 'Lunenburg',
3097
+ '51113': 'Madison',
3098
+ '51115': 'Mathews',
3099
+ '51117': 'Mecklenburg',
3100
+ '51119': 'Middlesex',
3101
+ '51121': 'Montgomery',
3102
+ '51125': 'Nelson',
3103
+ '51127': 'New Kent',
3104
+ '51131': 'Northampton',
3105
+ '51133': 'Northumberland',
3106
+ '51135': 'Nottoway',
3107
+ '51137': 'Orange',
3108
+ '51139': 'Page',
3109
+ '51141': 'Patrick',
3110
+ '51143': 'Pittsylvania',
3111
+ '51145': 'Powhatan',
3112
+ '51147': 'Prince Edward',
3113
+ '51149': 'Prince George',
3114
+ '51153': 'Prince William',
3115
+ '51155': 'Pulaski',
3116
+ '51157': 'Rappahannock',
3117
+ '51159': 'Richmond',
3118
+ '51161': 'Roanoke',
3119
+ '51163': 'Rockbridge',
3120
+ '51165': 'Rockingham',
3121
+ '51167': 'Russell',
3122
+ '51169': 'Scott',
3123
+ '51171': 'Shenandoah',
3124
+ '51173': 'Smyth',
3125
+ '51175': 'Southampton',
3126
+ '51177': 'Spotsylvania',
3127
+ '51179': 'Stafford',
3128
+ '51181': 'Surry',
3129
+ '51183': 'Sussex',
3130
+ '51185': 'Tazewell',
3131
+ '51187': 'Warren',
3132
+ '51191': 'Washington',
3133
+ '51193': 'Westmoreland',
3134
+ '51195': 'Wise',
3135
+ '51197': 'Wythe',
3136
+ '51199': 'York',
3137
+ '51510': 'Alexandria City',
3138
+ '51515': 'Bedford City',
3139
+ '51520': 'Bristol City',
3140
+ '51530': 'Buena Vista City',
3141
+ '51540': 'Charlottesville City',
3142
+ '51550': 'Chesapeake City',
3143
+ '51560': 'Clifton Forge City',
3144
+ '51570': 'Colonial Heights Cit',
3145
+ '51580': 'Covington City',
3146
+ '51590': 'Danville City',
3147
+ '51595': 'Emporia City',
3148
+ '51600': 'Fairfax City',
3149
+ '51610': 'Falls Church City',
3150
+ '51620': 'Franklin City',
3151
+ '51630': 'Fredericksburg City',
3152
+ '51640': 'Galax City',
3153
+ '51650': 'Hampton City',
3154
+ '51660': 'Harrisonburg City',
3155
+ '51670': 'Hopewell City',
3156
+ '51678': 'Lexington City',
3157
+ '51680': 'Lynchburg City',
3158
+ '51683': 'Manassas City',
3159
+ '51685': 'Manassas Park City',
3160
+ '51690': 'Martinsville City',
3161
+ '51700': 'Newport News City',
3162
+ '51710': 'Norfolk City',
3163
+ '51720': 'Norton City',
3164
+ '51730': 'Petersburg City',
3165
+ '51735': 'Poquoson City',
3166
+ '51740': 'Portsmouth City',
3167
+ '51750': 'Radford City',
3168
+ '51760': 'Richmond City',
3169
+ '51770': 'Roanoke City',
3170
+ '51775': 'Salem City',
3171
+ '51780': 'South Boston City',
3172
+ '51790': 'Staunton City',
3173
+ '51800': 'Suffolk City',
3174
+ '51810': 'Virginia Beach City',
3175
+ '51820': 'Waynesboro City',
3176
+ '51830': 'Williamsburg City',
3177
+ '51840': 'Winchester City',
3178
+ '53001': 'Adams',
3179
+ '53003': 'Asotin',
3180
+ '53005': 'Benton',
3181
+ '53007': 'Chelan',
3182
+ '53009': 'Clallam',
3183
+ '53011': 'Clark',
3184
+ '53013': 'Columbia',
3185
+ '53015': 'Cowlitz',
3186
+ '53017': 'Douglas',
3187
+ '53019': 'Ferry',
3188
+ '53021': 'Franklin',
3189
+ '53023': 'Garfield',
3190
+ '53025': 'Grant',
3191
+ '53027': 'Grays Harbor',
3192
+ '53029': 'Island',
3193
+ '53031': 'Jefferson',
3194
+ '53033': 'King',
3195
+ '53035': 'Kitsap',
3196
+ '53037': 'Kittitas',
3197
+ '53039': 'Klickitat',
3198
+ '53041': 'Lewis',
3199
+ '53043': 'Lincoln',
3200
+ '53045': 'Mason',
3201
+ '53047': 'Okanogan',
3202
+ '53049': 'Pacific',
3203
+ '53051': 'Pend Oreille',
3204
+ '53053': 'Pierce',
3205
+ '53055': 'San Juan',
3206
+ '53057': 'Skagit',
3207
+ '53059': 'Skamania',
3208
+ '53061': 'Snohomish',
3209
+ '53063': 'Spokane',
3210
+ '53065': 'Stevens',
3211
+ '53067': 'Thurston',
3212
+ '53069': 'Wahkiakum',
3213
+ '53071': 'Walla Walla',
3214
+ '53073': 'Whatcom',
3215
+ '53075': 'Whitman',
3216
+ '53077': 'Yakima',
3217
+ '54001': 'Barbour',
3218
+ '54003': 'Berkeley',
3219
+ '54005': 'Boone',
3220
+ '54007': 'Braxton',
3221
+ '54009': 'Brooke',
3222
+ '54011': 'Cabell',
3223
+ '54013': 'Calhoun',
3224
+ '54015': 'Clay',
3225
+ '54017': 'Doddridge',
3226
+ '54019': 'Fayette',
3227
+ '54021': 'Gilmer',
3228
+ '54023': 'Grant',
3229
+ '54025': 'Greenbrier',
3230
+ '54027': 'Hampshire',
3231
+ '54029': 'Hancock',
3232
+ '54031': 'Hardy',
3233
+ '54033': 'Harrison',
3234
+ '54035': 'Jackson',
3235
+ '54037': 'Jefferson',
3236
+ '54039': 'Kanawha',
3237
+ '54041': 'Lewis',
3238
+ '54043': 'Lincoln',
3239
+ '54045': 'Logan',
3240
+ '54047': 'McDowell',
3241
+ '54049': 'Marion',
3242
+ '54051': 'Marshall',
3243
+ '54053': 'Mason',
3244
+ '54055': 'Mercer',
3245
+ '54057': 'Mineral',
3246
+ '54059': 'Mingo',
3247
+ '54061': 'Monongalia',
3248
+ '54063': 'Monroe',
3249
+ '54065': 'Morgan',
3250
+ '54067': 'Nicholas',
3251
+ '54069': 'Ohio',
3252
+ '54071': 'Pendleton',
3253
+ '54073': 'Pleasants',
3254
+ '54075': 'Pocahontas',
3255
+ '54077': 'Preston',
3256
+ '54079': 'Putnam',
3257
+ '54081': 'Raleigh',
3258
+ '54083': 'Randolph',
3259
+ '54085': 'Ritchie',
3260
+ '54087': 'Roane',
3261
+ '54089': 'Summers',
3262
+ '54091': 'Taylor',
3263
+ '54093': 'Tucker',
3264
+ '54095': 'Tyler',
3265
+ '54097': 'Upshur',
3266
+ '54099': 'Wayne',
3267
+ '54101': 'Webster',
3268
+ '54103': 'Wetzel',
3269
+ '54105': 'Wirt',
3270
+ '54107': 'Wood',
3271
+ '54109': 'Wyoming',
3272
+ '55001': 'Adams',
3273
+ '55003': 'Ashland',
3274
+ '55005': 'Barron',
3275
+ '55007': 'Bayfield',
3276
+ '55009': 'Brown',
3277
+ '55011': 'Buffalo',
3278
+ '55013': 'Burnett',
3279
+ '55015': 'Calumet',
3280
+ '55017': 'Chippewa',
3281
+ '55019': 'Clark',
3282
+ '55021': 'Columbia',
3283
+ '55023': 'Crawford',
3284
+ '55025': 'Dane',
3285
+ '55027': 'Dodge',
3286
+ '55029': 'Door',
3287
+ '55031': 'Douglas',
3288
+ '55033': 'Dunn',
3289
+ '55035': 'Eau Claire',
3290
+ '55037': 'Florence',
3291
+ '55039': 'Fond du Lac',
3292
+ '55041': 'Forest',
3293
+ '55043': 'Grant',
3294
+ '55045': 'Green',
3295
+ '55047': 'Green Lake',
3296
+ '55049': 'Iowa',
3297
+ '55051': 'Iron',
3298
+ '55053': 'Jackson',
3299
+ '55055': 'Jefferson',
3300
+ '55057': 'Juneau',
3301
+ '55059': 'Kenosha',
3302
+ '55061': 'Kewaunee',
3303
+ '55063': 'La Crosse',
3304
+ '55065': 'Lafayette',
3305
+ '55067': 'Langlade',
3306
+ '55069': 'Lincoln',
3307
+ '55071': 'Manitowoc',
3308
+ '55073': 'Marathon',
3309
+ '55075': 'Marinette',
3310
+ '55077': 'Marquette',
3311
+ '55078': 'Menominee',
3312
+ '55079': 'Milwaukee',
3313
+ '55081': 'Monroe',
3314
+ '55083': 'Oconto',
3315
+ '55085': 'Oneida',
3316
+ '55087': 'Outagamie',
3317
+ '55089': 'Ozaukee',
3318
+ '55091': 'Pepin',
3319
+ '55093': 'Pierce',
3320
+ '55095': 'Polk',
3321
+ '55097': 'Portage',
3322
+ '55099': 'Price',
3323
+ '55101': 'Racine',
3324
+ '55103': 'Richland',
3325
+ '55105': 'Rock',
3326
+ '55107': 'Rusk',
3327
+ '55109': 'St Croix',
3328
+ '55111': 'Sauk',
3329
+ '55113': 'Sawyer',
3330
+ '55115': 'Shawano',
3331
+ '55117': 'Sheboygan',
3332
+ '55119': 'Taylor',
3333
+ '55121': 'Trempealeau',
3334
+ '55123': 'Vernon',
3335
+ '55125': 'Vilas',
3336
+ '55127': 'Walworth',
3337
+ '55129': 'Washburn',
3338
+ '55131': 'Washington',
3339
+ '55133': 'Waukesha',
3340
+ '55135': 'Waupaca',
3341
+ '55137': 'Waushara',
3342
+ '55139': 'Winnebago',
3343
+ '55141': 'Wood',
3344
+ '56001': 'Albany',
3345
+ '56003': 'Big Horn',
3346
+ '56005': 'Campbell',
3347
+ '56007': 'Carbon',
3348
+ '56009': 'Converse',
3349
+ '56011': 'Crook',
3350
+ '56013': 'Fremont',
3351
+ '56015': 'Goshen',
3352
+ '56017': 'Hot Springs',
3353
+ '56019': 'Johnson',
3354
+ '56021': 'Laramie',
3355
+ '56023': 'Lincoln',
3356
+ '56025': 'Natrona',
3357
+ '56027': 'Niobrara',
3358
+ '56029': 'Park',
3359
+ '56031': 'Platte',
3360
+ '56033': 'Sheridan',
3361
+ '56035': 'Sublette',
3362
+ '56037': 'Sweetwater',
3363
+ '56039': 'Teton',
3364
+ '56041': 'Uinta',
3365
+ '56043': 'Washakie',
3366
+ '56045': 'Weston',
3367
+ '60020': 'Olosega',
3368
+ '60050': 'Tutuila',
3369
+ '66010': 'Guam',
3370
+ '69100': 'Rota',
3371
+ '69110': 'Saipan',
3372
+ '69120': 'Tinian',
3373
+ '72001': 'Adjuntas',
3374
+ '72003': 'Aguada',
3375
+ '72005': 'Aguadilla',
3376
+ '72007': 'Aguas Buenas',
3377
+ '72009': 'Aibonito',
3378
+ '72011': 'Anasco',
3379
+ '72013': 'Arecibo',
3380
+ '72015': 'Arroyo',
3381
+ '72017': 'Barceloneta',
3382
+ '72019': 'Barranquitas',
3383
+ '72021': 'Bayamon',
3384
+ '72023': 'Cabo Rojo',
3385
+ '72025': 'Caguas',
3386
+ '72027': 'Camuy',
3387
+ '72029': 'Canovanas',
3388
+ '72031': 'Carolina',
3389
+ '72033': 'Catano',
3390
+ '72035': 'Cayey',
3391
+ '72037': 'Ceiba',
3392
+ '72041': 'Cidra',
3393
+ '72043': 'Coamo',
3394
+ '72045': 'Comerio',
3395
+ '72047': 'Corozal',
3396
+ '72049': 'Culebra',
3397
+ '72051': 'Dorado',
3398
+ '72053': 'Fajardo',
3399
+ '72054': 'Florida',
3400
+ '72055': 'Guanica',
3401
+ '72057': 'Guayama',
3402
+ '72059': 'Guayanilla',
3403
+ '72061': 'Guaynabo',
3404
+ '72063': 'Gurabo',
3405
+ '72065': 'Hatillo',
3406
+ '72067': 'Hormigueros',
3407
+ '72071': 'Isabela',
3408
+ '72073': 'Jayuya',
3409
+ '72075': 'Juana Diaz',
3410
+ '72077': 'Juncos',
3411
+ '72079': 'Lajas',
3412
+ '72081': 'Lares',
3413
+ '72083': 'Las Marias',
3414
+ '72085': 'Las Piedras',
3415
+ '72087': 'Loiza',
3416
+ '72089': 'Luquillo',
3417
+ '72091': 'Manati',
3418
+ '72093': 'Maricao',
3419
+ '72095': 'Maunabo',
3420
+ '72097': 'Mayaguez',
3421
+ '72099': 'Moca',
3422
+ '72101': 'Morovis',
3423
+ '72103': 'Nabuabo',
3424
+ '72105': 'Naranjito',
3425
+ '72107': 'Orocovis',
3426
+ '72109': 'Patillas',
3427
+ '72111': 'Penuelas',
3428
+ '72113': 'Ponce',
3429
+ '72115': 'Quebradillas',
3430
+ '72117': 'Rincon',
3431
+ '72119': 'Rio Grande',
3432
+ '72121': 'Sabana Grande',
3433
+ '72123': 'Salinas',
3434
+ '72125': 'San German',
3435
+ '72127': 'San Juan',
3436
+ '72129': 'San Lorenzo',
3437
+ '72131': 'San Sabastian',
3438
+ '72133': 'Santa Isabel',
3439
+ '72135': 'Toa Alta',
3440
+ '72137': 'Toa Baja',
3441
+ '72139': 'Trujillo Alto',
3442
+ '72141': 'Utuado',
3443
+ '72143': 'Vega Alta',
3444
+ '72145': 'Vega Baja',
3445
+ '72147': 'Vieques',
3446
+ '72149': 'Villalba',
3447
+ '72151': 'Yabucoa',
3448
+ '72153': 'Yauco',
3449
+ '78010': 'St. Croix',
3450
+ '78020': 'St. John',
3451
+ '78030': 'St. Thomas',
3452
+ '01001': 'Autauga',
3453
+ '01003': 'Baldwin',
3454
+ '01005': 'Barbour',
3455
+ '01007': 'Bibb',
3456
+ '01009': 'Blount',
3457
+ '01011': 'Bullock',
3458
+ '01013': 'Butler',
3459
+ '01015': 'Calhoun',
3460
+ '01017': 'Chambers',
3461
+ '01019': 'Cherokee',
3462
+ '01021': 'Chilton',
3463
+ '01023': 'Choctaw',
3464
+ '01025': 'Clarke',
3465
+ '01027': 'Clay',
3466
+ '01029': 'Cleburne',
3467
+ '01031': 'Coffee',
3468
+ '01033': 'Colbert',
3469
+ '01035': 'Conecuh',
3470
+ '01037': 'Coosa',
3471
+ '01039': 'Covington',
3472
+ '01041': 'Crenshaw',
3473
+ '01043': 'Cullman',
3474
+ '01045': 'Dale',
3475
+ '01047': 'Dallas',
3476
+ '01049': 'De Kalb',
3477
+ '01051': 'Elmore',
3478
+ '01053': 'Escambia',
3479
+ '01055': 'Etowah',
3480
+ '01057': 'Fayette',
3481
+ '01059': 'Franklin',
3482
+ '01061': 'Geneva',
3483
+ '01063': 'Greene',
3484
+ '01065': 'Hale',
3485
+ '01067': 'Henry',
3486
+ '01069': 'Houston',
3487
+ '01071': 'Jackson',
3488
+ '01073': 'Jefferson',
3489
+ '01075': 'Lamar',
3490
+ '01077': 'Lauderdale',
3491
+ '01079': 'Lawrence',
3492
+ '01081': 'Lee',
3493
+ '01083': 'Limestone',
3494
+ '01085': 'Lowndes',
3495
+ '01087': 'Macon',
3496
+ '01089': 'Madison',
3497
+ '01091': 'Marengo',
3498
+ '01093': 'Marion',
3499
+ '01095': 'Marshall',
3500
+ '01097': 'Mobile',
3501
+ '01099': 'Monroe',
3502
+ '01101': 'Montgomery',
3503
+ '01103': 'Morgan',
3504
+ '01105': 'Perry',
3505
+ '01107': 'Pickens',
3506
+ '01109': 'Pike',
3507
+ '01111': 'Randolph',
3508
+ '01113': 'Russell',
3509
+ '01115': 'St Clair',
3510
+ '01117': 'Shelby',
3511
+ '01119': 'Sumter',
3512
+ '01121': 'Talladega',
3513
+ '01123': 'Tallapoosa',
3514
+ '01125': 'Tuscaloosa',
3515
+ '01127': 'Walker',
3516
+ '01129': 'Washington',
3517
+ '01131': 'Wilcox',
3518
+ '01133': 'Winston',
3519
+ '02013': 'Aleutians East Borough',
3520
+ '02016': 'Aleutians West CA',
3521
+ '02020': 'Anchorage Muny',
3522
+ '02050': 'Bethel CA',
3523
+ '02060': 'Bristol Bay Borough',
3524
+ '02068': 'Denali Borough',
3525
+ '02070': 'Dillingham CA',
3526
+ '02090': 'Fairbanks North Star Borough',
3527
+ '02100': 'Haines Borough',
3528
+ '02110': 'Juneau Cty&Bor',
3529
+ '02122': 'Kenai Peninsula Borough',
3530
+ '02130': 'Ketchikan Gateway Borough',
3531
+ '02150': 'Kodiak Island Borough',
3532
+ '02164': 'Lake and Peninsula Borough',
3533
+ '02170': 'Matanuska-Susitna Borough',
3534
+ '02180': 'Nome CA',
3535
+ '02185': 'North Slope Borough',
3536
+ '02188': 'Northwest Arctic Borough',
3537
+ '02201': 'Prince of Wales-Outer Ketchikan',
3538
+ '02220': 'Sitka Cty&Bor',
3539
+ '02232': 'Skagway-Hoonah-Angoon',
3540
+ '02240': 'Southeast Fairbanks CA',
3541
+ '02261': 'Valdez-Cordova CA',
3542
+ '02270': 'Wade Hampton',
3543
+ '02280': 'Wrangell City&Bor',
3544
+ '02282': 'Yakutat City&Bor',
3545
+ '02290': 'Yukon-Koyukuk CA',
3546
+ '04001': 'Apache',
3547
+ '04003': 'Cochise',
3548
+ '04005': 'Coconino',
3549
+ '04007': 'Gila',
3550
+ '04009': 'Graham',
3551
+ '04011': 'Greenlee',
3552
+ '04012': 'La Paz',
3553
+ '04013': 'Maricopa',
3554
+ '04015': 'Mohave',
3555
+ '04017': 'Navajo',
3556
+ '04019': 'Pima',
3557
+ '04021': 'Pinal',
3558
+ '04023': 'Santa Cruz',
3559
+ '04025': 'Yavapai',
3560
+ '04027': 'Yuma',
3561
+ '05001': 'Arkansas',
3562
+ '05003': 'Ashley',
3563
+ '05005': 'Baxter',
3564
+ '05007': 'Benton',
3565
+ '05009': 'Boone',
3566
+ '05011': 'Bradley',
3567
+ '05013': 'Calhoun',
3568
+ '05015': 'Carroll',
3569
+ '05017': 'Chicot',
3570
+ '05019': 'Clark',
3571
+ '05021': 'Clay',
3572
+ '05023': 'Cleburne',
3573
+ '05025': 'Cleveland',
3574
+ '05027': 'Columbia',
3575
+ '05029': 'Conway',
3576
+ '05031': 'Craighead',
3577
+ '05033': 'Crawford',
3578
+ '05035': 'Crittenden',
3579
+ '05037': 'Cross',
3580
+ '05039': 'Dallas',
3581
+ '05041': 'Desha',
3582
+ '05043': 'Drew',
3583
+ '05045': 'Faulkner',
3584
+ '05047': 'Franklin',
3585
+ '05049': 'Fulton',
3586
+ '05051': 'Garland',
3587
+ '05053': 'Grant',
3588
+ '05055': 'Greene',
3589
+ '05057': 'Hempstead',
3590
+ '05059': 'Hot Spring',
3591
+ '05061': 'Howard',
3592
+ '05063': 'Independence',
3593
+ '05065': 'Izard',
3594
+ '05067': 'Jackson',
3595
+ '05069': 'Jefferson',
3596
+ '05071': 'Johnson',
3597
+ '05073': 'Lafayette',
3598
+ '05075': 'Lawrence',
3599
+ '05077': 'Lee',
3600
+ '05079': 'Lincoln',
3601
+ '05081': 'Little River',
3602
+ '05083': 'Logan',
3603
+ '05085': 'Lonoke',
3604
+ '05087': 'Madison',
3605
+ '05089': 'Marion',
3606
+ '05091': 'Miller',
3607
+ '05093': 'Mississippi',
3608
+ '05095': 'Monroe',
3609
+ '05097': 'Montgomery',
3610
+ '05099': 'Nevada',
3611
+ '05101': 'Newton',
3612
+ '05103': 'Ouachita',
3613
+ '05105': 'Perry',
3614
+ '05107': 'Phillips',
3615
+ '05109': 'Pike',
3616
+ '05111': 'Poinsett',
3617
+ '05113': 'Polk',
3618
+ '05115': 'Pope',
3619
+ '05117': 'Prairie',
3620
+ '05119': 'Pulaski',
3621
+ '05121': 'Randolph',
3622
+ '05123': 'St Francis',
3623
+ '05125': 'Saline',
3624
+ '05127': 'Scott',
3625
+ '05129': 'Searcy',
3626
+ '05131': 'Sebastian',
3627
+ '05133': 'Sevier',
3628
+ '05135': 'Sharp',
3629
+ '05137': 'Stone',
3630
+ '05139': 'Union',
3631
+ '05141': 'Van Buren',
3632
+ '05143': 'Washington',
3633
+ '05145': 'White',
3634
+ '05147': 'Woodruff',
3635
+ '05149': 'Yell',
3636
+ '06001': 'Alameda',
3637
+ '06003': 'Alpine',
3638
+ '06005': 'Amador',
3639
+ '06007': 'Butte',
3640
+ '06009': 'Calaveras',
3641
+ '06011': 'Colusa',
3642
+ '06013': 'Contra Costa',
3643
+ '06015': 'Del Norte',
3644
+ '06017': 'El Dorado',
3645
+ '06019': 'Fresno',
3646
+ '06021': 'Glenn',
3647
+ '06023': 'Humboldt',
3648
+ '06025': 'Imperial',
3649
+ '06027': 'Inyo',
3650
+ '06029': 'Kern',
3651
+ '06031': 'Kings',
3652
+ '06033': 'Lake',
3653
+ '06035': 'Lassen',
3654
+ '06037': 'Los Angeles',
3655
+ '06039': 'Madera',
3656
+ '06041': 'Marin',
3657
+ '06043': 'Mariposa',
3658
+ '06045': 'Mendocino',
3659
+ '06047': 'Merced',
3660
+ '06049': 'Modoc',
3661
+ '06051': 'Mono',
3662
+ '06053': 'Monterey',
3663
+ '06055': 'Napa',
3664
+ '06057': 'Nevada',
3665
+ '06059': 'Orange',
3666
+ '06061': 'Placer',
3667
+ '06063': 'Plumas',
3668
+ '06065': 'Riverside',
3669
+ '06067': 'Sacramento',
3670
+ '06069': 'San Benito',
3671
+ '06071': 'San Bernardino',
3672
+ '06073': 'San Diego',
3673
+ '06075': 'San Francisco',
3674
+ '06077': 'San Joaquin',
3675
+ '06079': 'San Luis Obispo',
3676
+ '06081': 'San Mateo',
3677
+ '06083': 'Santa Barbara',
3678
+ '06085': 'Santa Clara',
3679
+ '06087': 'Santa Cruz',
3680
+ '06089': 'Shasta',
3681
+ '06091': 'Sierra',
3682
+ '06093': 'Siskiyou',
3683
+ '06095': 'Solano',
3684
+ '06097': 'Sonoma',
3685
+ '06099': 'Stanislaus',
3686
+ '06101': 'Sutter',
3687
+ '06103': 'Tehama',
3688
+ '06105': 'Trinity',
3689
+ '06107': 'Tulare',
3690
+ '06109': 'Tuolumne',
3691
+ '06111': 'Ventura',
3692
+ '06113': 'Yolo',
3693
+ '06115': 'Yuba',
3694
+ '08001': 'Adams',
3695
+ '08003': 'Alamosa',
3696
+ '08005': 'Arapahoe',
3697
+ '08007': 'Archuleta',
3698
+ '08009': 'Baca',
3699
+ '08011': 'Bent',
3700
+ '08013': 'Boulder',
3701
+ '08015': 'Chaffee',
3702
+ '08017': 'Cheyenne',
3703
+ '08019': 'Clear Creek',
3704
+ '08021': 'Conejos',
3705
+ '08023': 'Costilla',
3706
+ '08025': 'Crowley',
3707
+ '08027': 'Custer',
3708
+ '08029': 'Delta',
3709
+ '08031': 'Denver',
3710
+ '08033': 'Dolores',
3711
+ '08035': 'Douglas',
3712
+ '08037': 'Eagle',
3713
+ '08039': 'Elbert',
3714
+ '08041': 'El Paso',
3715
+ '08043': 'Fremont',
3716
+ '08045': 'Garfield',
3717
+ '08047': 'Gilpin',
3718
+ '08049': 'Grand',
3719
+ '08051': 'Gunnison',
3720
+ '08053': 'Hinsdale',
3721
+ '08055': 'Huerfano',
3722
+ '08057': 'Jackson',
3723
+ '08059': 'Jefferson',
3724
+ '08061': 'Kiowa',
3725
+ '08063': 'Kit Carson',
3726
+ '08065': 'Lake',
3727
+ '08067': 'La Plata',
3728
+ '08069': 'Larimer',
3729
+ '08071': 'Las Animas',
3730
+ '08073': 'Lincoln',
3731
+ '08075': 'Logan',
3732
+ '08077': 'Mesa',
3733
+ '08079': 'Mineral',
3734
+ '08081': 'Moffat',
3735
+ '08083': 'Montezuma',
3736
+ '08085': 'Montrose',
3737
+ '08087': 'Morgan',
3738
+ '08089': 'Otero',
3739
+ '08091': 'Ouray',
3740
+ '08093': 'Park',
3741
+ '08095': 'Phillips',
3742
+ '08097': 'Pitkin',
3743
+ '08099': 'Prowers',
3744
+ '08101': 'Pueblo',
3745
+ '08103': 'Rio Blanco',
3746
+ '08105': 'Rio Grande',
3747
+ '08107': 'Routt',
3748
+ '08109': 'Saguache',
3749
+ '08111': 'San Juan',
3750
+ '08113': 'San Miguel',
3751
+ '08115': 'Sedgwick',
3752
+ '08117': 'Summit',
3753
+ '08119': 'Teller',
3754
+ '08121': 'Washington',
3755
+ '08123': 'Weld',
3756
+ '08125': 'Yuma',
3757
+ '09001': 'Fairfield',
3758
+ '09003': 'Hartford',
3759
+ '09005': 'Litchfield',
3760
+ '09007': 'Middlesex',
3761
+ '09009': 'New Haven',
3762
+ '09011': 'New London',
3763
+ '09013': 'Tolland',
3764
+ '09015': 'Windham',
3765
+ '46102': 'Oglala Lakota County',
3766
+ '02158': 'Kusilvak CA',
3767
+ '02105': 'Hoonah–Angoon CA',
3768
+ '02230': 'Skagway Muny',
3769
+ '02198': 'Prince of Wales–Hyder CA',
3770
+ '02275': 'Wrangell City&Bor',
3771
+ '72039': 'Ciales Municipality',
3772
+ '72069': 'Humacao Municipality',
3773
+ '60010': 'Eastern District',
3774
+ '02195': 'Petersburg CA'
3775
+ }