-
Notifications
You must be signed in to change notification settings - Fork 2
/
US_County_Level_Presidential_Results_04-16.csv
We can't make this file beautiful and searchable because it's too large.
12435 lines (12435 loc) · 826 KB
/
US_County_Level_Presidential_Results_04-16.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
county_name,county_num,dem_margin,dem_num,fips_code,rep_num,state,turnout,vap,year,state_electoral_votes
Autauga County,23973,-0.4595,6363,01001,17379,AL,0.5865,40874,2012,9
Baldwin County,85491,-0.5567,18424,01003,66016,AL,0.5799,147416,2012,9
Barbour County,11517,0.0314,5912,01005,5550,AL,0.5398,21334,2012,9
Bibb County,8420,-0.4667,2202,01007,6132,AL,0.4731,17796,2012,9
Blount County,24060,-0.7393,2970,01009,20757,AL,0.5484,43876,2012,9
Bullock County,5322,0.528,4061,01011,1251,AL,0.6315,8427,2012,9
Butler County,9502,-0.075,4374,01013,5087,AL,0.6047,15714,2012,9
Calhoun County,46364,-0.3185,15511,01015,30278,AL,0.5097,90966,2012,9
Chambers County,14629,-0.0516,6871,01017,7626,AL,0.5482,26685,2012,9
Cherokee County,9792,-0.5488,2132,01019,7506,AL,0.476,20571,2012,9
Chilton County,17485,-0.6025,3397,01021,13932,AL,0.5298,33002,2012,9
Choctaw County,7976,-0.0459,3786,01023,4152,AL,0.7491,10648,2012,9
Clarke County,13860,-0.082,6334,01025,7470,AL,0.7183,19295,2012,9
Clay County,6679,-0.4552,1777,01027,4817,AL,0.6366,10492,2012,9
Cleburne County,6319,-0.6806,971,01029,5272,AL,0.5511,11466,2012,9
Coffee County,19821,-0.4914,4925,01031,14666,AL,0.5085,38981,2012,9
Colbert County,23444,-0.2035,9166,01033,13936,AL,0.5507,42571,2012,9
Conecuh County,7025,0.0165,3555,01035,3439,AL,0.6946,10114,2012,9
Coosa County,5282,-0.1624,2191,01037,3049,AL,0.5826,9066,2012,9
Covington County,15439,-0.5826,3158,01039,12153,AL,0.5246,29432,2012,9
Crenshaw County,6424,-0.3551,2050,01041,4331,AL,0.5993,10719,2012,9
Cullman County,34555,-0.693,5052,01043,28999,AL,0.5559,62156,2012,9
Dale County,18601,-0.4205,5286,01045,13108,AL,0.4876,38151,2012,9
Dallas County,20964,0.3971,14612,01047,6288,AL,0.6601,31761,2012,9
DeKalb County,23950,-0.5466,5239,01049,18331,AL,0.4511,53093,2012,9
Elmore County,35546,-0.4867,8954,01051,26253,AL,0.5754,61772,2012,9
Escambia County,14894,-0.255,5489,01053,9287,AL,0.5043,29533,2012,9
Etowah County,42624,-0.383,12803,01055,29130,AL,0.5277,80777,2012,9
Fayette County,7958,-0.5324,1817,01057,6054,AL,0.5992,13280,2012,9
Franklin County,10881,-0.404,3171,01059,7567,AL,0.4555,23889,2012,9
Geneva County,11331,-0.6298,2039,01061,9175,AL,0.5391,21020,2012,9
Greene County,5343,0.6957,4521,01063,804,AL,0.7885,6776,2012,9
Hale County,8647,0.2545,5411,01065,3210,AL,0.7375,11724,2012,9
Henry County,8766,-0.2903,3083,01067,5628,AL,0.6501,13484,2012,9
Houston County,41984,-0.4026,12367,01069,29270,AL,0.5353,78434,2012,9
Jackson County,20632,-0.4177,5822,01071,14439,AL,0.4993,41318,2012,9
Jefferson County,304523,0.0597,159876,01073,141683,AL,0.6029,505125,2012,9
Lamar County,7176,-0.5311,1646,01075,5457,AL,0.6446,11132,2012,9
Lauderdale County,37032,-0.3078,12511,01077,23911,AL,0.5051,73320,2012,9
Lawrence County,14148,-0.2689,5069,01079,8874,AL,0.5396,26218,2012,9
Lee County,54496,-0.1984,21381,01081,32194,AL,0.4714,115603,2012,9
Limestone County,35540,-0.4352,9829,01083,25295,AL,0.5334,66624,2012,9
Lowndes County,7523,0.5305,5747,01085,1756,AL,0.9062,8302,2012,9
Macon County,10396,0.742,9045,01087,1331,AL,0.6278,16559,2012,9
Madison County,155428,-0.1857,62015,01089,90884,AL,0.5888,263969,2012,9
Marengo County,11543,0.072,6167,01091,5336,AL,0.7382,15637,2012,9
Marion County,12129,-0.6141,2249,01093,9697,AL,0.5063,23955,2012,9
Marshall County,32644,-0.5994,6299,01095,25867,AL,0.4607,70851,2012,9
Mobile County,175140,-0.0921,78760,01097,94893,AL,0.5596,312973,2012,9
Monroe County,10717,-0.0772,4914,01099,5741,AL,0.6256,17130,2012,9
Montgomery County,102067,0.2425,63085,01101,38332,AL,0.5892,173221,2012,9
Morgan County,49459,-0.4438,13439,01103,35391,AL,0.5385,91846,2012,9
Perry County,6101,0.5019,4568,01105,1506,AL,0.785,7772,2012,9
Pickens County,9621,-0.0695,4455,01107,5124,AL,0.6418,14991,2012,9
Pike County,14123,-0.1365,6035,01109,7963,AL,0.532,26548,2012,9
Randolph County,10421,-0.3979,3078,01111,7224,AL,0.5959,17487,2012,9
Russell County,18910,0.1175,10500,01113,8278,AL,0.4381,43161,2012,9
St. Clair County,35235,-0.6593,5801,01115,29031,AL,0.5404,65198,2012,9
Shelby County,92742,-0.5541,20051,01117,71436,AL,0.6148,150842,2012,9
Sumter County,7030,0.5455,5421,01119,1586,AL,0.6581,10683,2012,9
Talladega County,33416,-0.1598,13905,01121,19246,AL,0.5275,63347,2012,9
Tallapoosa County,18851,-0.3224,6319,01123,12396,AL,0.5857,32186,2012,9
Tuscaloosa County,78772,-0.1739,32048,01125,45748,AL,0.5029,156650,2012,9
Walker County,28585,-0.528,6557,01127,21651,AL,0.5567,51347,2012,9
Washington County,8787,-0.3169,2976,01129,5761,AL,0.6738,13041,2012,9
Wilcox County,6555,0.4865,4868,01131,1679,AL,0.7746,8462,2012,9
Winston County,9728,-0.7222,1286,01133,8312,AL,0.5106,19053,2012,9
Apache County,25917,0.3433,17147,04001,8250,AZ,0.5095,50871,2012,11
Cochise County,49201,-0.2226,18546,04003,29497,AZ,0.4804,102423,2012,11
Coconino County,51962,0.1547,29257,04005,21220,AZ,0.4933,105345,2012,11
Gila County,21595,-0.2666,7697,04007,13455,AZ,0.5139,42024,2012,11
Graham County,11905,-0.3752,3609,04009,8076,AZ,0.4482,26561,2012,11
Greenlee County,2986,-0.0944,1310,04011,1592,AZ,0.48,6221,2012,11
La Paz County,5735,-0.3198,1880,04012,3714,AZ,0.341,16820,2012,11
Maricopa County,1380959,-0.1069,602288,04013,749885,AZ,0.4703,2936053,2012,11
Mohave County,70328,-0.4214,19533,04015,49168,AZ,0.4304,163406,2012,11
Navajo County,37465,-0.0784,16945,04017,19884,AZ,0.4899,76470,2012,11
Pima County,383173,0.0691,201251,04019,174779,AZ,0.4967,771485,2012,11
Pinal County,108682,-0.1635,44306,04021,62079,AZ,0.3799,286087,2012,11
Santa Cruz County,13911,0.3775,9486,04023,4235,AZ,0.4141,33597,2012,11
Yavapai County,100667,-0.3035,33918,04025,64468,AZ,0.5788,173930,2012,11
Yuma County,42073,-0.1258,18059,04027,23352,AZ,0.2843,147965,2012,11
Arkansas County,6494,-0.2221,2455,05001,3897,AR,0.4468,14536,2012,6
Ashley County,7921,-0.2535,2859,05003,4867,AR,0.4837,16377,2012,6
Baxter County,19339,-0.4404,5172,05005,13688,AR,0.5738,33706,2012,6
Benton County,79257,-0.4039,22636,05007,54646,AR,0.4684,169198,2012,6
Boone County,15391,-0.48,3772,05009,11159,AR,0.5348,28780,2012,6
Bradley County,3652,-0.1876,1449,05011,2134,AR,0.4209,8677,2012,6
Calhoun County,2174,-0.3671,660,05013,1458,AR,0.5022,4329,2012,6
Carroll County,10183,-0.2385,3696,05015,6125,AR,0.4759,21398,2012,6
Chicot County,4361,0.2245,2649,05017,1670,AR,0.4952,8807,2012,6
Clark County,8409,-0.0633,3811,05019,4343,AR,0.4586,18338,2012,6
Clay County,5110,-0.291,1738,05021,3225,AR,0.4172,12247,2012,6
Cleburne County,11647,-0.5214,2620,05023,8693,AR,0.5626,20702,2012,6
Cleveland County,3266,-0.4495,845,05025,2313,AR,0.4993,6541,2012,6
Columbia County,9455,-0.2362,3557,05027,5790,AR,0.4961,19058,2012,6
Conway County,7730,-0.1952,3005,05029,4514,AR,0.4758,16247,2012,6
Craighead County,31700,-0.3099,10527,05031,20350,AR,0.4218,75154,2012,6
Crawford County,20591,-0.4985,4881,05033,15145,AR,0.4472,46048,2012,6
Crittenden County,16716,0.1489,9487,05035,6998,AR,0.4656,35904,2012,6
Cross County,6681,-0.2979,2279,05037,4269,AR,0.5029,13285,2012,6
Dallas County,3084,-0.1064,1337,05039,1665,AR,0.5025,6137,2012,6
Desha County,4420,0.1238,2443,05041,1896,AR,0.4739,9326,2012,6
Drew County,6633,-0.1895,2630,05043,3887,AR,0.4582,14476,2012,6
Faulkner County,41460,-0.316,13621,05045,26722,AR,0.4613,89882,2012,6
Franklin County,6540,-0.4442,1726,05047,4631,AR,0.4803,13617,2012,6
Fulton County,4522,-0.331,1452,05049,2949,AR,0.4642,9742,2012,6
Garland County,40728,-0.2998,13804,05051,26014,AR,0.5312,76670,2012,6
Grant County,6479,-0.5188,1468,05053,4829,AR,0.4717,13735,2012,6
Greene County,13761,-0.3685,4000,05055,9071,AR,0.4258,32316,2012,6
Hempstead County,6921,-0.2624,2468,05057,4284,AR,0.4208,16446,2012,6
Hot Spring County,11260,-0.2901,3830,05059,7097,AR,0.4334,25982,2012,6
Howard County,4462,-0.3185,1471,05061,2892,AR,0.4405,10129,2012,6
Independence County,12397,-0.4394,3281,05063,8728,AR,0.4423,28030,2012,6
Izard County,5278,-0.3886,1524,05065,3575,AR,0.4816,10960,2012,6
Jackson County,5347,-0.1827,2095,05067,3072,AR,0.3825,13979,2012,6
Jefferson County,27383,0.2903,17470,05069,9520,AR,0.4798,57070,2012,6
Johnson County,8098,-0.2797,2799,05071,5064,AR,0.416,19467,2012,6
Lafayette County,2929,-0.1844,1173,05073,1713,AR,0.5015,5841,2012,6
Lawrence County,5540,-0.3155,1788,05075,3536,AR,0.4203,13182,2012,6
Lee County,3424,0.2415,2107,05077,1280,AR,0.4226,8102,2012,6
Lincoln County,3726,-0.2077,1425,05079,2199,AR,0.3222,11566,2012,6
Little River County,5051,-0.3629,1552,05081,3385,AR,0.5114,9876,2012,6
Logan County,7331,-0.4188,2009,05083,5079,AR,0.4348,16859,2012,6
Lonoke County,24114,-0.5082,5625,05085,17880,AR,0.4712,51176,2012,6
Madison County,6568,-0.3295,2099,05087,4263,AR,0.551,11920,2012,6
Marion County,7051,-0.3882,2037,05089,4774,AR,0.5147,13700,2012,6
Miller County,15329,-0.3982,4518,05091,10622,AR,0.4636,33066,2012,6
Mississippi County,13375,-0.0102,6467,05093,6603,AR,0.4044,33074,2012,6
Monroe County,3230,-0.0006,1583,05095,1585,AR,0.527,6129,2012,6
Montgomery County,3404,-0.4257,920,05097,2369,AR,0.4572,7445,2012,6
Nevada County,3384,-0.2015,1314,05099,1996,AR,0.4939,6851,2012,6
Newton County,3661,-0.4138,993,05101,2508,AR,0.5671,6456,2012,6
Ouachita County,10315,-0.0861,4633,05103,5521,AR,0.5278,19543,2012,6
Perry County,3938,-0.354,1187,05105,2581,AR,0.4888,8057,2012,6
Phillips County,7930,0.3284,5202,05107,2598,AR,0.5262,15069,2012,6
Pike County,3788,-0.5269,851,05109,2847,AR,0.4429,8552,2012,6
Poinsett County,7560,-0.3418,2390,05111,4974,AR,0.4094,18467,2012,6
Polk County,7726,-0.5694,1556,05113,5955,AR,0.4932,15665,2012,6
Pope County,20439,-0.4715,5126,05115,14763,AR,0.4233,48282,2012,6
Prairie County,3141,-0.4053,880,05117,2153,AR,0.4701,6681,2012,6
Pulaski County,159381,0.1146,87248,05119,68984,AR,0.5384,296034,2012,6
Randolph County,5956,-0.2779,2046,05121,3701,AR,0.4315,13804,2012,6
Saint Francis County,8362,0.1844,4910,05123,3368,AR,0.3918,21342,2012,6
Saline County,47062,-0.427,12869,05125,32963,AR,0.5546,84865,2012,6
Scott County,3640,-0.4764,897,05127,2631,AR,0.4411,8252,2012,6
Searcy County,3694,-0.5103,814,05129,2699,AR,0.5791,6379,2012,6
Sebastian County,43362,-0.3708,13092,05131,29169,AR,0.453,95732,2012,6
Sevier County,4330,-0.4836,1042,05133,3136,AR,0.3561,12160,2012,6
Sharp County,7283,-0.3884,2092,05135,4921,AR,0.54,13487,2012,6
Stone County,5354,-0.452,1356,05137,3776,AR,0.5371,9969,2012,6
Union County,17177,-0.2622,6196,05139,10699,AR,0.552,31116,2012,6
Van Buren County,6430,-0.3939,1832,05141,4365,AR,0.4698,13686,2012,6
Washington County,70460,-0.1625,28236,05143,39688,AR,0.4458,158057,2012,6
White County,26514,-0.5373,5765,05145,20011,AR,0.4418,60017,2012,6
Woodruff County,2685,0.0421,1340,05147,1227,AR,0.4893,5487,2012,6
Yell County,5974,-0.3883,1722,05149,4042,AR,0.3674,16259,2012,6
Alameda County,596893,0.6056,469684,06001,108182,CA,0.4912,1215255,2012,55
Alpine County,654,0.2339,389,06003,236,CA,0.7423,881,2012,55
Amador County,17693,-0.195,6830,06005,10281,CA,0.565,31316,2012,55
Butte County,91021,-0.0199,42669,06007,44479,CA,0.518,175701,2012,55
Calaveras County,21862,-0.169,8670,06009,12365,CA,0.5998,36451,2012,55
Colusa County,6045,-0.2129,2314,06011,3601,CA,0.3964,15249,2012,55
Contra Costa County,439145,0.3514,290824,06013,136517,CA,0.5358,819630,2012,55
Del Norte County,8770,-0.0938,3791,06015,4614,CA,0.395,22202,2012,55
El Dorado County,88998,-0.1776,35166,06017,50973,CA,0.6293,141419,2012,55
Fresno County,259697,0.0179,129129,06019,124490,CA,0.3872,670690,2012,55
Glenn County,9238,-0.2523,3301,06021,5632,CA,0.4552,20293,2012,55
Humboldt County,57686,0.271,34457,06023,18825,CA,0.5324,108342,2012,55
Imperial County,38565,0.3205,25136,06025,12777,CA,0.3044,126685,2012,55
Inyo County,8036,-0.1142,3422,06027,4340,CA,0.5513,14576,2012,55
Kern County,222189,-0.1671,89495,06029,126618,CA,0.3692,601843,2012,55
Kings County,31418,-0.1493,12979,06031,17671,CA,0.2866,109620,2012,55
Lake County,23391,0.1694,13163,06033,9200,CA,0.4604,50807,2012,55
Lassen County,10725,-0.3956,3053,06035,7296,CA,0.385,27858,2012,55
Los Angeles County,3181067,0.4186,2216903,06037,885333,CA,0.4171,7626796,2012,55
Madera County,39933,-0.1711,16018,06039,22852,CA,0.3655,109261,2012,55
Marin County,134731,0.5123,99896,06041,30880,CA,0.6634,203098,2012,55
Mariposa County,9038,-0.1817,3498,06043,5140,CA,0.6116,14777,2012,55
Mendocino County,35137,0.3852,23193,06045,9658,CA,0.5146,68279,2012,55
Merced County,62222,0.0872,33005,06047,27581,CA,0.3421,181890,2012,55
Modoc County,4019,-0.4145,1111,06049,2777,CA,0.5456,7366,2012,55
Mono County,5181,0.0865,2733,06051,2285,CA,0.4532,11431,2012,55
Monterey County,123518,0.3686,82920,06053,37390,CA,0.394,313513,2012,55
Napa County,56968,0.2869,35870,06055,19526,CA,0.528,107888,2012,55
Nevada County,51676,-0.0063,24663,06057,24986,CA,0.6437,80285,2012,55
Orange County,1122664,-0.0623,512440,06059,582332,CA,0.4758,2359635,2012,55
Placer County,171711,-0.1928,66818,06061,99921,CA,0.6228,275714,2012,55
Plumas County,10080,-0.1682,4026,06063,5721,CA,0.6333,15917,2012,55
Riverside County,663116,0.0165,329063,06065,318127,CA,0.4014,1651824,2012,55
Sacramento County,517582,0.1893,300503,06067,202514,CA,0.4756,1088184,2012,55
San Benito County,19081,0.2061,11276,06069,7343,CA,0.4648,41056,2012,55
San Bernardino County,582930,0.0733,305109,06071,262358,CA,0.3897,1495678,2012,55
San Diego County,1193949,0.0756,626957,06073,536726,CA,0.4858,2457628,2012,55
San Francisco County,361795,0.7038,301723,06075,47076,CA,0.5036,718359,2012,55
San Joaquin County,205364,0.1366,114121,06077,86071,CA,0.4091,501953,2012,55
San Luis Obispo County,125966,0.0102,61258,06079,59967,CA,0.5629,223783,2012,55
San Mateo County,285720,0.4666,206085,06081,72756,CA,0.4939,578540,2012,55
Santa Barbara County,163885,0.1801,94129,06083,64606,CA,0.492,333081,2012,55
Santa Clara County,644277,0.4283,450818,06085,174843,CA,0.4578,1407287,2012,55
Santa Cruz County,120385,0.5545,90805,06087,24047,CA,0.5687,211668,2012,55
Shasta County,76501,-0.2908,25819,06089,48067,CA,0.5487,139416,2012,55
Sierra County,1799,-0.224,653,06091,1056,CA,0.6997,2571,2012,55
Siskiyou County,19993,-0.1516,8046,06093,11077,CA,0.5687,35153,2012,55
Solano County,152840,0.2924,96783,06095,52092,CA,0.4754,321465,2012,55
Sonoma County,216865,0.4572,153942,06097,54784,CA,0.5611,386523,2012,55
Stanislaus County,155816,0.0274,77724,06099,73459,CA,0.4137,376671,2012,55
Sutter County,31083,-0.1908,12192,06101,18122,CA,0.4499,69094,2012,55
Tehama County,22977,-0.2742,7934,06103,14235,CA,0.4802,47845,2012,55
Trinity County,5739,-0.0073,2674,06105,2716,CA,0.5137,11172,2012,55
Tulare County,101279,-0.1501,41752,06107,56956,CA,0.33,306916,2012,55
Tuolumne County,24758,-0.1568,9998,06109,13880,CA,0.5515,44891,2012,55
Ventura County,327712,0.0701,170929,06111,147958,CA,0.5223,627438,2012,55
Yolo County,74671,0.3394,48715,06113,23368,CA,0.4673,159779,2012,55
Yuba County,19761,-0.1804,7711,06115,11275,CA,0.3784,52226,2012,55
Adams County,176893,0.1678,100649,08001,70972,CO,0.5344,331011,2012,9
Alamosa County,6715,0.1647,3811,08003,2705,CO,0.5469,12279,2012,9
Arapahoe County,285516,0.0992,153905,08005,125588,CO,0.638,447522,2012,9
Archuleta County,6734,-0.1772,2679,08007,3872,CO,0.6889,9775,2012,9
Baca County,2106,-0.5185,467,08009,1559,CO,0.7144,2948,2012,9
Bent County,1942,-0.1339,815,08011,1075,CO,0.4033,4815,2012,9
Boulder County,179499,0.4184,125091,08013,49981,CO,0.741,242252,2012,9
Broomfield County,32865,0.0596,16966,08014,15008,CO,0.7462,44045,2012,9
Chaffee County,10462,0.0015,5086,08015,5070,CO,0.687,15228,2012,9
Cheyenne County,1093,-0.656,172,08017,889,CO,0.7768,1407,2012,9
Clear Creek County,5743,0.12,3119,08019,2430,CO,0.7545,7612,2012,9
Conejos County,4101,0.0922,2213,08021,1835,CO,0.6854,5983,2012,9
Costilla County,1837,0.4867,1340,08023,446,CO,0.6339,2898,2012,9
Crowley County,1502,-0.259,535,08025,924,CO,0.3211,4677,2012,9
Custer County,2715,-0.3389,868,08027,1788,CO,0.7561,3591,2012,9
Delta County,15925,-0.3952,4622,08029,10915,CO,0.6662,23904,2012,9
Denver County,302418,0.4924,222018,08031,73111,CO,0.6042,500499,2012,9
Dolores County,1245,-0.4217,334,08033,859,CO,0.8037,1549,2012,9
Douglas County,168084,-0.2576,61094,08035,104397,CO,0.7978,210689,2012,9
Eagle County,22668,0.1492,12792,08037,9411,CO,0.5727,39581,2012,9
Elbert County,14178,-0.47,3603,08039,10266,CO,0.7931,17877,2012,9
El Paso County,290175,-0.2038,111819,08041,170952,CO,0.6042,480242,2012,9
Fremont County,20416,-0.3169,6704,08043,13174,CO,0.5223,39092,2012,9
Garfield County,24408,-0.0504,11305,08045,12535,CO,0.5861,41645,2012,9
Gilpin County,3338,0.1636,1892,08047,1346,CO,0.7393,4515,2012,9
Grand County,8187,-0.0695,3684,08049,4253,CO,0.7143,11462,2012,9
Gunnison County,8667,0.1965,5044,08051,3341,CO,0.685,12652,2012,9
Hinsdale County,600,-0.2067,229,08053,353,CO,0.9274,647,2012,9
Huerfano County,3723,0.0825,1953,08055,1646,CO,0.6753,5513,2012,9
Jackson County,848,-0.4528,216,08057,600,CO,0.7599,1116,2012,9
Jefferson County,311052,0.0485,159296,08059,144197,CO,0.7264,428238,2012,9
Kiowa County,821,-0.6809,118,08061,677,CO,0.7304,1124,2012,9
Kit Carson County,3702,-0.5259,838,08063,2785,CO,0.5889,6286,2012,9
Lake County,3040,0.2438,1839,08065,1098,CO,0.5491,5536,2012,9
La Plata County,29308,0.092,15489,08067,12794,CO,0.7002,41857,2012,9
Larimer County,180180,0.0576,92747,08069,82376,CO,0.732,246143,2012,9
Las Animas County,6862,0.0265,3445,08071,3263,CO,0.5744,11947,2012,9
Lincoln County,2287,-0.4963,552,08073,1687,CO,0.5256,4351,2012,9
Logan County,9124,-0.38,2712,08075,6179,CO,0.5207,17524,2012,9
Mesa County,72947,-0.3239,23846,08077,47472,CO,0.6411,113780,2012,9
Moffat County,6168,-0.5456,1330,08081,4695,CO,0.6326,9750,2012,9
Montezuma County,12318,-0.2321,4542,08083,7401,CO,0.6276,19628,2012,9
Montrose County,20130,-0.3683,6138,08085,13552,CO,0.6465,31135,2012,9
Morgan County,10777,-0.2496,3912,08087,6602,CO,0.5223,20633,2012,9
Otero County,8192,-0.0897,3647,08089,4382,CO,0.5798,14128,2012,9
Ouray County,3202,0.0515,1646,08091,1481,CO,0.8505,3765,2012,9
Park County,9366,-0.1467,3862,08093,5236,CO,0.7078,13232,2012,9
Phillips County,2265,-0.4631,588,08095,1637,CO,0.6859,3302,2012,9
Pitkin County,10075,0.3797,6849,08097,3024,CO,0.7023,14345,2012,9
Prowers County,4863,-0.3518,1519,08099,3230,CO,0.5365,9065,2012,9
Pueblo County,76419,0.1395,42551,08101,31894,CO,0.6228,122704,2012,9
Rio Blanco County,3369,-0.64,568,08103,2724,CO,0.6605,5101,2012,9
Rio Grande County,5533,-0.0795,2478,08105,2918,CO,0.6158,8985,2012,9
Routt County,13317,0.156,7547,08107,5469,CO,0.7165,18586,2012,9
Saguache County,2932,0.3073,1865,08109,964,CO,0.6086,4818,2012,9
San Juan County,506,0.1067,266,08111,212,CO,0.8562,591,2012,9
San Miguel County,4256,0.4319,2992,08113,1154,CO,0.6984,6094,2012,9
Sedgwick County,1338,-0.3453,419,08115,881,CO,0.6994,1913,2012,9
Summit County,15312,0.2466,9347,08117,5571,CO,0.6529,23452,2012,9
Teller County,13473,-0.3243,4333,08119,8702,CO,0.719,18738,2012,9
Washington County,2591,-0.6206,468,08121,2076,CO,0.7016,3693,2012,9
Weld County,116291,-0.1266,49050,08123,63775,CO,0.6045,192362,2012,9
Yuma County,4577,-0.5469,987,08125,3490,CO,0.6153,7439,2012,9
Fairfield County,396130,0.1063,217294,09001,175168,CT,0.5582,709624,2012,7
Hartford County,392240,0.2585,244639,09003,143238,CT,0.5617,698307,2012,7
Litchfield County,92427,-0.0362,43856,09005,47201,CT,0.6199,149104,2012,7
Middlesex County,83538,0.1588,47855,09007,34591,CT,0.6323,132111,2012,7
New Haven County,361059,0.2233,218998,09009,138364,CT,0.5331,677252,2012,7
New London County,115102,0.1827,67144,09011,46119,CT,0.5301,217121,2012,7
Tolland County,70991,0.1256,39366,09013,30450,CT,0.5807,122251,2012,7
Windham County,46588,0.1328,25957,09015,19768,CT,0.5025,92704,2012,7
Kent County,68680,0.0494,35527,10001,32135,DE,0.5399,127205,2012,3
New Castle County,252012,0.3407,167082,10003,81230,DE,0.5959,422882,2012,3
Sussex County,93229,-0.1303,39975,10005,52119,DE,0.5736,162541,2012,3
District of Columbia County,293764,0.8363,267070,11001,21381,DC,0.5568,527625,2012,3
Alachua County,120773,0.1731,69699,12001,48797,FL,0.5841,206768,2012,29
Baker County,11390,-0.5851,2311,12003,8975,FL,0.5651,20157,2012,29
Bay County,80101,-0.4348,22051,12005,56876,FL,0.5939,134865,2012,29
Bradford County,11664,-0.4196,3325,12007,8219,FL,0.5402,21594,2012,29
Brevard County,286428,-0.1268,122993,12009,159300,FL,0.6466,442956,2012,29
Broward County,757354,0.3489,508312,12011,244101,FL,0.5326,1421895,2012,29
Calhoun County,6183,-0.437,1664,12013,4366,FL,0.5327,11607,2012,29
Charlotte County,84923,-0.1424,35906,12015,47996,FL,0.604,140611,2012,29
Citrus County,74169,-0.2184,28460,12017,44662,FL,0.629,117907,2012,29
Clay County,96805,-0.4572,25759,12019,70022,FL,0.6648,145613,2012,29
Collier County,149324,-0.3002,51698,12021,96520,FL,0.5535,269765,2012,29
Columbia County,27227,-0.3661,8462,12023,18429,FL,0.5127,53100,2012,29
DeSoto County,9887,-0.1429,4174,12027,5587,FL,0.3621,27301,2012,29
Dixie County,6959,-0.4676,1798,12029,5052,FL,0.5359,12986,2012,29
Duval County,412733,-0.036,196737,12031,211615,FL,0.609,677719,2012,29
Escambia County,148967,-0.2049,58185,12033,88711,FL,0.6204,240099,2012,29
Flagler County,50707,-0.0742,23207,12035,26969,FL,0.6352,79824,2012,29
Franklin County,5494,-0.314,1845,12037,3570,FL,0.5664,9700,2012,29
Gadsden County,22525,0.4058,15770,12039,6630,FL,0.6268,35934,2012,29
Gilchrist County,7937,-0.508,1885,12041,5917,FL,0.5944,13354,2012,29
Glades County,4004,-0.1851,1603,12043,2344,FL,0.3731,10733,2012,29
Gulf County,7126,-0.4183,2014,12045,4995,FL,0.5397,13204,2012,29
Hamilton County,5420,-0.1679,2228,12047,3138,FL,0.4539,11942,2012,29
Hardee County,7244,-0.3083,2463,12049,4696,FL,0.3628,19969,2012,29
Hendry County,10215,-0.0591,4751,12051,5355,FL,0.3764,27138,2012,29
Hernando County,83928,-0.0847,37830,12053,44938,FL,0.6004,139791,2012,29
Highlands County,42541,-0.2296,16148,12055,25915,FL,0.5295,80336,2012,29
Hillsborough County,543429,0.0668,286467,12057,250186,FL,0.5527,983171,2012,29
Holmes County,8290,-0.6821,1264,12059,6919,FL,0.5291,15669,2012,29
Indian River County,71580,-0.2229,27492,12061,43450,FL,0.6222,115051,2012,29
Jackson County,20967,-0.2898,7342,12063,13418,FL,0.5281,39703,2012,29
Jefferson County,7820,0.0175,3945,12065,3808,FL,0.6719,11639,2012,29
Lafayette County,3406,-0.5816,687,12067,2668,FL,0.4848,7026,2012,29
Lake County,151144,-0.171,61799,12069,87643,FL,0.6251,241789,2012,29
Lee County,266598,-0.1651,110157,12071,154163,FL,0.5113,521409,2012,29
Leon County,148671,0.2359,90881,12073,55805,FL,0.647,229798,2012,29
Levy County,18457,-0.3216,6119,12075,12054,FL,0.5808,31776,2012,29
Liberty County,3289,-0.4132,942,12077,2301,FL,0.4997,6582,2012,29
Madison County,8727,-0.0341,4176,12079,4474,FL,0.5794,15063,2012,29
Manatee County,153866,-0.1243,66503,12081,85627,FL,0.5761,267071,2012,29
Marion County,161738,-0.1621,66831,12083,93043,FL,0.5971,270869,2012,29
Martin County,79037,-0.2287,30107,12085,48183,FL,0.6413,123244,2012,29
Miami-Dade County,879179,0.2371,541440,12086,332981,FL,0.4267,2060346,2012,29
Monroe County,39154,0.0043,19404,12087,19234,FL,0.6175,63409,2012,29
Nassau County,40625,-0.4844,10251,12089,29929,FL,0.6896,58909,2012,29
Okaloosa County,95075,-0.4917,23421,12091,70168,FL,0.6441,147598,2012,29
Okeechobee County,12367,-0.1999,4856,12093,7328,FL,0.41,30165,2012,29
Orange County,467303,0.1821,273665,12095,188589,FL,0.5047,925914,2012,29
Osceola County,108922,0.2446,67239,12097,40592,FL,0.5059,215298,2012,29
Palm Beach County,601439,0.17,349651,12099,247398,FL,0.5544,1084890,2012,29
Pasco County,214248,-0.0661,98263,12101,112427,FL,0.5743,373048,2012,29
Pinellas County,459112,0.0563,239104,12103,213258,FL,0.6025,762019,2012,29
Polk County,249442,-0.068,114622,12105,131577,FL,0.5262,474035,2012,29
Putnam County,31424,-0.2437,11667,12107,19326,FL,0.5511,57017,2012,29
St. Johns County,115035,-0.3766,35190,12109,78513,FL,0.7326,157028,2012,29
St. Lucie County,123301,0.0784,65869,12111,56202,FL,0.5544,222385,2012,29
Santa Rosa County,77060,-0.5245,17768,12113,58186,FL,0.632,121927,2012,29
Sarasota County,207961,-0.074,95119,12115,110504,FL,0.6369,326502,2012,29
Seminole County,209120,-0.0645,96445,12117,109943,FL,0.622,336180,2012,29
Sumter County,60546,-0.3489,19524,12119,40646,FL,0.6411,94446,2012,29
Suwannee County,17692,-0.4477,4751,12121,12672,FL,0.5184,34127,2012,29
Taylor County,9140,-0.3813,2764,12123,6249,FL,0.4965,18410,2012,29
Union County,5408,-0.4884,1339,12125,3980,FL,0.44,12292,2012,29
Volusia County,235254,-0.0117,114748,12127,117490,FL,0.5797,405800,2012,29
Wakulla County,14697,-0.28,5175,12129,9290,FL,0.6094,24117,2012,29
Walton County,28582,-0.5185,6671,12131,21490,FL,0.6255,45697,2012,29
Washington County,11042,-0.4726,2820,12133,8038,FL,0.5597,19727,2012,29
Appling County,7093,-0.4899,1758,13001,5233,GA,0.5162,13742,2012,16
Atkinson County,2907,-0.3467,930,13003,1938,GA,0.4926,5901,2012,16
Bacon County,3936,-0.5849,791,13005,3093,GA,0.477,8251,2012,16
Baker County,1591,0.0057,794,13007,785,GA,0.6136,2593,2012,16
Baldwin County,16270,0.0549,8483,13009,7589,GA,0.4356,37350,2012,16
Banks County,6204,-0.7373,780,13011,5354,GA,0.448,13848,2012,16
Barrow County,25270,-0.5025,6028,13013,18725,GA,0.4976,50788,2012,16
Bartow County,35897,-0.5148,8396,13015,26876,GA,0.4816,74541,2012,16
Ben Hill County,5970,-0.1481,2512,13017,3396,GA,0.4612,12945,2012,16
Berrien County,6224,-0.5736,1273,13019,4843,GA,0.4305,14458,2012,16
Bibb County,64803,0.2,38585,13021,25623,GA,0.5562,116502,2012,16
Bleckley County,4920,-0.4711,1269,13023,3587,GA,0.4898,10044,2012,16
Brantley County,6020,-0.6686,939,13025,4964,GA,0.435,13839,2012,16
Brooks County,6754,-0.0616,3138,13027,3554,GA,0.5563,12140,2012,16
Bryan County,13476,-0.4343,3707,13029,9560,GA,0.5883,22906,2012,16
Bulloch County,24133,-0.1898,9593,13031,14174,GA,0.4152,58119,2012,16
Burke County,9793,0.1127,5405,13033,4301,GA,0.5794,16901,2012,16
Butts County,9400,-0.3551,2968,13035,6306,GA,0.5132,18315,2012,16
Calhoun County,2189,0.1896,1298,13037,883,GA,0.4185,5230,2012,16
Camden County,18050,-0.2751,6377,13039,11343,GA,0.4744,38051,2012,16
Candler County,3531,-0.3362,1157,13043,2344,GA,0.4294,8224,2012,16
Carroll County,41672,-0.3742,12688,13045,28280,GA,0.4979,83692,2012,16
Catoosa County,23791,-0.5251,5365,13047,17858,GA,0.4837,49182,2012,16
Charlton County,3765,-0.3533,1197,13049,2527,GA,0.3511,10723,2012,16
Chatham County,108821,0.1198,60246,13051,47204,GA,0.5055,215291,2012,16
Chattahoochee County,1493,-0.004,729,13053,735,GA,0.1614,9250,2012,16
Chattooga County,7869,-0.4092,2232,13055,5452,GA,0.3957,19888,2012,16
Cherokee County,98439,-0.5757,19841,13057,76514,GA,0.6092,161588,2012,16
Clarke County,40515,0.2867,25431,13059,13815,GA,0.4081,99289,2012,16
Clay County,1403,0.2316,862,13061,537,GA,0.5771,2431,2012,16
Clayton County,96230,0.6995,81479,13063,14164,GA,0.5038,191015,2012,16
Clinch County,2475,-0.3014,852,13065,1598,GA,0.4967,4983,2012,16
Cobb County,310835,-0.1242,133124,13067,171722,GA,0.5858,530593,2012,16
Coffee County,14474,-0.2896,5057,13069,9248,GA,0.4498,32182,2012,16
Colquitt County,13347,-0.3948,3973,13071,9243,GA,0.3974,33584,2012,16
Columbia County,59071,-0.4285,16451,13073,41765,GA,0.6075,97229,2012,16
Cook County,6041,-0.3134,2042,13075,3935,GA,0.488,12379,2012,16
Coweta County,55718,-0.4394,15168,13077,39653,GA,0.5794,96158,2012,16
Crawford County,5144,-0.3231,1706,13079,3368,GA,0.5233,9829,2012,16
Crisp County,7400,-0.1372,3167,13081,4182,GA,0.4188,17668,2012,16
Dade County,6047,-0.506,1411,13083,4471,GA,0.461,13118,2012,16
Dawson County,10264,-0.741,1241,13085,8847,GA,0.589,17425,2012,16
Decatur County,10500,-0.1174,4591,13087,5824,GA,0.5104,20572,2012,16
DeKalb County,306858,0.5665,238224,13089,64392,GA,0.5676,540583,2012,16
Dodge County,7754,-0.3575,2442,13091,5214,GA,0.4653,16666,2012,16
Dooly County,4302,0.0697,2285,13093,1985,GA,0.3784,11370,2012,16
Dougherty County,37975,0.3909,26295,13095,11449,GA,0.5377,70623,2012,16
Douglas County,55379,0.0397,28441,13097,26241,GA,0.5705,97064,2012,16
Early County,5359,0.0388,2765,13099,2557,GA,0.6779,7905,2012,16
Echols County,1105,-0.6733,173,13101,917,GA,0.3797,2910,2012,16
Effingham County,20854,-0.5106,4947,13103,15596,GA,0.5388,38706,2012,16
Elbert County,8156,-0.2057,3181,13105,4859,GA,0.5365,15201,2012,16
Emanuel County,8089,-0.2686,2927,13107,5100,GA,0.4708,17183,2012,16
Evans County,3565,-0.2805,1268,13109,2268,GA,0.4533,7864,2012,16
Fannin County,10060,-0.5794,2028,13111,7857,GA,0.525,19161,2012,16
Fayette County,58728,-0.3123,19736,13113,38075,GA,0.7274,80737,2012,16
Floyd County,32927,-0.3976,9640,13115,22733,GA,0.4502,73145,2012,16
Forsyth County,81900,-0.6268,14571,13117,65908,GA,0.6206,131977,2012,16
Franklin County,7777,-0.5934,1499,13119,6114,GA,0.4555,17074,2012,16
Fulton County,398346,0.2971,255470,13121,137124,GA,0.5312,749902,2012,16
Gilmer County,11053,-0.6304,1958,13123,8926,GA,0.4976,22211,2012,16
Glascock County,1336,-0.7178,176,13125,1135,GA,0.5749,2324,2012,16
Glynn County,33191,-0.2694,11950,13127,20893,GA,0.5351,62023,2012,16
Gordon County,16939,-0.576,3440,13129,13197,GA,0.4114,41171,2012,16
Grady County,9413,-0.2661,3419,13131,5924,GA,0.4982,18894,2012,16
Greene County,8327,-0.2246,3201,13133,5071,GA,0.6438,12935,2012,16
Gwinnett County,297356,-0.092,132509,13135,159855,GA,0.4946,601234,2012,16
Habersham County,14676,-0.6722,2301,13137,12166,GA,0.4401,33345,2012,16
Hall County,61512,-0.5606,12999,13139,47481,GA,0.4573,134498,2012,16
Hancock County,4090,0.6208,3308,13141,769,GA,0.5461,7489,2012,16
Haralson County,10407,-0.6397,1789,13143,8446,GA,0.4867,21383,2012,16
Harris County,15521,-0.4544,4145,13145,11197,GA,0.6159,25200,2012,16
Hart County,9529,-0.3827,2870,13147,6517,GA,0.4768,19985,2012,16
Heard County,4178,-0.5294,948,13149,3160,GA,0.4749,8797,2012,16
Henry County,91531,-0.0329,43761,13151,46774,GA,0.6102,149998,2012,16
Houston County,58175,-0.2056,22702,13153,34662,GA,0.5383,108067,2012,16
Irwin County,3714,-0.3761,1141,13155,2538,GA,0.4985,7450,2012,16
Jackson County,23745,-0.6274,4238,13157,19135,GA,0.531,44718,2012,16
Jasper County,6042,-0.3792,1845,13159,4136,GA,0.5903,10236,2012,16
Jeff Davis County,5339,-0.5096,1275,13161,3996,GA,0.4878,10944,2012,16
Jefferson County,7301,0.1729,4261,13163,2999,GA,0.5909,12356,2012,16
Jenkins County,3394,-0.1176,1488,13165,1887,GA,0.4824,7036,2012,16
Johnson County,3776,-0.3006,1305,13167,2440,GA,0.4803,7862,2012,16
Jones County,12119,-0.2863,4274,13169,7744,GA,0.5624,21550,2012,16
Lamar County,7612,-0.3018,2602,13171,4899,GA,0.5361,14199,2012,16
Lanier County,2978,-0.2371,1114,13173,1820,GA,0.3798,7842,2012,16
Laurens County,19639,-0.2259,7513,13175,11950,GA,0.5463,35950,2012,16
Lee County,13646,-0.5216,3196,13177,10314,GA,0.6532,20890,2012,16
Liberty County,16195,0.3021,10457,13179,5565,GA,0.3495,46343,2012,16
Lincoln County,4430,-0.2756,1586,13181,2807,GA,0.7074,6262,2012,16
Long County,3815,-0.2265,1442,13183,2306,GA,0.3353,11377,2012,16
Lowndes County,39221,-0.0983,17470,13185,21327,GA,0.4517,86830,2012,16
Lumpkin County,10948,-0.6021,2055,13187,8647,GA,0.445,24601,2012,16
McDuffie County,9605,-0.149,4044,13189,5475,GA,0.5975,16076,2012,16
McIntosh County,6354,-0.0858,2864,13191,3409,GA,0.571,11128,2012,16
Macon County,4786,0.3481,3211,13193,1545,GA,0.4236,11299,2012,16
Madison County,11133,-0.5344,2494,13195,8443,GA,0.5189,21457,2012,16
Marion County,3179,-0.101,1412,13197,1733,GA,0.475,6693,2012,16
Meriwether County,9274,-0.0566,4331,13199,4856,GA,0.5623,16493,2012,16
Miller County,2780,-0.3788,852,13201,1905,GA,0.6114,4547,2012,16
Mitchell County,8281,-0.0089,4081,13205,4155,GA,0.4732,17500,2012,16
Monroe County,12295,-0.3722,3785,13207,8361,GA,0.5886,20889,2012,16
Montgomery County,3835,-0.3982,1135,13209,2662,GA,0.5532,6932,2012,16
Morgan County,9041,-0.3797,2753,13211,6186,GA,0.6679,13537,2012,16
Murray County,11255,-0.5243,2542,13213,8443,GA,0.3864,29127,2012,16
Muscogee County,70715,0.213,42573,13215,27510,GA,0.4726,149624,2012,16
Newton County,43309,0.0201,21851,13217,20982,GA,0.5923,73114,2012,16
Oconee County,17859,-0.4859,4421,13219,13098,GA,0.7318,24404,2012,16
Oglethorpe County,6285,-0.3718,1914,13221,4251,GA,0.5554,11316,2012,16
Paulding County,57543,-0.4348,15825,13223,40846,GA,0.5582,103088,2012,16
Peach County,11537,0.0746,6148,13225,5287,GA,0.5386,21420,2012,16
Pickens County,12702,-0.6749,1975,13227,10547,GA,0.5522,23001,2012,16
Pierce County,6855,-0.6627,1124,13229,5667,GA,0.4887,14027,2012,16
Pike County,8139,-0.6527,1356,13231,6668,GA,0.6165,13203,2012,16
Polk County,13648,-0.454,3615,13233,9811,GA,0.4509,30269,2012,16
Pulaski County,3685,-0.3324,1219,13235,2444,GA,0.3947,9337,2012,16
Putnam County,9229,-0.3564,2926,13237,6215,GA,0.5565,16585,2012,16
Quitman County,1128,0.0904,612,13239,510,GA,0.5832,1934,2012,16
Rabun County,7465,-0.562,1559,13241,5754,GA,0.5701,13094,2012,16
Randolph County,3060,0.1631,1770,13243,1271,GA,0.5365,5704,2012,16
Richmond County,79174,0.3374,52560,13245,25845,GA,0.5152,153683,2012,16
Rockdale County,38156,0.1653,22023,13247,15716,GA,0.603,63272,2012,16
Schley County,1752,-0.4783,448,13249,1286,GA,0.4902,3574,2012,16
Screven County,6111,-0.0839,2774,13251,3287,GA,0.5637,10841,2012,16
Seminole County,3777,-0.2031,1478,13253,2245,GA,0.5476,6897,2012,16
Spalding County,25139,-0.1994,9898,13255,14911,GA,0.5242,47957,2012,16
Stephens County,9534,-0.5339,2131,13257,7221,GA,0.4783,19932,2012,16
Stewart County,2076,0.2784,1323,13259,745,GA,0.3972,5226,2012,16
Sumter County,11856,0.0841,6375,13261,5378,GA,0.4982,23800,2012,16
Talbot County,3493,0.3043,2265,13263,1202,GA,0.6638,5262,2012,16
Taliaferro County,963,0.325,636,13265,323,GA,0.7039,1368,2012,16
Tattnall County,6677,-0.4207,1897,13267,4706,GA,0.3355,19902,2012,16
Taylor County,3540,-0.1062,1572,13269,1948,GA,0.5499,6438,2012,16
Telfair County,4338,-0.1556,1805,13271,2480,GA,0.3252,13339,2012,16
Terrell County,4407,0.1611,2544,13273,1834,GA,0.6288,7009,2012,16
Thomas County,18992,-0.1844,7653,13275,11156,GA,0.564,33673,2012,16
Tift County,13942,-0.3246,4660,13277,9185,GA,0.4529,30786,2012,16
Toombs County,9357,-0.4038,2746,13279,6524,GA,0.477,19618,2012,16
Towns County,6244,-0.577,1273,13281,4876,GA,0.697,8958,2012,16
Treutlen County,2751,-0.2101,1074,13283,1652,GA,0.5374,5119,2012,16
Troup County,26035,-0.1779,10547,13285,15179,GA,0.5144,50614,2012,16
Turner County,3567,-0.1452,1510,13287,2028,GA,0.5648,6315,2012,16
Twiggs County,4205,0.0863,2270,13289,1907,GA,0.6112,6880,2012,16
Union County,11109,-0.5972,2139,13291,8773,GA,0.6248,17779,2012,16
Upson County,11279,-0.29,3959,13293,7230,GA,0.5493,20535,2012,16
Walker County,21996,-0.4989,5274,13295,16247,GA,0.419,52494,2012,16
Walton County,37677,-0.5544,8148,13297,29036,GA,0.6028,62508,2012,16
Ware County,11953,-0.3381,3900,13299,7941,GA,0.4362,27404,2012,16
Warren County,2527,0.2133,1529,13301,990,GA,0.5817,4344,2012,16
Washington County,8817,0.077,4714,13303,4035,GA,0.5474,16108,2012,16
Wayne County,10288,-0.4822,2596,13305,7557,GA,0.4488,22923,2012,16
Webster County,1188,-0.016,582,13307,601,GA,0.5533,2147,2012,16
Wheeler County,2165,-0.2744,772,13309,1366,GA,0.3298,6564,2012,16
White County,10523,-0.6633,1671,13311,8651,GA,0.489,21518,2012,16
Whitfield County,26968,-0.4485,7210,13313,19305,GA,0.3615,74594,2012,16
Wilcox County,3132,-0.317,1060,13315,2053,GA,0.4319,7251,2012,16
Wilkes County,4765,-0.115,2087,13317,2635,GA,0.6086,7829,2012,16
Wilkinson County,4456,-0.0146,2181,13319,2246,GA,0.6134,7265,2012,16
Worth County,8436,-0.4009,2487,13321,5869,GA,0.515,16381,2012,16
Hawaii County,63454,0.5117,47224,15001,14753,HI,0.4331,146496,2012,4
Honolulu County,296742,0.3905,204349,15003,88461,HI,0.3887,763515,2012,4
Kauai County,25372,0.4935,18641,15007,6121,HI,0.4769,53197,2012,4
Maui County,48653,0.5025,36052,15009,11602,HI,0.3969,122577,2012,4
Ada County,182246,-0.112,77137,16001,97554,ID,0.6005,303485,2012,4
Adams County,2061,-0.4056,577,16003,1413,ID,0.6419,3211,2012,4
Bannock County,35523,-0.2195,13214,16005,21010,ID,0.5821,61029,2012,4
Bear Lake County,2822,-0.775,302,16007,2489,ID,0.659,4282,2012,4
Benewah County,3885,-0.3686,1164,16009,2596,ID,0.5513,7047,2012,4
Bingham County,17678,-0.5441,3822,16011,13440,ID,0.5735,30825,2012,4
Blaine County,10194,0.2014,5992,16013,3939,ID,0.6315,16143,2012,4
Boise County,3446,-0.3572,1053,16015,2284,ID,0.6321,5452,2012,4
Bonner County,18803,-0.2588,6500,16017,11367,ID,0.5873,32014,2012,4
Bonneville County,43217,-0.5177,9903,16019,32276,ID,0.5887,73405,2012,4
Boundary County,4544,-0.421,1225,16021,3138,ID,0.5521,8231,2012,4
Butte County,1286,-0.5778,258,16023,1001,ID,0.6414,2005,2012,4
Camas County,578,-0.4204,159,16025,402,ID,0.7092,815,2012,4
Canyon County,66747,-0.3671,19866,16027,44369,ID,0.4961,134553,2012,4
Caribou County,3052,-0.728,386,16029,2608,ID,0.627,4868,2012,4
Cassia County,8432,-0.7182,1098,16031,7154,ID,0.5361,15728,2012,4
Clark County,328,-0.5152,66,16033,235,ID,0.5248,625,2012,4
Clearwater County,3696,-0.4083,1032,16035,2541,ID,0.517,7149,2012,4
Custer County,2355,-0.5155,530,16037,1744,ID,0.6679,3526,2012,4
Elmore County,8003,-0.3391,2513,16039,5227,ID,0.4173,19177,2012,4
Franklin County,5600,-0.8696,325,16041,5195,ID,0.6688,8373,2012,4
Fremont County,5802,-0.7061,810,16043,4907,ID,0.6361,9121,2012,4
Gem County,7491,-0.4477,1957,16045,5311,ID,0.5886,12727,2012,4
Gooding County,5118,-0.4707,1287,16047,3696,ID,0.4731,10819,2012,4
Idaho County County,7840,-0.5374,1708,16049,5921,ID,0.6011,13043,2012,4
Jefferson County,11381,-0.7549,1303,16051,9895,ID,0.658,17297,2012,4
Jerome County,6717,-0.4623,1699,16053,4804,ID,0.4314,15572,2012,4
Kootenai County,60505,-0.3393,18851,16055,39381,ID,0.5603,107991,2012,4
Latah County,17124,0.0419,8306,16057,7589,ID,0.5507,31094,2012,4
Lemhi County,4110,-0.5034,960,16059,3029,ID,0.6503,6320,2012,4
Lewis County,1615,-0.4811,396,16061,1173,ID,0.541,2985,2012,4
Lincoln County,1663,-0.4041,469,16063,1141,ID,0.463,3592,2012,4
Madison County,14412,-0.8752,832,16065,13445,ID,0.5198,27726,2012,4
Minidoka County,6973,-0.5811,1390,16067,5442,ID,0.4862,14343,2012,4
Nez Perce County,16993,-0.2069,6451,16069,9967,ID,0.5468,31075,2012,4
Oneida County,2089,-0.776,217,16071,1838,ID,0.6885,3034,2012,4
Owyhee County,3724,-0.5266,833,16073,2794,ID,0.4534,8214,2012,4
Payette County,8495,-0.4394,2271,16075,6004,ID,0.5159,16466,2012,4
Power County,2904,-0.3058,982,16077,1870,ID,0.538,5398,2012,4
Shoshone County,5148,-0.082,2277,16079,2699,ID,0.509,10113,2012,4
Teton County,4523,-0.1176,1926,16081,2458,ID,0.6294,7186,2012,4
Twin Falls County,28369,-0.4312,7541,16083,19773,ID,0.4975,57020,2012,4
Valley County,4919,-0.1157,2095,16085,2664,ID,0.6346,7751,2012,4
Washington County,4331,-0.4673,1104,16087,3128,ID,0.5696,7604,2012,4
Adams County,30697,-0.3508,9648,17001,20416,IL,0.5918,51867,2012,20
Alexander County,3501,0.1365,1965,17003,1487,IL,0.5853,5982,2012,20
Bond County,7375,-0.1458,3020,17005,4095,IL,0.5277,13977,2012,20
Boone County,21441,-0.0566,9883,17007,11096,IL,0.5483,39108,2012,20
Brown County,2364,-0.3071,787,17009,1513,IL,0.4046,5843,2012,20
Bureau County,16686,-0.0018,8134,17011,8164,IL,0.6268,26620,2012,20
Calhoun County,2576,-0.1398,1080,17013,1440,IL,0.649,3969,2012,20
Carroll County,7406,0.0149,3665,17015,3555,IL,0.6151,12040,2012,20
Cass County,4878,-0.1341,2053,17017,2707,IL,0.4833,10093,2012,20
Champaign County,78609,0.0702,40831,17019,35312,IL,0.4768,164864,2012,20
Christian County,14727,-0.2303,5494,17021,8885,IL,0.5459,26977,2012,20
Clark County,7886,-0.3237,2591,17023,5144,IL,0.6273,12571,2012,20
Clay County,5908,-0.4411,1584,17025,4190,IL,0.5563,10621,2012,20
Clinton County,16481,-0.299,5596,17027,10524,IL,0.5548,29706,2012,20
Coles County,21437,-0.1105,9262,17029,11631,IL,0.4903,43725,2012,20
Cook County,2014819,0.4928,1488537,17031,495542,IL,0.5009,4022316,2012,20
Crawford County,8633,-0.3159,2858,17033,5585,IL,0.551,15667,2012,20
Cumberland County,5295,-0.3528,1641,17035,3509,IL,0.6313,8388,2012,20
DeKalb County,41241,0.0551,21207,17037,18934,IL,0.5083,81128,2012,20
DeWitt County,7368,-0.2685,2601,17039,4579,IL,0.574,12836,2012,20
Douglas County,7921,-0.3666,2430,17041,5334,IL,0.5378,14728,2012,20
DuPage County,401081,0.011,199460,17043,195046,IL,0.5692,704662,2012,20
Edgar County,7835,-0.3276,2565,17045,5132,IL,0.5501,14242,2012,20
Edwards County,3228,-0.5115,754,17047,2405,IL,0.6232,5180,2012,20
Effingham County,16613,-0.5201,3861,17049,12501,IL,0.6381,26035,2012,20
Fayette County,9012,-0.3438,2853,17051,5951,IL,0.5227,17242,2012,20
Ford County,6024,-0.4271,1656,17053,4229,IL,0.5618,10723,2012,20
Franklin County,17914,-0.1682,7254,17055,10267,IL,0.5809,30839,2012,20
Fulton County,15411,0.1101,8328,17057,6632,IL,0.5303,29062,2012,20
Gallatin County,2573,-0.1799,1029,17059,1492,IL,0.5956,4320,2012,20
Greene County,5637,-0.2533,2023,17061,3451,IL,0.5332,10572,2012,20
Grundy County,21313,-0.0888,9451,17063,11343,IL,0.5788,36821,2012,20
Hamilton County,3941,-0.3291,1269,17065,2566,IL,0.6099,6462,2012,20
Hancock County,9111,-0.1779,3650,17067,5271,IL,0.6138,14843,2012,20
Hardin County,2330,-0.3403,742,17069,1535,IL,0.6865,3394,2012,20
Henderson County,3568,0.1225,1978,17071,1541,IL,0.6301,5663,2012,20
Henry County,24405,0.0307,12332,17073,11583,IL,0.6348,38443,2012,20
Iroquois County,12811,-0.4455,3413,17075,9120,IL,0.5666,22610,2012,20
Jackson County,24104,0.1433,13319,17077,9864,IL,0.4993,48280,2012,20
Jasper County,5043,-0.4121,1436,17079,3514,IL,0.6779,7439,2012,20
Jefferson County,16320,-0.2281,6089,17081,9811,IL,0.5401,30218,2012,20
Jersey County,10001,-0.2372,3667,17083,6039,IL,0.565,17701,2012,20
JoDaviess County,11429,0.0116,5667,17085,5534,IL,0.6359,17972,2012,20
Johnson County,5694,-0.4199,1572,17087,3963,IL,0.5409,10526,2012,20
Kane County,181725,0.011,90332,17089,88335,IL,0.4837,375713,2012,20
Kankakee County,45654,-0.0338,21595,17091,23136,IL,0.5361,85157,2012,20
Kendall County,47418,-0.0332,22471,17093,24047,IL,0.5772,82152,2012,20
Knox County,23356,0.1731,13451,17095,9408,IL,0.5592,41767,2012,20
Lake County,287493,0.0835,153757,17097,129764,IL,0.5561,516939,2012,20
LaSalle County,47405,-0.0039,23073,17099,23256,IL,0.541,87620,2012,20
Lawrence County,5989,-0.3082,2011,17101,3857,IL,0.4448,13465,2012,20
Lee County,15348,-0.0731,6937,17103,8059,IL,0.5516,27826,2012,20
Livingston County,15077,-0.3139,5020,17105,9753,IL,0.5016,30058,2012,20
Logan County,12088,-0.3198,3978,17107,7844,IL,0.4925,24543,2012,20
McDonough County,12454,-0.0145,5967,17109,6147,IL,0.4576,27214,2012,20
McHenry County,134237,-0.0879,59797,17111,71598,IL,0.5903,227395,2012,20
McLean County,73469,-0.1098,31883,17113,39947,IL,0.5476,134166,2012,20
Macon County,49030,-0.0516,22780,17115,25309,IL,0.5745,85351,2012,20
Macoupin County,21083,-0.0703,9464,17117,10946,IL,0.574,36730,2012,20
Madison County,122885,-0.0137,58922,17119,60608,IL,0.5904,208156,2012,20
Marion County,15820,-0.1911,6225,17121,9248,IL,0.5287,29924,2012,20
Marshall County,5869,-0.1423,2455,17123,3290,IL,0.6049,9703,2012,20
Mason County,6296,-0.0632,2867,17125,3265,IL,0.5606,11230,2012,20
Massac County,6495,-0.3366,2092,17127,4278,IL,0.5514,11779,2012,20
Menard County,6151,-0.3004,2100,17129,3948,IL,0.628,9794,2012,20
Mercer County,8568,0.0736,4507,17131,3876,IL,0.6806,12589,2012,20
Monroe County,17494,-0.2671,6215,17133,10888,IL,0.6877,25440,2012,20
Montgomery County,12188,-0.141,5058,17135,6776,IL,0.5202,23428,2012,20
Morgan County,14142,-0.1532,5806,17137,7972,IL,0.5045,28029,2012,20
Moultrie County,6075,-0.27,2144,17139,3784,IL,0.5414,11220,2012,20
Ogle County,23367,-0.1672,9514,17141,13422,IL,0.5794,40328,2012,20
Peoria County,78411,0.0438,40209,17143,36774,IL,0.5501,142535,2012,20
Perry County,9549,-0.1768,3819,17145,5507,IL,0.5481,17423,2012,20
Piatt County,8742,-0.2657,3090,17147,5413,IL,0.6863,12738,2012,20
Pike County,7302,-0.3536,2278,17149,4860,IL,0.5781,12631,2012,20
Pope County,2222,-0.3879,650,17151,1512,IL,0.6159,3608,2012,20
Pulaski County,3012,-0.0581,1389,17153,1564,IL,0.6518,4621,2012,20
Putnam County,3143,0.0181,1559,17155,1502,IL,0.6709,4685,2012,20
Randolph County,14438,-0.1753,5759,17157,8290,IL,0.5429,26594,2012,20
Richland County,7282,-0.3288,2362,17159,4756,IL,0.579,12577,2012,20
Rock Island County,65217,0.2181,39157,17161,24934,IL,0.5692,114570,2012,20
St. Clair County,119827,0.1432,67285,17163,50125,IL,0.5915,202565,2012,20
Saline County,10720,-0.2896,3701,17165,6806,IL,0.5519,19424,2012,20
Sangamon County,94297,-0.0861,42107,17167,50225,IL,0.6164,152975,2012,20
Schuyler County,3902,-0.0876,1727,17169,2069,IL,0.6583,5927,2012,20
Scott County,2568,-0.2636,910,17171,1587,IL,0.6293,4081,2012,20
Shelby County,10439,-0.3354,3342,17173,6843,IL,0.6013,17360,2012,20
Stark County,2662,-0.1627,1095,17175,1528,IL,0.572,4654,2012,20
Stephenson County,21128,-0.0164,10165,17177,10512,IL,0.5773,36597,2012,20
Tazewell County,61282,-0.1778,24438,17179,35335,IL,0.5873,104347,2012,20
Union County,8318,-0.2188,3137,17181,4957,IL,0.5967,13940,2012,20
Vermilion County,30400,-0.132,12878,17183,16892,IL,0.4965,61223,2012,20
Wabash County,5134,-0.3677,1590,17185,3478,IL,0.5591,9183,2012,20
Warren County,7818,0.0545,4044,17187,3618,IL,0.5655,13825,2012,20
Washington County,7435,-0.315,2450,17189,4792,IL,0.6476,11480,2012,20
Wayne County,7697,-0.5813,1514,17191,5988,IL,0.5984,12863,2012,20
White County,7082,-0.3591,2188,17193,4731,IL,0.6187,11446,2012,20
Whiteside County,25828,0.1698,14833,17195,10448,IL,0.5807,44477,2012,20
Will County,278165,0.0549,144229,17197,128969,IL,0.5643,492960,2012,20
Williamson County,29254,-0.2482,10647,17199,17909,IL,0.5609,52158,2012,20
Winnebago County,119397,0.0552,61732,17201,55138,IL,0.5404,220942,2012,20
Woodford County,18938,-0.3902,5572,17203,12961,IL,0.6488,29189,2012,20
Adams County,13032,-0.3937,3806,18001,8937,IN,0.5489,23743,2012,11
Allen County,147246,-0.1669,60036,18003,84613,IN,0.5557,264984,2012,11
Bartholomew County,29392,-0.2537,10625,18005,18083,IN,0.4937,59531,2012,11
Benton County,3578,-0.327,1159,18007,2329,IN,0.5431,6588,2012,11
Blackford County,4760,-0.1647,1927,18009,2711,IN,0.4892,9731,2012,11
Boone County,27782,-0.3772,8328,18011,18808,IN,0.6488,42823,2012,11
Brown County,7634,-0.1666,3060,18013,4332,IN,0.6329,12062,2012,11
Carroll County,7810,-0.3027,2635,18015,4999,IN,0.5103,15306,2012,11
Cass County,14161,-0.2169,5371,18017,8443,IN,0.486,29139,2012,11
Clark County,47278,-0.0982,20807,18019,25450,IN,0.5516,85704,2012,11
Clay County,10805,-0.3365,3460,18021,7096,IN,0.5263,20529,2012,11
Clinton County,9883,-0.3066,3308,18023,6338,IN,0.4071,24277,2012,11
Crawford County,4590,-0.0828,2041,18025,2421,IN,0.5593,8206,2012,11
Daviess County,10264,-0.5067,2437,18027,7638,IN,0.4511,22754,2012,11
Dearborn County,22356,-0.3966,6528,18029,15394,IN,0.5918,37774,2012,11
Decatur County,10327,-0.4046,2941,18031,7119,IN,0.5275,19579,2012,11
DeKalb County,16360,-0.3159,5419,18033,10587,IN,0.5197,31481,2012,11
Delaware County,45074,0.0311,22654,18035,21251,IN,0.4765,94598,2012,11
Dubois County,18571,-0.2763,6522,18037,11654,IN,0.5868,31646,2012,11
Elkhart County,68029,-0.2643,24399,18039,42378,IN,0.4751,143185,2012,11
Fayette County,8837,-0.1686,3555,18041,5045,IN,0.4809,18375,2012,11
Floyd County,35392,-0.1431,14812,18043,19878,IN,0.6133,57709,2012,11
Fountain County,7111,-0.3413,2237,18045,4664,IN,0.5434,13087,2012,11
Franklin County,10580,-0.4267,2909,18047,7424,IN,0.6156,17187,2012,11
Fulton County,8126,-0.3318,2621,18049,5317,IN,0.5195,15642,2012,11
Gibson County,14721,-0.3097,4928,18051,9487,IN,0.5739,25650,2012,11
Grant County,25329,-0.2196,9589,18053,15151,IN,0.4637,54624,2012,11
Greene County,13141,-0.3125,4350,18055,8457,IN,0.5172,25410,2012,11
Hamilton County,137089,-0.3425,43796,18057,90747,IN,0.6699,204637,2012,11
Hancock County,32843,-0.4103,9319,18059,22796,IN,0.6208,52908,2012,11
Harrison County,17671,-0.2282,6607,18061,10640,IN,0.5866,30125,2012,11
Hendricks County,66761,-0.3475,21112,18063,44312,IN,0.6037,110586,2012,11
Henry County,19007,-0.1697,7613,18065,10838,IN,0.4913,38684,2012,11
Howard County,36291,-0.1431,15135,18067,20327,IN,0.5689,63795,2012,11
Huntington County,15797,-0.3967,4596,18069,10862,IN,0.5539,28521,2012,11
Jackson County,16712,-0.2741,5838,18071,10419,IN,0.5117,32658,2012,11
Jasper County,12920,-0.2541,4672,18073,7955,IN,0.5147,25102,2012,11
Jay County,7901,-0.2002,3063,18075,4645,IN,0.5022,15732,2012,11
Jefferson County,13156,-0.104,5728,18077,7096,IN,0.5177,25410,2012,11
Jennings County,10250,-0.2243,3821,18079,6120,IN,0.4863,21078,2012,11
Johnson County,58092,-0.3831,17260,18081,39513,IN,0.5457,106458,2012,11
Knox County,15145,-0.2895,5228,18083,9612,IN,0.505,29991,2012,11
Kosciusko County,30140,-0.5208,6862,18085,22558,IN,0.5178,58209,2012,11
LaGrange County,9316,-0.3578,2898,18087,6231,IN,0.3754,24817,2012,11
Lake County,202147,0.309,130897,18089,68431,IN,0.5467,369747,2012,11
LaPorte County,43681,0.1257,24107,18091,18615,IN,0.5055,86418,2012,11
Lawrence County,17870,-0.327,5779,18093,11622,IN,0.5041,35447,2012,11
Madison County,52510,-0.045,24407,18095,26769,IN,0.52,100981,2012,11
Marion County,359972,0.2218,216336,18097,136509,IN,0.5218,689827,2012,11
Marshall County,17801,-0.2878,6137,18099,11260,IN,0.5127,34720,2012,11
Martin County,4743,-0.4029,1351,18101,3262,IN,0.5988,7921,2012,11
Miami County,12813,-0.3084,4222,18103,8174,IN,0.4513,28393,2012,11
Monroe County,57223,0.1914,33436,18105,22481,IN,0.4833,118400,2012,11
Montgomery County,14440,-0.3846,4271,18107,9824,IN,0.4936,29257,2012,11
Morgan County,28325,-0.4103,7969,18109,19591,IN,0.541,52357,2012,11
Newton County,5672,-0.1902,2212,18111,3291,IN,0.5191,10926,2012,11
Noble County,16273,-0.335,5229,18113,10680,IN,0.4649,35005,2012,11
Ohio County,2819,-0.2714,994,18115,1759,IN,0.5815,4848,2012,11
Orange County,7776,-0.2158,2939,18117,4617,IN,0.5207,14934,2012,11
Owen County,8113,-0.276,2823,18119,5062,IN,0.4886,16605,2012,11
Parke County,6529,-0.3253,2110,18121,4234,IN,0.487,13406,2012,11
Perry County,7875,0.1159,4316,18123,3403,IN,0.5119,15383,2012,11
Pike County,5926,-0.2535,2125,18125,3627,IN,0.5956,9950,2012,11
Porter County,73303,0.0388,37252,18127,34406,IN,0.5778,126868,2012,11
Posey County,12226,-0.237,4533,18129,7430,IN,0.6202,19714,2012,11
Pulaski County,5399,-0.2717,1899,18131,3366,IN,0.5384,10027,2012,11
Putnam County,13829,-0.3253,4507,18133,9005,IN,0.4616,29960,2012,11
Randolph County,10202,-0.2401,3769,18135,6218,IN,0.5198,19628,2012,11
Ripley County,11015,-0.3852,3241,18137,7484,IN,0.5151,21383,2012,11
Rush County,7026,-0.3433,2221,18139,4633,IN,0.5379,13062,2012,11
St. Joseph County,111009,0.035,56460,18141,52578,IN,0.5495,202033,2012,11
Scott County,8720,-0.062,3998,18143,4539,IN,0.4779,18245,2012,11
Shelby County,16760,-0.3353,5359,18145,10978,IN,0.4953,33837,2012,11
Spencer County,9744,-0.1528,4026,18147,5515,IN,0.6073,16044,2012,11
Starke County,8769,-0.1059,3809,18149,4738,IN,0.4953,17706,2012,11
Steuben County,13695,-0.2697,4853,18151,8547,IN,0.512,26750,2012,11
Sullivan County,8290,-0.2064,3191,18153,4902,IN,0.4945,16766,2012,11
Switzerland County,3397,-0.1281,1437,18155,1872,IN,0.4364,7784,2012,11
Tippecanoe County,57063,-0.0359,26711,18157,28757,IN,0.4029,141641,2012,11
Tipton County,7373,-0.3175,2432,18159,4773,IN,0.6036,12216,2012,11
Union County,3104,-0.3235,1018,18161,2022,IN,0.5545,5598,2012,11
Vanderburgh County,72588,-0.1056,31725,18163,39389,IN,0.5144,141112,2012,11
Vermillion County,6603,-0.0677,2979,18165,3426,IN,0.5363,12313,2012,11
Vigo County,40005,0.0086,19712,18167,19369,IN,0.4665,85754,2012,11
Wabash County,12895,-0.3622,3973,18169,8644,IN,0.5103,25271,2012,11
Warren County,3800,-0.2771,1324,18171,2377,IN,0.5833,6515,2012,11
Warrick County,28427,-0.2638,10181,18173,17680,IN,0.6279,45276,2012,11
Washington County,10737,-0.2444,3909,18175,6533,IN,0.5081,21132,2012,11
Wayne County,25477,-0.1464,10591,18177,14321,IN,0.4821,52850,2012,11
Wells County,12952,-0.4494,3436,18179,9256,IN,0.6175,20974,2012,11
White County,9935,-0.2348,3637,18181,5970,IN,0.5335,18621,2012,11
Whitley County,15032,-0.3884,4420,18183,10258,IN,0.5951,25261,2012,11
Adair County,3996,-0.0811,1790,19001,2114,IA,0.6819,5860,2012,6
Adams County,2185,-0.0366,1028,19003,1108,IA,0.7044,3102,2012,6
Allamakee County,6934,0.0417,3553,19005,3264,IA,0.6328,10957,2012,6
Appanoose County,6245,-0.0336,2951,19007,3161,IA,0.6318,9884,2012,6
Audubon County,3457,-0.0553,1611,19009,1802,IA,0.7422,4658,2012,6
Benton County,14023,-0.0056,6862,19011,6940,IA,0.7173,19549,2012,6
Black Hawk County,67141,0.2024,39821,19013,26235,IA,0.6491,103443,2012,6
Boone County,14388,0.0664,7512,19015,6556,IA,0.7134,20169,2012,6
Bremer County,13346,0.0268,6763,19017,6405,IA,0.699,19092,2012,6
Buchanan County,10535,0.1387,5911,19019,4450,IA,0.6853,15372,2012,6
Buena Vista County,8383,-0.1019,3700,19021,4554,IA,0.5449,15385,2012,6
Butler County,7545,-0.103,3329,19023,4106,IA,0.6609,11416,2012,6
Calhoun County,5230,-0.1249,2238,19025,2891,IA,0.6623,7897,2012,6
Carroll County,10674,-0.0613,4947,19027,5601,IA,0.6819,15653,2012,6
Cass County,7205,-0.1886,2858,19029,4217,IA,0.6781,10626,2012,6
Cedar County,9649,0.0459,4972,19031,4529,IA,0.6865,14055,2012,6
Cerro Gordo County,23824,0.1338,13316,19033,10128,IA,0.6917,34441,2012,6
Cherokee County,6415,-0.1602,2634,19035,3662,IA,0.6771,9474,2012,6
Chickasaw County,6484,0.1107,3554,19037,2836,IA,0.6904,9391,2012,6
Clarke County,4430,0.0147,2189,19039,2124,IA,0.6341,6986,2012,6
Clay County,8502,-0.1842,3385,19041,4951,IA,0.6622,12839,2012,6
Clayton County,9138,0.0703,4806,19043,4164,IA,0.6583,13881,2012,6
Clinton County,25000,0.2284,15141,19045,9432,IA,0.6692,37360,2012,6
Crawford County,6752,-0.0783,3066,19047,3595,IA,0.5311,12714,2012,6
Dallas County,38116,-0.1158,16576,19049,20988,IA,0.7414,51412,2012,6
Davis County,3773,-0.1638,1520,19051,2138,IA,0.6109,6176,2012,6
Decatur County,3833,-0.0407,1791,19053,1947,IA,0.595,6442,2012,6
Delaware County,9378,-0.0021,4616,19055,4636,IA,0.7051,13300,2012,6
Des Moines County,20385,0.1841,11888,19057,8136,IA,0.6581,30977,2012,6
Dickinson County,10159,-0.1789,4095,19059,5912,IA,0.7432,13670,2012,6
Dubuque County,50894,0.1471,28768,19061,21280,IA,0.6969,73033,2012,6
Emmet County,4687,-0.087,2099,19063,2507,IA,0.6025,7779,2012,6
Fayette County,10366,0.1196,5732,19065,4492,IA,0.6367,16281,2012,6
Floyd County,8257,0.1463,4680,19067,3472,IA,0.6703,12318,2012,6
Franklin County,5186,-0.1074,2266,19069,2823,IA,0.6418,8080,2012,6
Fremont County,3668,-0.0913,1637,19071,1972,IA,0.6578,5576,2012,6
Greene County,4846,-0.001,2375,19073,2380,IA,0.6831,7094,2012,6
Grundy County,6962,-0.2269,2635,19075,4215,IA,0.7315,9517,2012,6
Guthrie County,5888,-0.1022,2569,19077,3171,IA,0.7079,8318,2012,6
Hamilton County,7927,-0.0264,3782,19079,3991,IA,0.6752,11740,2012,6
Hancock County,5925,-0.1343,2521,19081,3317,IA,0.6886,8605,2012,6
Hardin County,8898,-0.0669,4075,19083,4670,IA,0.6567,13549,2012,6
Harrison County,7322,-0.1269,3136,19085,4065,IA,0.6552,11175,2012,6
Henry County,9697,-0.0593,4460,19087,5035,IA,0.6252,15511,2012,6
Howard County,4645,0.2095,2768,19089,1795,IA,0.6476,7173,2012,6
Humboldt County,5158,-0.2185,1972,19091,3099,IA,0.692,7454,2012,6
Ida County,3663,-0.2634,1321,19093,2286,IA,0.677,5411,2012,6
Iowa County,8866,-0.0479,4144,19095,4569,IA,0.7144,12411,2012,6
Jackson County,10242,0.1689,5907,19097,4177,IA,0.674,15196,2012,6
Jasper County,19515,0.0707,10257,19099,8877,IA,0.6885,28345,2012,6
Jefferson County,8530,0.1597,4798,19101,3436,IA,0.6022,14164,2012,6
Johnson County,75977,0.3549,50666,19103,23698,IA,0.693,109631,2012,6
Jones County,10449,0.0778,5534,19105,4721,IA,0.648,16126,2012,6
Keokuk County,5266,-0.1025,2303,19107,2843,IA,0.6583,7999,2012,6
Kossuth County,8923,-0.1218,3850,19109,4937,IA,0.7488,11916,2012,6
Lee County,18911,0.1549,10714,19111,7785,IA,0.6767,27947,2012,6
Linn County,118453,0.1769,68581,19113,47622,IA,0.7248,163424,2012,6
Louisa County,4968,0.0064,2452,19115,2420,IA,0.5815,8544,2012,6
Lucas County,4323,-0.0618,1987,19117,2254,IA,0.6462,6690,2012,6
Lyon County,6509,-0.5462,1423,19119,4978,IA,0.7635,8525,2012,6
Madison County,8458,-0.1192,3630,19121,4638,IA,0.736,11492,2012,6
Mahaska County,10883,-0.2054,4213,19123,6448,IA,0.6376,17068,2012,6
Marion County,17687,-0.1312,7507,19125,9828,IA,0.7018,25202,2012,6
Marshall County,19064,0.0936,10257,19127,8472,IA,0.6198,30758,2012,6
Mills County,7212,-0.1897,2848,19129,4216,IA,0.645,11181,2012,6
Mitchell County,5586,0.0337,2831,19131,2643,IA,0.6858,8145,2012,6
Monona County,4742,-0.0962,2101,19133,2557,IA,0.6606,7178,2012,6
Monroe County,3830,-0.077,1731,19135,2026,IA,0.6274,6105,2012,6
Montgomery County,5025,-0.2147,1922,19137,3001,IA,0.619,8118,2012,6
Muscatine County,19865,0.1588,11323,19139,8168,IA,0.623,31888,2012,6
O'Brien County,7341,-0.4491,1969,19141,5266,IA,0.6756,10866,2012,6
Osceola County,3194,-0.4126,912,19143,2230,IA,0.6638,4812,2012,6
Page County,7079,-0.2451,2613,19145,4348,IA,0.5705,12409,2012,6
Palo Alto County,4887,-0.1066,2139,19147,2660,IA,0.6781,7207,2012,6
Plymouth County,12950,-0.3423,4164,19149,8597,IA,0.6956,18617,2012,6
Pocahontas County,4032,-0.2165,1523,19151,2396,IA,0.7171,5623,2012,6
Polk County,228882,0.1414,128465,19153,96096,IA,0.6909,331292,2012,6
Pottawattamie County,42301,-0.0524,19644,19155,21860,IA,0.5983,70699,2012,6
Poweshiek County,9975,0.0935,5357,19157,4424,IA,0.6709,14867,2012,6
Ringgold County,2599,-0.07,1186,19159,1368,IA,0.6756,3847,2012,6
Sac County,5291,-0.1837,2122,19161,3094,IA,0.6692,7906,2012,6
Scott County,90263,0.1374,50652,19163,38251,IA,0.7054,127957,2012,6
Shelby County,6483,-0.2224,2469,19165,3911,IA,0.6966,9307,2012,6
Sioux County,17308,-0.6764,2700,19167,14407,IA,0.6898,25091,2012,6
Story County,47150,0.1384,26192,19169,19668,IA,0.6218,75825,2012,6
Tama County,9017,0.0743,4768,19171,4098,IA,0.6822,13218,2012,6
Taylor County,2995,-0.1406,1262,19173,1683,IA,0.6297,4756,2012,6
Union County,5957,0.0386,3043,19175,2813,IA,0.6174,9648,2012,6
Van Buren County,3569,-0.1855,1402,19177,2064,IA,0.6231,5728,2012,6
Wapello County,15770,0.1188,8663,19179,6789,IA,0.576,27379,2012,6
Warren County,26072,-0.0192,12551,19181,13052,IA,0.7438,35053,2012,6
Washington County,11004,-0.0406,5115,19183,5562,IA,0.6681,16470,2012,6
Wayne County,2900,-0.1145,1251,19185,1583,IA,0.597,4858,2012,6
Webster County,18292,0.0584,9537,19187,8469,IA,0.6276,29147,2012,6
Winnebago County,5918,-0.0005,2903,19189,2906,IA,0.7075,8365,2012,6
Winneshiek County,11084,0.1474,6256,19191,4622,IA,0.6557,16903,2012,6
Woodbury County,45019,0.0102,22302,19193,21841,IA,0.5965,75478,2012,6
Worth County,4172,0.1453,2350,19195,1744,IA,0.7133,5849,2012,6
Wright County,6278,-0.0817,2836,19197,3349,IA,0.6267,10018,2012,6
Allen County,5310,-0.2725,1869,20001,3316,KS,0.5206,10200,2012,6
Anderson County,3315,-0.4018,944,20003,2276,KS,0.5622,5896,2012,6
Atchison County,6674,-0.2023,2567,20005,3917,KS,0.521,12811,2012,6
Barber County,2314,-0.5575,482,20007,1772,KS,0.6104,3791,2012,6
Barton County,10341,-0.5393,2297,20009,7874,KS,0.4987,20736,2012,6
Bourbon County,6254,-0.3367,1996,20011,4102,KS,0.5631,11107,2012,6
Brown County,3993,-0.439,1076,20013,2829,KS,0.5388,7411,2012,6
Butler County,26085,-0.4169,7282,20015,18157,KS,0.5385,48440,2012,6
Chase County,1271,-0.4068,358,20017,875,KS,0.5895,2156,2012,6
Chautauqua County,1630,-0.6282,280,20019,1304,KS,0.5741,2839,2012,6
Cherokee County,8571,-0.2947,2930,20021,5456,KS,0.5368,15967,2012,6
Cheyenne County,1426,-0.6494,233,20023,1159,KS,0.6761,2109,2012,6
Clark County,1017,-0.6205,174,20025,805,KS,0.6286,1618,2012,6
Clay County,3686,-0.5301,834,20027,2788,KS,0.5656,6517,2012,6
Cloud County,4058,-0.4879,974,20029,2954,KS,0.5574,7280,2012,6
Coffey County,3906,-0.5133,898,20031,2903,KS,0.5978,6534,2012,6
Comanche County,928,-0.6724,143,20033,767,KS,0.6467,1435,2012,6
Cowley County,12710,-0.296,4319,20035,8081,KS,0.463,27454,2012,6
Crawford County,15040,-0.0586,6826,20037,7708,KS,0.4897,30711,2012,6
Decatur County,1532,-0.6214,266,20039,1218,KS,0.6544,2341,2012,6
Dickinson County,8042,-0.474,2020,20041,5832,KS,0.5413,14856,2012,6
Doniphan County,3403,-0.4443,902,20043,2414,KS,0.5541,6142,2012,6
Douglas County,48464,0.2448,29267,20045,17401,KS,0.5278,91823,2012,6
Edwards County,1385,-0.5495,298,20047,1059,KS,0.6043,2292,2012,6
Elk County,1369,-0.561,281,20049,1049,KS,0.637,2149,2012,6
Ellis County,11714,-0.456,3057,20051,8399,KS,0.5124,22860,2012,6
Ellsworth County,2712,-0.4528,702,20053,1930,KS,0.5134,5282,2012,6
Finney County,9084,-0.3894,2682,20055,6219,KS,0.3577,25394,2012,6
Ford County,8362,-0.359,2600,20057,5602,KS,0.3482,24017,2012,6
Franklin County,10990,-0.2994,3694,20059,6984,KS,0.5672,19377,2012,6
Geary County,7845,-0.1326,3332,20061,4372,KS,0.2995,26193,2012,6
Gove County,1383,-0.7173,176,20063,1168,KS,0.6678,2071,2012,6
Graham County,1340,-0.597,256,20065,1056,KS,0.6455,2076,2012,6
Grant County,2306,-0.5876,456,20067,1811,KS,0.4317,5342,2012,6
Gray County,1958,-0.6532,324,20069,1603,KS,0.4644,4216,2012,6
Greeley County,670,-0.6418,113,20071,543,KS,0.6844,979,2012,6
Greenwood County,2123,-0.5238,478,20073,1590,KS,0.4204,5050,2012,6
Hamilton County,877,-0.6043,163,20075,693,KS,0.4653,1885,2012,6
Harper County,2389,-0.5061,550,20077,1759,KS,0.5315,4495,2012,6
Harvey County,14294,-0.2249,5373,20079,8588,KS,0.5498,25998,2012,6
Haskell County,1396,-0.6762,215,20081,1159,KS,0.4799,2909,2012,6
Hodgeman County,1060,-0.65,179,20083,868,KS,0.7043,1505,2012,6
Jackson County,5561,-0.2924,1901,20085,3527,KS,0.5622,9892,2012,6
Jefferson County,8013,-0.2309,2977,20087,4827,KS,0.5571,14384,2012,6
Jewell County,1497,-0.672,229,20089,1235,KS,0.6053,2473,2012,6
Johnson County,275074,-0.174,110526,20091,158401,KS,0.663,414905,2012,6
Kearny County,1386,-0.5981,268,20093,1097,KS,0.4987,2779,2012,6
Kingman County,3231,-0.515,733,20095,2397,KS,0.5368,6019,2012,6
Kiowa County,1144,-0.7107,163,20097,976,KS,0.5769,1983,2012,6
Labette County,8037,-0.2022,3117,20099,4742,KS,0.498,16139,2012,6
Lane County,928,-0.611,172,20101,739,KS,0.6998,1326,2012,6
Leavenworth County,29085,-0.196,11357,20103,17059,KS,0.4963,58600,2012,6
Lincoln County,1483,-0.5907,289,20105,1165,KS,0.6161,2407,2012,6
Linn County,4467,-0.4493,1170,20107,3177,KS,0.6108,7313,2012,6
Logan County,1350,-0.6881,197,20109,1126,KS,0.6305,2141,2012,6
Lyon County,11875,-0.1144,5111,20111,6470,KS,0.4603,25798,2012,6
McPherson County,12297,-0.4144,3449,20113,8545,KS,0.5463,22511,2012,6
Marion County,5409,-0.4629,1385,20115,3889,KS,0.5599,9660,2012,6
Marshall County,4773,-0.3616,1469,20117,3195,KS,0.616,7748,2012,6
Meade County,1709,-0.6846,258,20119,1428,KS,0.5351,3194,2012,6
Miami County,14856,-0.3464,4712,20121,9858,KS,0.6178,24046,2012,6
Mitchell County,2965,-0.5879,584,20123,2327,KS,0.5989,4951,2012,6
Montgomery County,12417,-0.4131,3501,20125,8630,KS,0.4726,26276,2012,6
Morris County,2562,-0.4118,718,20127,1773,KS,0.5537,4627,2012,6
Morton County,1278,-0.6909,189,20129,1072,KS,0.5506,2321,2012,6
Nemaha County,5026,-0.583,1000,20131,3930,KS,0.6711,7489,2012,6
Neosho County,6480,-0.3429,2050,20133,4272,KS,0.5235,12378,2012,6
Ness County,1444,-0.6863,218,20135,1209,KS,0.6024,2397,2012,6
Norton County,2325,-0.6366,398,20137,1878,KS,0.5135,4528,2012,6
Osage County,6906,-0.3126,2268,20139,4427,KS,0.5653,12217,2012,6
Osborne County,1838,-0.6284,324,20141,1479,KS,0.608,3023,2012,6
Ottawa County,2933,-0.5922,558,20143,2295,KS,0.6407,4578,2012,6
Pawnee County,2608,-0.4287,718,20145,1836,KS,0.4724,5521,2012,6
Phillips County,2565,-0.6834,382,20147,2135,KS,0.6096,4208,2012,6
Pottawatomie County,9479,-0.4715,2335,20149,6804,KS,0.6026,15730,2012,6
Pratt County,3801,-0.4712,980,20151,2771,KS,0.5076,7488,2012,6
Rawlins County,1444,-0.7154,190,20153,1223,KS,0.6966,2073,2012,6
Reno County,24422,-0.3125,8085,20155,15718,KS,0.4957,49264,2012,6
Republic County,2686,-0.6169,477,20157,2134,KS,0.6861,3915,2012,6
Rice County,3681,-0.4795,911,20159,2676,KS,0.4805,7661,2012,6
Riley County,21101,-0.1199,8977,20161,11507,KS,0.3392,62200,2012,6
Rooks County,2460,-0.6817,361,20163,2038,KS,0.6138,4008,2012,6
Rush County,1570,-0.5089,367,20165,1166,KS,0.6109,2570,2012,6
Russell County,3200,-0.6125,593,20167,2553,KS,0.5834,5485,2012,6
Saline County,21496,-0.3163,7040,20169,13840,KS,0.5114,42030,2012,6
Scott County,2052,-0.7071,277,20171,1728,KS,0.5665,3622,2012,6
Sedgwick County,182895,-0.1888,71977,20173,106506,KS,0.4954,369205,2012,6
Seward County,5176,-0.4109,1490,20175,3617,KS,0.3239,15981,2012,6
Shawnee County,76508,-0.0105,36975,20177,37782,KS,0.5668,134994,2012,6
Sheridan County,1342,-0.7347,168,20179,1154,KS,0.6882,1950,2012,6
Sherman County,2623,-0.5334,577,20181,1976,KS,0.5614,4672,2012,6
Smith County,2023,-0.6258,358,20183,1624,KS,0.6677,3030,2012,6
Stafford County,1839,-0.5334,404,20185,1385,KS,0.5559,3308,2012,6
Stanton County,759,-0.6087,143,20187,605,KS,0.4847,1566,2012,6
Stevens County,2034,-0.736,252,20189,1749,KS,0.5074,4009,2012,6
Sumner County,9141,-0.394,2658,20191,6260,KS,0.5178,17655,2012,6
Thomas County,3474,-0.6304,598,20193,2788,KS,0.5668,6129,2012,6
Trego County,1579,-0.6143,291,20195,1261,KS,0.6555,2409,2012,6
Wabaunsee County,3267,-0.4096,918,20197,2256,KS,0.6219,5253,2012,6
Wallace County,798,-0.8158,68,20199,719,KS,0.7006,1139,2012,6
Washington County,2889,-0.6203,524,20201,2316,KS,0.6513,4436,2012,6
Wichita County,987,-0.6727,157,20203,821,KS,0.6,1645,2012,6
Wilson County,3717,-0.54,818,20205,2825,KS,0.5341,6960,2012,6
Woodson County,1447,-0.4527,380,20207,1035,KS,0.5655,2559,2012,6
Wyandotte County,50893,0.3695,34302,20209,15496,KS,0.4438,114666,2012,6
Adair County,7600,-0.5501,1660,21001,5841,KY,0.5174,14690,2012,8
Allen County,7100,-0.4755,1808,21003,5184,KY,0.461,15400,2012,8
Anderson County,10320,-0.3398,3315,21005,6822,KY,0.6332,16299,2012,8
Ballard County,3895,-0.3743,1189,21007,2647,KY,0.6063,6424,2012,8
Barren County,16568,-0.3333,5400,21009,10922,KY,0.5097,32504,2012,8
Bath County,4122,-0.1225,1770,21011,2275,KY,0.4636,8891,2012,8
Bell County,9482,-0.5171,2224,21013,7127,KY,0.43,22053,2012,8
Boone County,52511,-0.3865,15629,21015,35922,KY,0.5903,88962,2012,8
Bourbon County,7923,-0.2041,3075,21017,4692,KY,0.5176,15308,2012,8
Boyd County,19049,-0.1632,7776,21019,10884,KY,0.4914,38767,2012,8
Boyle County,12373,-0.2612,4471,21021,7703,KY,0.5406,22888,2012,8
Bracken County,3232,-0.2729,1147,21023,2029,KY,0.5055,6394,2012,8
Breathitt County,5008,-0.3506,1562,21025,3318,KY,0.4705,10645,2012,8
Breckinridge County,7969,-0.2761,2825,21027,5025,KY,0.5203,15316,2012,8
Bullitt County,31779,-0.3567,9971,21029,21306,KY,0.5511,57666,2012,8
Butler County,5060,-0.4789,1293,21031,3716,KY,0.5151,9824,2012,8
Caldwell County,5860,-0.3502,1852,21033,3904,KY,0.5838,10038,2012,8
Calloway County,15072,-0.2736,5317,21035,9440,KY,0.4832,31195,2012,8
Campbell County,40177,-0.228,15080,21037,24240,KY,0.5679,70748,2012,8
Carlisle County,2619,-0.4143,750,21039,1835,KY,0.67,3909,2012,8
Carroll County,3680,-0.1005,1629,21041,1999,KY,0.4521,8139,2012,8
Carter County,8908,-0.2128,3383,21043,5279,KY,0.4207,21176,2012,8
Casey County,6091,-0.6268,1086,21045,4904,KY,0.4927,12362,2012,8
Christian County,21955,-0.2379,8252,21047,13475,KY,0.4045,54271,2012,8
Clark County,15416,-0.3051,5228,21049,9931,KY,0.5599,27533,2012,8
Clay County,7383,-0.686,1111,21051,6176,KY,0.437,16893,2012,8
Clinton County,4393,-0.6412,752,21053,3569,KY,0.5582,7870,2012,8
Crittenden County,3854,-0.4875,960,21055,2839,KY,0.5373,7173,2012,8
Cumberland County,2854,-0.5666,599,21057,2216,KY,0.5329,5356,2012,8
Daviess County,42087,-0.2111,16208,21059,25092,KY,0.5689,73974,2012,8
Edmonson County,4668,-0.398,1374,21061,3232,KY,0.4838,9648,2012,8
Elliott County,2399,0.025,1186,21063,1126,KY,0.3819,6281,2012,8
Estill County,5184,-0.4616,1356,21065,3749,KY,0.4616,11230,2012,8
Fayette County,125866,0.0102,62080,21067,60795,KY,0.5222,241012,2012,8
Fleming County,5782,-0.3232,1911,21069,3780,KY,0.5253,11007,2012,8
Floyd County,14890,-0.3392,4733,21071,9784,KY,0.4884,30485,2012,8
Franklin County,23337,0.0081,11535,21073,11345,KY,0.5981,39017,2012,8