Explanation of the template

Update the title with your information. For example, it could be “GTECH_78520_2023S_Week12_JohnDoe25” for John Doe, 2022 Spring semester, week 12.

Also update the author name and date accordingly.

COME BACK TO THIS AT THE END

R Spaital Lab Assignment # 1

Don’t use a single chunk for the entire assignment. Break it into multiple chunks.

task 1: Set up a R project for the R-Spatial section.

# get the correct directory
# Find your working directory
getwd()
## [1] "/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10"
# Create a path to your "Lecture_5" folder, as a working directory
wd <- file.path(getwd(), "Session 10")

# Create a path to the "Data" folder 
data_dir <- file.path(wd, "R-Spatial_I_Lab")

# get file it is a dataframe 
df <- read.csv('./R-Spatial_I_Lab/NYS_Health_Facility.csv') # file.path(data_dir, "NYS_Health_Facility.csv"))

# read in a Shapefile. With the 'shp' file extension, sf knows it is a Shapefile.
nyc_sf <- st_read('./R-Spatial_I_Lab/ZIP_CODE_040114/ZIP_CODE_040114.shp')
## Reading layer `ZIP_CODE_040114' from data source 
##   `/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/R-Spatial_I_Lab/ZIP_CODE_040114/ZIP_CODE_040114.shp' 
##   using driver `ESRI Shapefile'
## Simple feature collection with 263 features and 12 fields
## Geometry type: POLYGON
## Dimension:     XY
## Bounding box:  xmin: 913129 ymin: 120020.9 xmax: 1067494 ymax: 272710.9
## Projected CRS: NAD83 / New York Long Island (ftUS)
# take a look at what we've got
str(nyc_sf) # note again the geometry column at the end of the output
## Classes 'sf' and 'data.frame':   263 obs. of  13 variables:
##  $ ZIPCODE   : chr  "11436" "11213" "11212" "11225" ...
##  $ BLDGZIP   : chr  "0" "0" "0" "0" ...
##  $ PO_NAME   : chr  "Jamaica" "Brooklyn" "Brooklyn" "Brooklyn" ...
##  $ POPULATION: num  18681 62426 83866 56527 72280 ...
##  $ AREA      : num  22699295 29631004 41972104 23698630 36868799 ...
##  $ STATE     : chr  "NY" "NY" "NY" "NY" ...
##  $ COUNTY    : chr  "Queens" "Kings" "Kings" "Kings" ...
##  $ ST_FIPS   : chr  "36" "36" "36" "36" ...
##  $ CTY_FIPS  : chr  "081" "047" "047" "047" ...
##  $ URL       : chr  "http://www.usps.com/" "http://www.usps.com/" "http://www.usps.com/" "http://www.usps.com/" ...
##  $ SHAPE_AREA: num  0 0 0 0 0 0 0 0 0 0 ...
##  $ SHAPE_LEN : num  0 0 0 0 0 0 0 0 0 0 ...
##  $ geometry  :sfc_POLYGON of length 263; first list element: List of 1
##   ..$ : num [1:159, 1:2] 1038098 1038142 1038171 1038280 1038521 ...
##   ..- attr(*, "class")= chr [1:3] "XY" "POLYGON" "sfg"
##  - attr(*, "sf_column")= chr "geometry"
##  - attr(*, "agr")= Factor w/ 3 levels "constant","aggregate",..: NA NA NA NA NA NA NA NA NA NA ...
##   ..- attr(*, "names")= chr [1:12] "ZIPCODE" "BLDGZIP" "PO_NAME" "POPULATION" ...

task 2: Read the NYC postal areas in Shapefiles into sf objects. As NYC DOH publishes COVID-19 data by zip code, we will utilize the postal area data later.

# Read the NYC postal areas in Shapefiles into sf objects. 
# pure geometry
plot(st_geometry(nyc_sf), main='Pure geometry with st_geometry function')

# Only the college column, with geometry
plot(nyc_sf['ZIPCODE'], main='One column with ["ZIPCODE"]')

### task 3: Read and process the NYS health facilities spreadsheet data. Create sf objects from geographic coordinates.

# "load" in the files I want
df
##      Facility.ID
## 1            204
## 2            620
## 3            654
## 4           1156
## 5           2589
## 6           3455
## 7           3853
## 8           4249
## 9           4473
## 10          6230
## 11          6482
## 12          6832
## 13          7257
## 14          7606
## 15          7646
## 16          7751
## 17          7885
## 18          9006
## 19          9170
## 20          9215
## 21          9263
## 22          9344
## 23          9418
## 24          9588
## 25          9744
## 26          9819
## 27          9970
## 28         10053
## 29         10102
## 30         10117
## 31          6772
## 32          1217
## 33          1820
## 34           124
## 35          4326
## 36          5764
## 37          3119
## 38          9119
## 39          8509
## 40         10277
## 41          5574
## 42          4806
## 43          7579
## 44          1653
## 45         10371
## 46          6252
## 47          4419
## 48          5967
## 49          6650
## 50         10353
## 51          4606
## 52          1185
## 53         10288
## 54          7868
## 55          3096
## 56          4715
## 57           683
## 58          9015
## 59          4492
## 60           274
## 61          9197
## 62          6146
## 63          3865
## 64          3722
## 65          6968
## 66          6984
## 67          9381
## 68          9725
## 69          1469
## 70          7045
## 71           181
## 72          7034
## 73          9331
## 74          6676
## 75          6709
## 76          4689
## 77         10066
## 78          6546
## 79          5710
## 80          9058
## 81          6610
## 82         10061
## 83          6066
## 84          9785
## 85          6487
## 86          6920
## 87         10337
## 88           895
## 89         10202
## 90          5510
## 91          3423
## 92           647
## 93          5991
## 94          9519
## 95          7509
## 96          9182
## 97          3986
## 98          1705
## 99          1878
## 100         9230
## 101         9863
## 102        10098
## 103         1180
## 104        10388
## 105         3110
## 106          484
## 107         7598
## 108         9783
## 109         6288
## 110         1828
## 111         6176
## 112         9977
## 113         4295
## 114        10267
## 115        10234
## 116         9069
## 117         7838
## 118          971
## 119         6199
## 120         7653
## 121         7533
## 122         7617
## 123        10378
## 124         3378
## 125         2803
## 126         6449
## 127          873
## 128         7770
## 129         9833
## 130          468
## 131         7745
## 132         2643
## 133            1
## 134        10334
## 135         3793
## 136         7023
## 137         1558
## 138         9960
## 139         1033
## 140         1243
## 141         6140
## 142         4185
## 143         6405
## 144         6390
## 145          156
## 146         4945
## 147         6946
## 148         4960
## 149         3448
## 150         9527
## 151         5903
## 152          899
## 153          655
## 154         6906
## 155         7090
## 156         6212
## 157        10080
## 158         3898
## 159         6618
## 160         9927
## 161         6042
## 162         9541
## 163          762
## 164         2876
## 165          339
## 166        10081
## 167         3919
## 168          977
## 169         3633
## 170         6988
## 171         7677
## 172         1094
## 173         9295
## 174         1486
## 175         9400
## 176         6342
## 177         3019
## 178         6851
## 179         6687
## 180         9251
## 181         5628
## 182         4570
## 183          203
## 184         6670
## 185         9695
## 186         1288
## 187         1403
## 188         4156
## 189         6256
## 190          434
## 191          527
## 192         6881
## 193         7891
## 194         3293
## 195        10263
## 196         9101
## 197        10312
## 198         4859
## 199        10166
## 200         8524
## 201        10217
## 202         7645
## 203         9590
## 204         7121
## 205         6591
## 206         9944
## 207         4670
## 208         9056
## 209         6129
## 210         8540
## 211         9801
## 212         9900
## 213         5690
## 214         9657
## 215         9760
## 216         2961
## 217         7709
## 218          635
## 219         9367
## 220         9498
## 221         9266
## 222         7821
## 223         4566
## 224         9845
## 225         4620
## 226          576
## 227         9257
## 228         5528
## 229         6367
## 230        10368
## 231         6903
## 232        10319
## 233         9428
## 234         1438
## 235         3307
## 236         8555
## 237         4940
## 238         8562
## 239         6515
## 240        10317
## 241            5
## 242         5989
## 243         9440
## 244         1753
## 245         9335
## 246         3909
## 247          839
## 248          213
## 249         6658
## 250         6951
## 251          482
## 252         5613
## 253         6681
## 254         9136
## 255         3571
## 256          716
## 257         4096
## 258         1771
## 259          825
## 260         1231
## 261         9886
## 262          960
## 263         7119
## 264         6427
## 265         6099
## 266         9972
## 267         9787
## 268         9156
## 269         4887
## 270         5912
## 271          516
## 272         1255
## 273         4239
## 274          409
## 275         1125
## 276         4653
## 277         3151
## 278         1736
## 279         9765
## 280         3760
## 281         4779
## 282        10253
## 283         4801
## 284           12
## 285         6824
## 286         5935
## 287         9340
## 288         3341
## 289         6090
## 290         4627
## 291         9572
## 292         9922
## 293         5774
## 294        10198
## 295         5652
## 296         9823
## 297          730
## 298          729
## 299          102
## 300         5751
## 301         9454
## 302         9814
## 303         9377
## 304        10148
## 305         3559
## 306         7862
## 307         8575
## 308         6050
## 309         4276
## 310          990
## 311         9326
## 312         6551
## 313         9708
## 314           71
## 315         9749
## 316        10048
## 317         9475
## 318        10351
## 319         1026
## 320        10049
## 321         9748
## 322          281
## 323         9009
## 324         9225
## 325         9371
## 326         6010
## 327          932
## 328         6802
## 329         9531
## 330         3675
## 331         6491
## 332         1626
## 333         6996
## 334         9830
## 335         1379
## 336         7574
## 337         9717
## 338         9244
## 339         4102
## 340         6735
## 341         7548
## 342         6238
## 343         8609
## 344          880
## 345        10013
## 346         3981
## 347        10185
## 348         1665
## 349         4401
## 350        10094
## 351         7614
## 352         8505
## 353         6777
## 354         4084
## 355         1326
## 356         6326
## 357         9624
## 358         6470
## 359        10230
## 360         7590
## 361         9798
## 362         6057
## 363         4435
## 364         9455
## 365         1450
## 366         2533
## 367         9867
## 368         9957
## 369         5719
## 370         7803
## 371         9210
## 372         2673
## 373         9692
## 374         3258
## 375         6397
## 376         9146
## 377         6555
## 378         1001
## 379         4461
## 380          306
## 381         6744
## 382         4816
## 383         3941
## 384        10301
## 385         7078
## 386         4692
## 387         1247
## 388         9647
## 389         7796
## 390         1682
## 391         9752
## 392          346
## 393         3400
## 394          756
## 395         9713
## 396         3881
## 397         6032
## 398         9435
## 399         1844
## 400          377
## 401         6166
## 402        10241
## 403         6856
## 404         9597
## 405        10029
## 406         7054
## 407         9731
## 408         2995
## 409         9939
## 410         8620
## 411         9290
## 412        10034
## 413         6562
## 414        10170
## 415         7542
## 416         6314
## 417         7637
## 418         3995
## 419         3539
## 420         9038
## 421        10322
## 422         6082
## 423         9890
## 424         9304
## 425         6872
## 426         4548
## 427         5546
## 428         9617
## 429         1576
## 430         4662
## 431         1369
## 432         6525
## 433         1700
## 434         9904
## 435          779
## 436           38
## 437         2844
## 438         1787
## 439         9417
## 440        10181
## 441         3169
## 442          546
## 443         5670
## 444         9686
## 445         6509
## 446         6361
## 447        10356
## 448         5740
## 449        10130
## 450         5729
## 451         6334
## 452         9194
## 453         4469
## 454         5637
## 455         4538
## 456         7855
## 457         9652
## 458         9851
## 459          564
## 460        10304
## 461         6626
## 462         9484
## 463         5979
## 464         4755
## 465          594
## 466        10213
## 467         6782
## 468         1049
## 469         4489
## 470         7683
## 471         7276
## 472         9370
## 473         6599
## 474         9122
## 475         4877
## 476         6421
## 477         9116
## 478          817
## 479         6111
## 480        10284
## 481        10282
## 482         6722
## 483           60
## 484         6296
## 485         4826
## 486         4090
## 487         5933
## 488         7718
## 489         7288
## 490         3972
## 491         5695
## 492         4771
## 493         9994
## 494           39
## 495         4061
## 496        10088
## 497         9175
## 498         6270
## 499         1224
## 500         9271
## 501          492
## 502        10224
## 503        10297
## 504        10260
## 505         8534
## 506          738
## 507         5703
## 508         9616
## 509           96
## 510         3218
## 511         4604
## 512         1395
## 513         9560
## 514         9826
## 515         9635
## 516         4146
## 517         9580
## 518           17
## 519         5944
## 520        10385
## 521         7021
## 522         9223
## 523        10347
## 524         9552
## 525         9353
## 526         1069
## 527         9810
## 528         6097
## 529         4641
## 530        10044
## 531         9004
## 532         9111
## 533         6460
## 534         6553
## 535         9646
## 536          368
## 537         8592
## 538         6056
## 539         9471
## 540         5757
## 541         4211
## 542         9449
## 543         8549
## 544         1385
## 545         7043
## 546         1583
## 547         9375
## 548        10089
## 549         9721
## 550         6931
## 551         9028
## 552          698
## 553         9883
## 554          940
## 555         6237
## 556         9969
## 557         9391
## 558          193
## 559         8604
## 560        10225
## 561         6302
## 562         7660
## 563        10014
## 564         4406
## 565         7570
## 566         6218
## 567         3385
## 568         4089
## 569         6859
## 570         1103
## 571         4328
## 572        10009
## 573         9492
## 574         1162
## 575         1697
## 576         4820
## 577         6936
## 578         2541
## 579         1344
## 580         1455
## 581         9872
## 582         1633
## 583          222
## 584          640
## 585        10180
## 586         8571
## 587         9460
## 588         6149
## 589         9936
## 590         4291
## 591         4131
## 592         9795
## 593         6803
## 594         5550
## 595         4689
## 596         9651
## 597        10152
## 598        10250
## 599        10360
## 600         7777
## 601         7630
## 602         6163
## 603         9204
## 604         2613
## 605          672
## 606         3868
## 607        10147
## 608         9734
## 609        10207
## 610         7602
## 611         6702
## 612          394
## 613         4700
## 614         3230
## 615         3550
## 616         2681
## 617         9016
## 618         7790
## 619        10113
## 620         7071
## 621         1008
## 622          858
## 623          318
## 624         8598
## 625         4941
## 626         7523
## 627         6338
## 628         1669
## 629         8582
## 630         1853
## 631         1040
## 632         9428
## 633         6107
## 634         8609
## 635         9909
## 636         1206
## 637         1714
## 638        10244
## 639         6281
## 640         9848
## 641         4519
## 642         9756
## 643         9770
## 644         9162
## 645         6778
## 646         7282
## 647        10038
## 648         4823
## 649          384
## 650           30
## 651         3601
## 652         4009
## 653         6571
## 654         7755
## 655         4323
## 656         5934
## 657          785
## 658         1749
## 659         6276
## 660         9043
## 661         4759
## 662           85
## 663         5653
## 664        10403
## 665         2831
## 666          163
## 667         7106
## 668         1141
## 669         4443
## 670         5534
## 671        10326
## 672         3058
## 673         9571
## 674          538
## 675         1523
## 676         6023
## 677         4563
## 678         1776
## 679         9412
## 680          778
## 681         3458
## 682         8514
## 683         9240
## 684          602
## 685         9855
## 686         9691
## 687        10309
## 688        10057
## 689         6355
## 690          305
## 691         5523
## 692        10136
## 693         9337
## 694         7696
## 695         8631
## 696          459
## 697         6764
## 698         6533
## 699         5720
## 700        10240
## 701        10108
## 702          547
## 703         6075
## 704          836
## 705         6977
## 706         6138
## 707         4798
## 708          103
## 709         9308
## 710          589
## 711         6417
## 712         9536
## 713        10000
## 714         9952
## 715          137
## 716         6244
## 717         6079
## 718         9154
## 719         9591
## 720         7243
## 721        10270
## 722         7721
## 723         3414
## 724          498
## 725         3980
## 726         9640
## 727         9629
## 728         6190
## 729           45
## 730         9127
## 731        10192
## 732         7587
## 733         6503
## 734         6792
## 735         6863
## 736          431
## 737         4789
## 738         9262
## 739         6891
## 740         4613
## 741          888
## 742         2574
## 743         9699
## 744         7882
## 745         6385
## 746          917
## 747          331
## 748         4706
## 749         9916
## 750         9816
## 751         4226
## 752         1463
## 753         5763
## 754         9083
## 755        10293
## 756        10375
## 757         7008
## 758         5955
## 759         6539
## 760         9555
## 761         1596
## 762        10342
## 763         6672
## 764         9403
## 765         6135
## 766          359
## 767         4683
## 768         6640
## 769         1114
## 770         9779
## 771         4503
## 772         9316
## 773          831
## 774        10124
## 775         6309
## 776         4529
## 777         9672
## 778         9063
## 779         3138
## 780         3443
## 781         9201
## 782         5707
## 783          595
## 784         7604
## 785        10070
## 786          708
## 787         6916
## 788         9514
## 789         8530
## 790         4616
## 791         9837
## 792         7576
## 793         6890
## 794         1169
## 795         4415
## 796          420
## 797         9919
## 798         1218
## 799         9858
## 800        10393
## 801          489
## 802         9188
## 803         5797
## 804          908
## 805         3556
## 806         1690
## 807         6216
## 808         9822
## 809         9917
## 810         6225
## 811         6696
## 812          189
## 813          472
## 814         6152
## 815        10020
## 816         9236
## 817        10382
## 818         6441
## 819          214
## 820          963
## 821         3614
## 822         2636
## 823         6960
## 824         3088
## 825          648
## 826         9739
## 827         1078
## 828         6911
## 829         9964
## 830         5787
## 831         7741
## 832         6551
## 833        10330
## 834         6413
## 835         7761
## 836         9666
## 837         1638
## 838          147
## 839         9676
## 840         9422
## 841         5557
## 842          656
## 843         7032
## 844         2819
## 845         9057
## 846         9497
## 847         3829
## 848         4138
## 849         6611
## 850         3189
## 851        10175
## 852         1673
## 853        10256
## 854         6518
## 855         1866
## 856          896
## 857         9774
## 858         1134
## 859         7672
## 860         2889
## 861         1503
## 862         9278
## 863          296
## 864         6179
## 865        10400
## 866         6584
## 867         3723
## 868          749
## 869         1301
## 870         7099
## 871         7555
## 872         9931
## 873         6349
## 874         9396
## 875         4514
## 876          532
## 877         9132
## 878         9546
## 879        10141
## 880         6949
## 881         9167
## 882         3925
## 883          111
## 884         1196
## 885         6284
## 886         1757
## 887         1309
## 888         6811
## 889         9806
## 890         1407
## 891          441
## 892        10112
## 893         4678
## 894         7620
## 895          551
## 896         2787
## 897         9895
## 898        10085
## 899         1740
## 900         6266
## 901        10212
## 902         7700
## 903         7857
## 904         6103
## 905         3303
## 906         9362
## 907         7717
## 908          845
## 909         3465
## 910          254
## 911         5694
## 912         7530
## 913         1536
## 914         7104
## 915         9298
## 916         4550
## 917         9051
## 918         9504
## 919          746
## 920         4865
## 921        10076
## 922         6725
## 923          158
## 924         4450
## 925          266
## 926         1236
## 927         6496
## 928         2974
## 929        10160
## 930        10364
## 931         9604
## 932         9104
## 933         6897
## 934          771
## 935         4441
## 936         2942
## 937         9089
## 938         6955
## 939         8519
## 940         9703
## 941         4645
## 942         6664
## 943         9023
## 944          477
## 945         4569
## 946         9586
## 947         6379
## 948          800
## 949         3901
## 950        10313
## 951         9096
## 952         9280
## 953            2
## 954         5636
## 955        10274
## 956         9984
## 957         3422
## 958         5924
## 959         3993
## 960          510
## 961         9954
## 962         1709
## 963        10004
## 964         9566
## 965         7248
## 966         6758
## 967         4857
## 968          949
## 969          982
## 970          582
## 971          131
## 972         9880
## 973         8616
## 974         9791
## 975         6840
## 976         5923
## 977         9540
## 978          414
## 979         7810
## 980         9301
## 981         9192
## 982         6434
## 983         9901
## 984         5516
## 985         9037
## 986         9761
## 987         6224
## 988         9820
## 989         9267
## 990          575
## 991         5741
## 992         3329
## 993         5641
## 994        10305
## 995         9231
## 996         9496
## 997         6510
## 998         6001
## 999         9427
## 1000        9978
## 1001         550
## 1002        9589
## 1003        9334
## 1004        3910
## 1005         466
## 1006         843
## 1007           8
## 1008        2546
## 1009         483
## 1010       10262
## 1011         110
## 1012         718
## 1013        9834
## 1014        9891
## 1015        9844
## 1016         207
## 1017         961
## 1018        2643
## 1019         822
## 1020        9987
## 1021        9216
## 1022        9677
## 1023        6839
## 1024        9680
## 1025        1257
## 1026        7609
## 1027         517
## 1028         984
## 1029        9962
## 1030        5911
## 1031        7793
## 1032        4655
## 1033       10120
## 1034        1238
## 1035        1014
## 1036        1603
## 1037       10394
## 1038        9523
## 1039        9637
## 1040        8526
## 1041        2575
## 1042       10257
## 1043         150
## 1044        4241
## 1045         403
## 1046        9923
## 1047        3895
## 1048       10035
## 1049        7091
## 1050        6773
## 1051        3619
## 1052        1473
## 1053        9542
## 1054        6690
## 1055        1654
## 1056        4424
## 1057         719
## 1058        6563
## 1059        9697
## 1060        4718
## 1061        6322
## 1062        5943
## 1063        6649
## 1064        6083
## 1065         440
## 1066         687
## 1067        4285
## 1068         990
## 1069       10171
## 1070        6886
## 1071        6969
## 1072        6985
## 1073        9382
## 1074        8521
## 1075         181
## 1076        6627
## 1077        3290
## 1078        6012
## 1079        7890
## 1080        9072
## 1081        8541
## 1082        6067
## 1083        9213
## 1084        1378
## 1085        6232
## 1086        7123
## 1087        6590
## 1088        9945
## 1089        9052
## 1090        6493
## 1091        5714
## 1092        9802
## 1093       10199
## 1094        3170
## 1095        1628
## 1096        9364
## 1097        3226
## 1098       10079
## 1099        3671
## 1100        4101
## 1101        7566
## 1102        8560
## 1103        7820
## 1104         621
## 1105       10137
## 1106        8601
## 1107        6924
## 1108        7298
## 1109        4540
## 1110        6290
## 1111        5975
## 1112        1880
## 1113        9633
## 1114        2789
## 1115        3942
## 1116        1832
## 1117        1449
## 1118        3394
## 1119        7852
## 1120       10231
## 1121        7534
## 1122       10111
## 1123        9002
## 1124        1678
## 1125        4436
## 1126        7772
## 1127        9097
## 1128       10381
## 1129        6904
## 1130        3088
## 1131       10001
## 1132        1561
## 1133        3152
## 1134        2691
## 1135        7742
## 1136        4851
## 1137        7840
## 1138       10271
## 1139        4463
## 1140        5556
## 1141        6943
## 1142        4066
## 1143         565
## 1144         497
## 1145        3501
## 1146        1737
## 1147         650
## 1148        5529
## 1149        3761
## 1150          43
## 1151        5783
## 1152        6712
## 1153          64
## 1154        3928
## 1155        1126
## 1156        6745
## 1157         325
## 1158        9344
## 1159        4808
## 1160        6042
## 1161        1672
## 1162        1042
## 1163        5766
## 1164         741
## 1165        4781
## 1166       10007
## 1167         558
## 1168         126
## 1169       10145
## 1170        9287
## 1171       10155
## 1172         790
## 1173        9600
## 1174        9397
## 1175        9594
## 1176         388
## 1177         761
## 1178        1315
## 1179        9753
## 1180       10289
## 1181        1186
## 1182        9248
## 1183        7860
## 1184        9500
## 1185         802
## 1186        9474
## 1187         678
## 1188        6147
## 1189         524
## 1190        1596
## 1191          33
## 1192       10220
## 1193        5692
## 1194        6752
## 1195        4494
## 1196         272
## 1197        6547
## 1198         332
## 1199       10218
## 1200        9305
## 1201        1666
## 1202        6710
## 1203        9198
## 1204        7512
## 1205        9618
## 1206        1402
## 1207        7710
## 1208       10064
## 1209        9563
## 1210        7263
## 1211          50
## 1212        9905
## 1213       10082
## 1214        9718
## 1215       10182
## 1216        3987
## 1217        6516
## 1218       10295
## 1219        9856
## 1220        1712
## 1221        9659
## 1222        6258
## 1223        5510
## 1224        9653
## 1225        9272
## 1226         161
## 1227        4621
## 1228       10357
## 1229        9685
## 1230        2540
## 1231        9643
## 1232         871
## 1233        9518
## 1234       10367
## 1235        7571
## 1236        9548
## 1237        7600
## 1238        6366
## 1239         462
## 1240        1707
## 1241        9031
## 1242        1058
## 1243         906
## 1244        9179
## 1245        3112
## 1246       10390
## 1247         488
## 1248        6170
## 1249        9641
## 1250        5638
## 1251       10015
## 1252         397
## 1253        4486
## 1254        8506
## 1255         118
## 1256        8554
## 1257       10214
## 1258        6329
## 1259        1175
## 1260        7546
## 1261        7615
## 1262        9788
## 1263        6421
## 1264        9419
## 1265        7779
## 1266        9554
## 1267        1772
## 1268         671
## 1269        8546
## 1270        4963
## 1271        7025
## 1272        9123
## 1273         815
## 1274        9693
## 1275        9117
## 1276        9673
## 1277        9479
## 1278        9887
## 1279        9394
## 1280       10153
## 1281        9730
## 1282        9951
## 1283         170
## 1284        9973
## 1285         608
## 1286        3770
## 1287        9178
## 1288        6391
## 1289        6271
## 1290        4186
## 1291       10118
## 1292        1242
## 1293       10281
## 1294        9998
## 1295        5904
## 1296        4691
## 1297       10300
## 1298        6600
## 1299        6141
## 1300        5698
## 1301        1097
## 1302        6833
## 1303        7865
## 1304         976
## 1305        1685
## 1306        1798
## 1307        6793
## 1308        9941
## 1309        9488
## 1310        3637
## 1311         859
## 1312        9929
## 1313        6168
## 1314        6090
## 1315        6796
## 1316         919
## 1317        3918
## 1318        5752
## 1319        3342
## 1320        3104
## 1321        7021
## 1322        6854
## 1323        1464
## 1324        9352
## 1325        9378
## 1326        7049
## 1327       10333
## 1328        1286
## 1329        3876
## 1330        6852
## 1331        4601
## 1332       10024
## 1333        7750
## 1334        7048
## 1335        6992
## 1336       10167
## 1337        1028
## 1338        3541
## 1339        7642
## 1340       10127
## 1341        4133
## 1342        9012
## 1343        5712
## 1344        4549
## 1345       10067
## 1346        6875
## 1347       10047
## 1348        6679
## 1349        4158
## 1350        1370
## 1351         852
## 1352       10338
## 1353        9358
## 1354        9793
## 1355        6022
## 1356        6308
## 1357        1701
## 1358         599
## 1359        5536
## 1360       10203
## 1361        2848
## 1362        9991
## 1363        9045
## 1364        9829
## 1365        3057
## 1366        8533
## 1367         539
## 1368         446
## 1369        3425
## 1370        4566
## 1371       10133
## 1372       10377
## 1373        4469
## 1374        6900
## 1375        4449
## 1376        6362
## 1377         973
## 1378        9436
## 1379        9852
## 1380       10099
## 1381        5620
## 1382        1439
## 1383        6976
## 1384       10188
## 1385        1087
## 1386        1324
## 1387        3391
## 1388        7648
## 1389       10316
## 1390       10186
## 1391       10011
## 1392        3983
## 1393        4933
## 1394        6457
## 1395       10373
## 1396       10235
## 1397        1754
## 1398        6763
## 1399        9140
## 1400        3572
## 1401        6683
## 1402        9868
## 1403        6058
## 1404        7682
## 1405        9625
## 1406        6660
## 1407        9797
## 1408        4097
## 1409        6200
## 1410        6075
## 1411        4082
## 1412        9457
## 1413        9256
## 1414        9309
## 1415         590
## 1416        7115
## 1417        1223
## 1418        2679
## 1419        9091
## 1420        4889
## 1421        6099
## 1422        3085
## 1423        6394
## 1424        8574
## 1425        6118
## 1426         315
## 1427        1158
## 1428       10266
## 1429        9203
## 1430        9141
## 1431        4403
## 1432        7077
## 1433        4509
## 1434        9291
## 1435        3468
## 1436        7799
## 1437        9764
## 1438        3281
## 1439        3449
## 1440        8605
## 1441        6424
## 1442        3949
## 1443        9573
## 1444        6214
## 1445        1398
## 1446        2884
## 1447         755
## 1448        8583
## 1449        4802
## 1450          11
## 1451        5586
## 1452        8587
## 1453        4625
## 1454        3401
## 1455         383
## 1456        7674
## 1457        9431
## 1458        5777
## 1459       10104
## 1460        4932
## 1461        3024
## 1462        9910
## 1463       10372
## 1464         735
## 1465        6250
## 1466        9771
## 1467        8624
## 1468        8510
## 1469          97
## 1470        3560
## 1471        8621
## 1472        5967
## 1473        9164
## 1474        7734
## 1475       10032
## 1476         337
## 1477        9452
## 1478       10149
## 1479        9406
## 1480        1117
## 1481       10050
## 1482         280
## 1483        1748
## 1484       10323
## 1485        9598
## 1486        1150
## 1487        6047
## 1488       10350
## 1489        1578
## 1490        8517
## 1491         784
## 1492        3465
## 1493        6930
## 1494        9824
## 1495        9561
## 1496         931
## 1497        9321
## 1498        2951
## 1499        9390
## 1500        9532
## 1501        9415
## 1502        9341
## 1503        1725
## 1504        4555
## 1505         192
## 1506         607
## 1507        5520
## 1508         877
## 1509         491
## 1510        7592
## 1511        4797
## 1512        9088
## 1513        5798
## 1514       10363
## 1515        1786
## 1516        4404
## 1517        3639
## 1518       10179
## 1519        9485
## 1520       10361
## 1521        9690
## 1522        9184
## 1523        3107
## 1524        3374
## 1525        6532
## 1526        9702
## 1527        9487
## 1528         912
## 1529        4471
## 1530         221
## 1531        6418
## 1532        6378
## 1533         448
## 1534        5756
## 1535       10329
## 1536        9320
## 1537        7007
## 1538        9535
## 1539         633
## 1540       10251
## 1541        4159
## 1542        2613
## 1543         136
## 1544       10021
## 1545        9792
## 1546        1032
## 1547        1458
## 1548        7776
## 1549        9565
## 1550        9128
## 1551        3826
## 1552        9424
## 1553        6017
## 1554         390
## 1555        4697
## 1556         998
## 1557       10114
## 1558        1246
## 1559       10128
## 1560        9173
## 1561        9992
## 1562        1852
## 1563        1294
## 1564        7520
## 1565        3334
## 1566         889
## 1567        4622
## 1568        9825
## 1569        6991
## 1570        9333
## 1571        7586
## 1572        6624
## 1573        1212
## 1574        4612
## 1575        6577
## 1576        6825
## 1577        6894
## 1578         981
## 1579        6178
## 1580        1205
## 1581        5563
## 1582        5928
## 1583         913
## 1584        7875
## 1585        9357
## 1586        6365
## 1587        6131
## 1588        6095
## 1589        6781
## 1590        9813
## 1591        3922
## 1592        9551
## 1593        7057
## 1594        6675
## 1595        6553
## 1596        4677
## 1597        7754
## 1598        3084
## 1599        3911
## 1600        1113
## 1601       10071
## 1602        6631
## 1603       10123
## 1604       10043
## 1605        8549
## 1606        6272
## 1607        9950
## 1608        5726
## 1609        5666
## 1610        9297
## 1611        7607
## 1612        8529
## 1613        1258
## 1614        3137
## 1615        2832
## 1616        6997
## 1617        9671
## 1618        3629
## 1619        1018
## 1620        6029
## 1621        9968
## 1622         422
## 1623        1361
## 1624        9061
## 1625       10344
## 1626         170
## 1627        4617
## 1628        1168
## 1629        1694
## 1630        9603
## 1631       10103
## 1632        6148
## 1633        9285
## 1634        4329
## 1635        6954
## 1636        7665
## 1637         742
## 1638        1219
## 1639        6077
## 1640        4089
## 1641        2971
## 1642       10008
## 1643       10056
## 1644        7575
## 1645        9243
## 1646        9873
## 1647        6701
## 1648       10054
## 1649        5589
## 1650        3407
## 1651        2913
## 1652        1339
## 1653         968
## 1654        3613
## 1655        4758
## 1656        4033
## 1657        7694
## 1658        7733
## 1659        4211
## 1660        9461
## 1661        8570
## 1662        9935
## 1663        4684
## 1664        1425
## 1665        6981
## 1666       10191
## 1667        4878
## 1668        4898
## 1669        9135
## 1670        4690
## 1671        4524
## 1672        7629
## 1673        9147
## 1674        7844
## 1675        9389
## 1676        4091
## 1677        9735
## 1678        6757
## 1679        9209
## 1680        7238
## 1681        6162
## 1682        3975
## 1683        3547
## 1684        1227
## 1685       10146
## 1686       10174
## 1687        5769
## 1688        6433
## 1689        4957
## 1690        9153
## 1691        6898
## 1692        7069
## 1693        3869
## 1694        6356
## 1695        7804
## 1696        7601
## 1697        3242
## 1698        3187
## 1699         855
## 1700        2912
## 1701         344
## 1702        2531
## 1703        7667
## 1704       10223
## 1705        9776
## 1706        9581
## 1707        9934
## 1708        6501
## 1709        7647
## 1710        1392
## 1711        7781
## 1712        6107
## 1713          17
## 1714       10346
## 1715        6386
## 1716         244
## 1717        6458
## 1718        3002
## 1719        6201
## 1720        9110
## 1721       10028
## 1722        6243
## 1723        9448
## 1724       10164
## 1725        1068
## 1726        4639
## 1727       10376
## 1728        9615
## 1729        9794
## 1730        9168
## 1731        9042
## 1732       10093
## 1733        6573
## 1734        7619
## 1735        5632
## 1736        8591
## 1737        4006
## 1738        5956
## 1739        9709
## 1740        9393
## 1741        5970
## 1742        9441
## 1743        6443
## 1744          68
## 1745        1562
## 1746        9402
## 1747        9327
## 1748       10327
## 1749        6934
## 1750        9747
## 1751        6734
## 1752         696
## 1753        9029
## 1754        9411
## 1755        9513
## 1756        9557
## 1757         938
## 1758        1140
## 1759        6055
## 1760        4549
## 1761        5702
## 1762        7103
## 1763        9570
## 1764        4864
## 1765        9491
## 1766        9838
## 1767        9861
## 1768         267
## 1769        4409
## 1770       10159
## 1771       10228
## 1772        8513
## 1773        9022
## 1774        4647
## 1775       10310
## 1776         130
## 1777        6215
## 1778         232
## 1779         639
## 1780         471
## 1781        6480
## 1782        9070
## 1783       10239
## 1784        4299
## 1785       10206
## 1786         186
## 1787         478
## 1788        9237
## 1789        3902
## 1790        1601
## 1791           4
## 1792        6838
## 1793        6137
## 1794        3383
## 1795        2636
## 1796        9584
## 1797        3991
## 1798         511
## 1799        8597
## 1800        7749
## 1801        9958
## 1802        9036
## 1803        1195
## 1804        6080
## 1805         677
## 1806        6844
## 1807        1638
## 1808         413
## 1809        6556
## 1810         950
## 1811        9650
## 1812        9983
## 1813        9539
## 1814         581
## 1815        5922
## 1816        9191
## 1817        9529
## 1818        2550
## 1819       10261
## 1820        1005
## 1821        5515
## 1822        1233
## 1823        6583
## 1824        1494
## 1825        5951
## 1826        9684
## 1827        9988
## 1828        6185
## 1829        3218
## 1830        6617
## 1831        9021
## 1832        3730
## 1833        9277
## 1834        4144
## 1835        9699
## 1836         752
## 1837        3118
## 1838        7100
## 1839        4707
## 1840        1039
## 1841        3298
## 1842        7279
## 1843        3860
## 1844       10039
## 1845        1251
## 1846        9222
## 1847        7564
## 1848        7295
## 1849        9080
## 1850        5763
## 1851        6638
## 1852        9547
## 1853        4824
## 1854        6862
## 1855        3098
## 1856        9898
## 1857        6283
## 1858        3721
## 1859        8525
## 1860        6808
## 1861        5675
## 1862        9807
## 1863        9314
## 1864       10246
## 1865         986
## 1866        7884
## 1867        2761
## 1868        8545
## 1869        1532
## 1870        1604
## 1871        1101
## 1872        7037
## 1873        6488
## 1874       10075
## 1875        7528
## 1876        7711
## 1877        1239
## 1878        1383
## 1879        1796
## 1880        6003
## 1881        2577
## 1882        9216
## 1883       10211
## 1884        6694
## 1885        6888
## 1886        6740
## 1887        1875
## 1888        4110
## 1889        6301
## 1890         559
## 1891        9247
## 1892        3555
## 1893        8630
## 1894        5736
## 1895         772
## 1896       10060
## 1897        6495
## 1898        2815
## 1899        1454
## 1900       10107
## 1901        5987
## 1902        4819
## 1903        4038
## 1904        1161
## 1905        6060
## 1906        7511
## 1907        9470
## 1908         795
## 1909        8563
## 1910        6786
## 1911         962
## 1912        3580
## 1913        6046
## 1914        6962
## 1915         804
## 1916        7247
## 1917        9213
## 1918        5795
## 1919        5924
## 1920        6412
## 1921        7762
## 1922        3421
## 1923        9740
## 1924        6910
## 1925       10275
## 1926        6937
## 1927        6550
## 1928        6748
## 1929        9369
## 1930        7809
## 1931        9628
## 1932        8615
## 1933        3931
## 1934        1677
## 1935       10005
## 1936       10296
## 1937         333
## 1938        9879
## 1939        4772
## 1940          49
## 1941          56
## 1942        4100
## 1943         299
## 1944        9407
## 1945        7789
## 1946        6035
## 1947        9251
## 1948         509
## 1949        4944
## 1950        6348
## 1951       10395
## 1952          83
## 1953        1723
## 1954        9634
## 1955         326
## 1956        1447
## 1957        9665
## 1958         531
## 1959         116
## 1960        7854
## 1961       10140
## 1962        6540
## 1963        4219
## 1964        9757
## 1965        5625
## 1966       10294
## 1967       10243
## 1968        9915
## 1969        9003
## 1970        1077
## 1971       10196
## 1972         360
## 1973        1305
## 1974         557
## 1975        9443
## 1976        9646
## 1977          22
## 1978       10086
## 1979       10097
## 1980         831
## 1981        9202
## 1982        4506
## 1983        7702
## 1984         300
## 1985        9782
## 1986        7112
## 1987        5706
## 1988         704
## 1989        1406
## 1990        9722
## 1991        9506
## 1992        6918
## 1993        1133
## 1994        1098
## 1995        9930
## 1996        3620
## 1997        9754
## 1998        1671
## 1999        1045
## 2000        1864
## 2001        2865
## 2002        9772
## 2003        9543
## 2004       10144
## 2005         350
## 2006        9942
## 2007        6164
## 2008        9398
## 2009        8628
## 2010         787
## 2011        9288
## 2012        3032
## 2013        1316
## 2014        9697
## 2015       10172
## 2016         387
## 2017        6323
## 2018         755
## 2019       10036
## 2020        9595
## 2021        6569
## 2022       10332
## 2023        9165
## 2024        9249
## 2025        6869
## 2026        9892
## 2027        1405
## 2028        6262
## 2029          34
## 2030        5672
## 2031        6085
## 2032        4543
## 2033        9626
## 2034          81
## 2035       10215
## 2036        9074
## 2037        9601
## 2038        9071
## 2039        1702
## 2040        9911
## 2041        3506
## 2042        7703
## 2043       10006
## 2044        8538
## 2045        9151
## 2046        6807
## 2047        1529
## 2048        9300
## 2049        5692
## 2050        9857
## 2051        7631
## 2052        7251
## 2053        9414
## 2054         541
## 2055        6043
## 2056        5745
## 2057       10138
## 2058        9410
## 2059       10162
## 2060        6350
## 2061       10354
## 2062        9655
## 2063        9638
## 2064        8560
## 2065        6517
## 2066        7681
## 2067        7784
## 2068        4542
## 2069        9644
## 2070        1445
## 2071        1755
## 2072        1679
## 2073        1084
## 2074        1373
## 2075        1088
## 2076         550
## 2077       10306
## 2078        4890
## 2079        9098
## 2080        9310
## 2081        2790
## 2082        4567
## 2083         107
## 2084        9843
## 2085         208
## 2086        6103
## 2087        5929
## 2088        9986
## 2089        7269
## 2090        8614
## 2091       10002
## 2092        6419
## 2093        4854
## 2094        9789
## 2095       10272
## 2096        9113
## 2097        3505
## 2098         533
## 2099         412
## 2100        8588
## 2101        4067
## 2102        3948
## 2103        1013
## 2104        4784
## 2105        9124
## 2106         496
## 2107        6717
## 2108          42
## 2109        9997
## 2110        9273
## 2111         774
## 2112        9568
## 2113        1210
## 2114        4638
## 2115        9582
## 2116        6767
## 2117         128
## 2118         740
## 2119        3561
## 2120        1073
## 2121       10200
## 2122        4810
## 2123          17
## 2124        6820
## 2125        6087
## 2126        9345
## 2127        5770
## 2128         832
## 2129       10177
## 2130        2632
## 2131        9451
## 2132       10154
## 2133         721
## 2134          98
## 2135        6862
## 2136        6542
## 2137        7020
## 2138        5941
## 2139         583
## 2140        6965
## 2141        9379
## 2142        9198
## 2143       10126
## 2144        4098
## 2145        6986
## 2146        4496
## 2147        9405
## 2148        4286
## 2149       10046
## 2150        1153
## 2151        1593
## 2152       10051
## 2153       10096
## 2154         288
## 2155        9707
## 2156        9007
## 2157        9564
## 2158        1376
## 2159       10063
## 2160        6226
## 2161         928
## 2162        5713
## 2163        9246
## 2164        9322
## 2165        6008
## 2166        3227
## 2167        3433
## 2168        9719
## 2169        9990
## 2170        3989
## 2171        6488
## 2172        4408
## 2173        9458
## 2174          89
## 2175        7567
## 2176        9032
## 2177        9025
## 2178        9821
## 2179       10187
## 2180        9874
## 2181         870
## 2182        6580
## 2183        3395
## 2184       10100
## 2185         624
## 2186        8602
## 2187       10237
## 2188        6775
## 2189        6061
## 2190        3392
## 2191         470
## 2192       10016
## 2193        9974
## 2194        7588
## 2195        6285
## 2196        2544
## 2197        7768
## 2198       10041
## 2199        1637
## 2200         362
## 2201        7531
## 2202        9800
## 2203        4072
## 2204        1354
## 2205        9682
## 2206        9419
## 2207        4703
## 2208        7611
## 2209        2676
## 2210        9678
## 2211        9963
## 2212        5717
## 2213        9736
## 2214        3946
## 2215        7792
## 2216        6746
## 2217       10119
## 2218        7073
## 2219        6999
## 2220        4464
## 2221         651
## 2222        9524
## 2223        5781
## 2224        1003
## 2225         152
## 2226        9924
## 2227         324
## 2228        1249
## 2229        7675
## 2230        1492
## 2231        2882
## 2232        1139
## 2233        3875
## 2234        7050
## 2235       10078
## 2236        6622
## 2237        7083
## 2238        6990
## 2239        9431
## 2240        7698
## 2241         381
## 2242        3914
## 2243        8618
## 2244        6691
## 2245        9733
## 2246        1850
## 2247         757
## 2248        8566
## 2249         343
## 2250        1687
## 2251         201
## 2252        1277
## 2253       10031
## 2254        7735
## 2255        6208
## 2256        4603
## 2257        4136
## 2258        7615
## 2259        9621
## 2260         438
## 2261        6754
## 2262        8522
## 2263        9501
## 2264        6877
## 2265       10219
## 2266        6629
## 2267         521
## 2268        9599
## 2269        6855
## 2270        7125
## 2271        8500
## 2272       10168
## 2273        7513
## 2274        6283
## 2275        7643
## 2276        9306
## 2277        1582
## 2278        9365
## 2279        8516
## 2280        9946
## 2281        7526
## 2282        3461
## 2283        5537
## 2284        6127
## 2285        3055
## 2286         782
## 2287       10366
## 2288        9053
## 2289        9661
## 2290       10083
## 2291         140
## 2292        4862
## 2293        9906
## 2294       10183
## 2295        9214
## 2296        9803
## 2297        3182
## 2298        1409
## 2299        4447
## 2300        6654
## 2301        9642
## 2302         710
## 2303        6914
## 2304        5602
## 2305        2954
## 2306       10134
## 2307        2966
## 2308        6953
## 2309        6357
## 2310        6109
## 2311        9268
## 2312        6901
## 2313        4795
## 2314        5640
## 2315        6976
## 2316         463
## 2317        9437
## 2318        9854
## 2319        4934
## 2320         679
## 2321         841
## 2322         135
## 2323        1059
## 2324           9
## 2325        5974
## 2326        8553
## 2327        3577
## 2328         479
## 2329        6686
## 2330        9139
## 2331        6074
## 2332        9253
## 2333       10110
## 2334        1416
## 2335         592
## 2336        9255
## 2337         951
## 2338        9553
## 2339        1775
## 2340          66
## 2341        1222
## 2342        3156
## 2343         812
## 2344        9158
## 2345        9094
## 2346        9888
## 2347        9480
## 2348         171
## 2349        1159
## 2350         567
## 2351        3501
## 2352        7117
## 2353         518
## 2354        5908
## 2355        9538
## 2356        9394
## 2357        9203
## 2358        9982
## 2359         416
## 2360        9768
## 2361        5531
## 2362        1128
## 2363        9177
## 2364        4510
## 2365        4658
## 2366        6826
## 2367        6423
## 2368        9511
## 2369        4242
## 2370        1737
## 2371        6594
## 2372        3763
## 2373        6171
## 2374        1812
## 2375        9840
## 2376        5768
## 2377        6795
## 2378        9577
## 2379         891
## 2380        9121
## 2381        1658
## 2382        6797
## 2383         732
## 2384        6249
## 2385        4721
## 2386       10150
## 2387         920
## 2388        6536
## 2389        9108
## 2390        3343
## 2391        8511
## 2392        1188
## 2393        9013
## 2394        1465
## 2395        4428
## 2396        7858
## 2397        7866
## 2398        9350
## 2399         642
## 2400        9473
## 2401        1726
## 2402         688
## 2403        9384
## 2404        5501
## 2405        1029
## 2406        6994
## 2407        6707
## 2408         991
## 2409        7047
## 2410       10068
## 2411        8501
## 2412        1667
## 2413         183
## 2414        1148
## 2415        6678
## 2416        9401
## 2417         598
## 2418        5705
## 2419        6484
## 2420        9060
## 2421        9979
## 2422        6929
## 2423        6919
## 2424        6143
## 2425        6002
## 2426       10204
## 2427        1120
## 2428         278
## 2429        1629
## 2430        9967
## 2431       10340
## 2432        6304
## 2433         423
## 2434        3648
## 2435        1399
## 2436        7572
## 2437        1165
## 2438        9030
## 2439         160
## 2440        9517
## 2441        6221
## 2442         905
## 2443        1708
## 2444        9549
## 2445        1335
## 2446         974
## 2447         119
## 2448        9359
## 2449         474
## 2450       10386
## 2451         487
## 2452        7504
## 2453        9233
## 2454        4333
## 2455       10011
## 2456        9067
## 2457        7832
## 2458        3108
## 2459        1833
## 2460        9329
## 2461        9835
## 2462        3610
## 2463        2813
## 2464        9674
## 2465        9180
## 2466        1176
## 2467        2539
## 2468        9869
## 2469       10380
## 2470        4437
## 2471        4967
## 2472        1516
## 2473        7743
## 2474        4695
## 2475        6958
## 2476        8527
## 2477        2665
## 2478        3089
## 2479        6908
## 2480        8547
## 2481       10265
## 2482        4183
## 2483        6944
## 2484        7758
## 2485        1245
## 2486         310
## 2487        9239
## 2488         398
## 2489        3767
## 2490        4522
## 2491        7593
## 2492        9293
## 2493         192
## 2494         609
## 2495        9494
## 2496        7022
## 2497        9144
## 2498         862
## 2499        2608
## 2500        3243
## 2501        6392
## 2502       10299
## 2503        8606
## 2504        9217
## 2505        6142
## 2506        3453
## 2507        7801
## 2508        5905
## 2509        2532
## 2510        1293
## 2511         975
## 2512        9866
## 2513        3753
## 2514        9933
## 2515        9047
## 2516        2911
## 2517        6614
## 2518        7517
## 2519        3894
## 2520         245
## 2521        6177
## 2522        4552
## 2523        7562
## 2524        6343
## 2525         752
## 2526        9276
## 2527        7091
## 2528        4754
## 2529        7060
## 2530        8622
## 2531        7278
## 2532        5623
## 2533        5927
## 2534        6853
## 2535       10027
## 2536        2793
## 2537        6780
## 2538        3921
## 2539        1512
## 2540       10163
## 2541       10242
## 2542        1680
## 2543        9134
## 2544        6572
## 2545        9040
## 2546        9808
## 2547        1201
## 2548        3164
## 2549        7753
## 2550        1318
## 2551        4000
## 2552        7618
## 2553        3283
## 2554         529
## 2555        4673
## 2556        4876
## 2557        7889
## 2558        1743
## 2559        9442
## 2560        6632
## 2561        1569
## 2562        5724
## 2563       10324
## 2564        6732
## 2565         848
## 2566       10087
## 2567        1784
## 2568       10210
## 2569        9509
## 2570        6593
## 2571        7102
## 2572        3067
## 2573       10074
## 2574        3765
## 2575         444
## 2576        1146
## 2577        9242
## 2578         743
## 2579        2914
## 2580         574
## 2581        6957
## 2582       10362
## 2583         268
## 2584        9602
## 2585        3454
## 2586        9087
## 2587        9339
## 2588        1046
## 2589        6076
## 2590        7825
## 2591        6899
## 2592        2994
## 2593        9024
## 2594        4651
## 2595        8512
## 2596        6529
## 2597        9746
## 2598        9689
## 2599         560
## 2600        4757
## 2601       10106
## 2602        9702
## 2603        9486
## 2604        7731
## 2605        6660
## 2606         449
## 2607           4
## 2608        5986
## 2609        4478
## 2610        9283
## 2611        7246
## 2612        4037
## 2613        4800
## 2614        6979
## 2615         513
## 2616        9903
## 2617        1711
## 2618        9534
## 2619        3420
## 2620         941
## 2621        9319
## 2622        9729
## 2623        6760
## 2624         820
## 2625        6842
## 2626         805
## 2627         475
## 2628         139
## 2629        1226
## 2630       10315
## 2631       10280
## 2632        5921
## 2633        2567
## 2634         335
## 2635        8584
## 2636        9303
## 2637        6431
## 2638          58
## 2639        6124
## 2640        6603
## 2641        9172
## 2642        1234
## 2643        7670
## 2644        9878
## 2645        9763
## 2646        5514
## 2647        6500
## 2648        4610
## 2649         881
## 2650        3336
## 2651       10285
## 2652        5701
## 2653        9914
## 2654        9332
## 2655        6578
## 2656        1393
## 2657        6387
## 2658        9828
## 2659        3117
## 2660        6893
## 2661         914
## 2662        1252
## 2663        9221
## 2664        9355
## 2665        9112
## 2666        5562
## 2667        6130
## 2668        9265
## 2669        5760
## 2670        7879
## 2671        6653
## 2672        4231
## 2673        6240
## 2674        9550
## 2675        9812
## 2676         797
## 2677       10345
## 2678        6054
## 2679        3678
## 2680        6674
## 2681        3906
## 2682        3912
## 2683        1109
## 2684         327
## 2685        9971
## 2686         989
## 2687        2670
## 2688        8548
## 2689        4709
## 2690        9313
## 2691        1605
## 2692        6998
## 2693        9781
## 2694        9065
## 2695        6933
## 2696        1260
## 2697        9562
## 2698        1240
## 2699        8532
## 2700        9670
## 2701        1022
## 2702        9512
## 2703       10072
## 2704        6300
## 2705        4618
## 2706        2581
## 2707        6552
## 2708         702
## 2709       10391
## 2710         490
## 2711        9185
## 2712        7664
## 2713        5799
## 2714        4109
## 2715        6700
## 2716        6887
## 2717        3554
## 2718        1221
## 2719        9490
## 2720         418
## 2721         910
## 2722        7574
## 2723         195
## 2724        1660
## 2725        4818
## 2726        3370
## 2727        1453
## 2728        9238
## 2729       10384
## 2730        8509
## 2731        6472
## 2732        9377
## 2733        1160
## 2734         969
## 2735        8573
## 2736        6836
## 2737        2641
## 2738         664
## 2739       10328
## 2740        4429
## 2741         637
## 2742         218
## 2743        9839
## 2744        4751
## 2745        7027
## 2746        3579
## 2747        9148
## 2748        3086
## 2749        6913
## 2750        7778
## 2751        9649
## 2752        7843
## 2753        6410
## 2754        1460
## 2755        1031
## 2756        9669
## 2757        9206
## 2758        2830
## 2759         856
## 2760        3800
## 2761        1676
## 2762        1693
## 2763        4953
## 2764        7805
## 2765         392
## 2766        9966
## 2767         292
## 2768       10254
## 2769        3185
## 2770        9252
## 2771       10402
## 2772        7678
## 2773        7782
## 2774        6184
## 2775        4943
## 2776        1543
## 2777        6037
##                                                                                                                            Facility.Name
## 1                                                                                                                     Hospice at Lourdes
## 2                                                                                                Charles T Sitrin Health Care Center Inc
## 3                                                                                         Central Park Rehabilitation and Nursing Center
## 4                                                                                                                 East Side Nursing Home
## 5                                                                                                           Wellsville Manor Care Center
## 6                                                                                                      Harris Hill Nursing Facility, LLC
## 7                                                                                                               Garden City Surgi Center
## 8                                                                                                                               Willcare
## 9                                                                                                                  Good Shepherd Hospice
## 10                                                                                                                NYU Langone Rutherford
## 11                                                                                                  Endoscopy Center of Long Island, LLC
## 12                                                                                                                 Gorman Imaging Center
## 13                                                                                                       Park Ridge Family Health Center
## 14                                                                                                               Primary Care Associates
## 15                                                                                                       Baker Victory Healthcare Center
## 16                                                                                                     Gladys Brooks Sports Rehab Center
## 17                                                                                               Community Health Center of Buffalo, Inc
## 18                                                                                                                         FedCare, Inc.
## 19                                                                                                        Liberty Hudson Valley Dialysis
## 20                                                                                                             Tupper Lake Health Center
## 21                                                                                                               Griffiss Surgery Center
## 22                                                                                                            Holiday Park Health Center
## 23                                                                                                               Strong Brockport Clinic
## 24                                                                                                            H.K. Freedman Renal Center
## 25                                                                                                                             PBGS, LLC
## 26                                                                                                          Regency Dialysis Center, LLC
## 27                                                                                                                      Parkmed NYC, LLC
## 28                                                                                                                   East Islip Dialysis
## 29                                                                                                             East Hills Surgery Center
## 30                                                                          Specialty Eye Surgery and Laser Center of the Capital Region
## 31                                                                                                              WMY Seal a Smile Program
## 32                                                                                                                      St Patricks Home
## 33                                                                                                       Prime Home Health Services, LLC
## 34                                                                                               Elcor Nursing and Rehabilitation Center
## 35                                                                                                      Segundo Ruiz Belvis D & T Center
## 36                                                                                                             Alcohol Outpatient Clinic
## 37                                                                                                            Bassett Healthcare Oneonta
## 38                                                                                   Crystal Run Ambulatory Surgery Center of Middletown
## 39                                                                                                    Vassar Bros Hosp Wound Care Center
## 40                                                                                                          Smile New York Outreach, LLC
## 41                                                                                                    Fort Greene District Health Center
## 42                                                                                                       Fresenius Kidney Care - Niagara
## 43                                                                                                                Queens Dialysis Center
## 44                                                                                                                  Corona Health Center
## 45                                                                                           Planned Parenthood White Plains Mobile Unit
## 46                                                                                         North Country Family Health Center - Lowville
## 47                                                                                                     Hempstead Community Health Center
## 48                                                                                                        South Troy Primary Care Center
## 49                                                                              Comprehensive Health Care & Rehabilitation Services, LLC
## 50                                                                                       EPIC Rehabilitation and Nursing at White Plains
## 51                                                                                                                                  PS 1
## 52                                                                             Montefiore Medical Center - Montefiore Westchester Square
## 53                                                                                                              Rockland County Dialysis
## 54                                                                                                                    MS 88 Peter Rouget
## 55                                                                                                        South Beach Psychiatric Center
## 56                                                                                                                 Renal Care of Buffalo
## 57                                                                                      Ontario Center for Rehabilitation and Healthcare
## 58                                                                                                      Health Opportunities High School
## 59                                                                                                                       FMS-Morris Park
## 60                                                                      Comprehensive Rehabilitation and Nursing Center at Williamsville
## 61                                                                                                              Mosaic Health Mt. Morris
## 62                                                                                                     F-SLH Regional Cancer Center Rome
## 63                                                                                                             Phelps Psychiatric Clinic
## 64                                                                                              Cumberland Diagnostic & Treatment Center
## 65                                                                                                  Good Samaritan Hosp Pre-Surg Testing
## 66                                                                                                Eastern Niagara Hospital at Davison Ct
## 67                                                                                                       Clifton Springs Family Medicine
## 68                                                                                                North Shore LIJ Imaging at Garden City
## 69                                                                                                               Mount Sinai Morningside
## 70                                                                                                                   Greene Medical Arts
## 71                                                                                                        Vassar Brothers Medical Center
## 72                                                                                                PHC-Outpatient Rehabilitation Services
## 73                                                                                                          Fulton Medical Health Center
## 74                                                                                     Southern Tier Community Health Center Network Inc
## 75                                                                                                                WIHD Mobile Dental Van
## 76                                                                                                                  New Dorp High School
## 77                                                                                                             Buffalo Downtown Dialysis
## 78                                                                                                 Elizabethtown Community Health Center
## 79                                                                                                Nassau Rehabilitation & Nursing Center
## 80                                                                                                                URMC Ambulatory Center
## 81                                                                                                 Century Medical & Dental Center, Inc.
## 82                                                                                                           Cadman Family Health Center
## 83                                                                                                                     Middle School 142
## 84                                                                                                                John Adams High School
## 85                                                                                                            Enrico Fermi Dental Clinic
## 86                                                                                                               New York GI Center, LLC
## 87                                                                                                                      HRHCare Kingston
## 88                                                                        John T Mather Memorial Hospital of Port Jefferson New York Inc
## 89                                                                                                      Homecrest District Health Center
## 90                                                                                              Lenox Hill Hosp Center for Mental Health
## 91                                                                                  Bellhaven Center for Rehabilitation and Nursing Care
## 92                                                                                                       Jewish Home of Central New York
## 93                                                                                                               Heuvelton Health Center
## 94                                                                                                         Friedwald Center For Dialysis
## 95                                                                                                                  Bronx River Dialysis
## 96                                                                                                 Fort Edward - Kingsbury Health Center
## 97                                                                                            Health Services of Northern New York, Inc.
## 98                                                                                                               Dry Harbor Nursing Home
## 99                                                                             Visiting Nurse Association of Utica and Oneida County Inc
## 100                                                                                                                     His Branches Inc
## 101                                                                                                                  OMNI Surgery Center
## 102                                                                                                                 LaClinica del Barrio
## 103                                                                                                        Ambulatory Psychiatric Center
## 104                                                                                                                        Visiting Docs
## 105                                                                             New York Presbyterian/Hudson Valley Diagnostic Radiology
## 106                                                                                                                St. Mary's Healthcare
## 107                                                                                                         J T Mather Wound Care Clinic
## 108                                                                                                                   Avicenna ASC, Inc.
## 109                                                                                         Ryan/Chelsea-Clinton Community Health Center
## 110                                                                                                                     ArchCare at Home
## 111                                                                                                            Cazenovia Senior Services
## 112                                                                                                                               PS 288
## 113                                                                                                          Fifth Avenue Surgery Center
## 114                                                                                                      Memorial Sloan Kettering Nassau
## 115                                                                                                          Sandford Boulevard Dialysis
## 116                                                                                                 Cornwall Radiation Oncology Services
## 117                                                                                                  Penn Fair Medical & Pediatric Group
## 118                                                                                             Garnet Health Medical Center - Catskills
## 119                                                                                                                               MS 363
## 120                                                                                                   Stony Brook Family Practice Center
## 121                                                                                                            Frederick Douglas Academy
## 122                                                                                                       SJHHC Northeast Medical Center
## 123                                                                                                                      Eddy SeniorCare
## 124                                                                                                                 Mental Health Clinic
## 125                                                                                             Planned Parenthood Corning Health Center
## 126                                                                                                                     Brooklyn Medcare
## 127                                                                                                      Ira Davenport Memorial Hospital
## 128                                                                                          New England Laser & Cosmetic Surgery Center
## 129                                                                                                                    Schuyler Dialysis
## 130                                                                                                    Lower Eastside Service Center Inc
## 131                                                                                                            Elmhurst Care Center, Inc
## 132                                                                                                    LIJMC-Satellite Dialysis Facility
## 133                                                                                                       Albany Medical Center Hospital
## 134                                                                                      Westchester Medical Center - Mobile Medical Van
## 135                                                                                                    The Health Center On Broad Street
## 136                                                                                              Oswego Hosp/Mexico Family Health Center
## 137                                                                                                     Floating Hospital (Incorporated)
## 138                                                                                                 The NSUH Imaging Center at Smithtown
## 139                                                                                               Wayne Co Public Health Nursing Service
## 140                                                                                     Split Rock Rehabilitation and Health Care Center
## 141                                                                                              Planned Parenthood Elmira Health Center
## 142                                                                                                St Josephs Hospital Health Center-Asc
## 143                                                                                             St. Peter's Surgery And Endoscopy Center
## 144                                                                                                                    Whitesboro Office
## 145                                                                                   Livingston Hills Nursing and Rehabilitation Center
## 146                                                                                                                      Kindred at Home
## 147                                                                               Bassett Healthcare Network Oneonta Surgical Associates
## 148                                                                                                     Monroe Co Dept of Health Clinics
## 149                                                                                                                    The Womens Center
## 150                                                                                                FSLH - St. Luke's Home Renal Dialysis
## 151                                                                                                       Samaritan Family Health Center
## 152                                                                                 Waters Edge Rehab & Nursing Center at Port Jefferson
## 153                                                                                         St Camillus Residential Health Care Facility
## 154                                                                                  Memorial Sloan Kettering 55th Street Imaging Center
## 155                                                                                                  Housing Works East 9th Street ADHCP
## 156                                                                                          Cornerstone Family Healthcare at Middletown
## 157                                                                                                                    GuildCare Buffalo
## 158                                                                                        Ambulatory Surgery Center of Greater New York
## 159                                                                                              Be Well Primary Health Care Center, LLC
## 160                                                                                                  Williamsbridge Home Dialysis Center
## 161                                                                                                      St Joseph's Hosp Outpatient Svs
## 162                                                                                    Northeast/Northwest College Prepatory High School
## 163                                                                                           Troy Center for Rehabilitation and Nursing
## 164                                                                                                         Community Healthcare Network
## 165                                                                                   United Memorial Medical Center North Street Campus
## 166                                                                                                                     GuildCare Albany
## 167                                                                                                  Adolescent Drug & Alcohol Abuse Prg
## 168                                                                                                      Cayuga Medical Center at Ithaca
## 169                                                                                            Fordham-Tremont Comm Mental Health Center
## 170                                                                                                        Middleburgh Elementary School
## 171                                                                                            Project Renewal Health 45th Street Clinic
## 172                                                                                 The Enclave at Rye Rehabilitation and Nursing Center
## 173                                                                                                           HSS Ambulatory Care Clinic
## 174                                                                                                   Henry J. Carter Specialty Hospital
## 175                                                                                            Christian Health Service of Syracuse, Inc
## 176                                                                                               Charles B Wang Comm Health Care Center
## 177                                                                                       Little Sisters of the Assumption Family Health
## 178                                                                                                         Main Street Physical Therapy
## 179                                                                                                    Excellent Home Care Services, LLC
## 180                                                                                                           NSUH Imaging at Great Neck
## 181                                                                                  Visiting Nurse Service and Hospice of Suffolk, Inc.
## 182                                                                                                              MS 293 - Global Studies
## 183                                                                                   Renaissance Rehabilitation and Nursing Care Center
## 184                                                                                                   Acacia Certified Home Care Company
## 185                                                                   Rosa Coplon Jewish Home and Infirmary Certified Home Health Agency
## 186                                                                                           Brooklyn Hospital Center - Downtown Campus
## 187                                                                                   Boro Park Center for Rehabilitation and Healthcare
## 188                                                                                              Ira Davenport Memorial Hospital SNF/HRF
## 189                                                                                                      Wayne Medical Group/The Commons
## 190                                                                       The Brook at High Falls Nursing Home and Rehabilitation Center
## 191                                                                                                             Mount Sinai South Nassau
## 192                                                                                                                               PS 457
## 193                                                                                                Neighborhood Health Center Southtowns
## 194                                                                                                       Eddy Memorial Geriatric Center
## 195                                                                      Long Island Jewish Medical Center Primary Care Extension Clinic
## 196                                                                          Open Door Family Medical Center Mobile Van Extension Clinic
## 197                                                                                                             River Community Wellness
## 198                                                                                                       Samaritan Family Health Center
## 199                                                                                               Springfield Gardens Educational Campus
## 200                                                                                                     CMH Mobile Dental School Program
## 201                                                                                                                  Greenpoint Dialysis
## 202                                                                         HealthAlliance Hosp Mary's Ave Campus-Psych Extension Clinic
## 203                                                                                                 Rebekah Certified Home Health Agency
## 204                                                                                     Saratoga Hospital Outpatient Center at Care Lane
## 205                                                                                                     Jones Hospital Healthcare Clinic
## 206                                                                         Community Memorial Hospital - Cazenovia Family Health Center
## 207                                                                                            Family Health Center Bushwick High School
## 208                                                                                                    Wayne Medical Group - Orthopedics
## 209                                                                                                        Union Community Health Center
## 210                                                                                                                Sutphin Health Center
## 211                                                                         Union Community Health Center Comprehensive Family Dentistry
## 212                                                                                                       FMS - Westmere Dialysis Center
## 213                                                                                                            Main-Depew Medical Office
## 214                                                                                                    Mt. Sinai Adult Treatment Program
## 215                                                                                              The Rehab Center and the Hearing Center
## 216                                                                                                            Montefiore Medical Center
## 217                                                                                                  Family Practice Center of New Paltz
## 218                                                                                       University Hospital SUNY Health Science Center
## 219                                                                                                      Jackson Avenue Family Residence
## 220                                                                                                     Mohawk Valley Eye Surgery Center
## 221                                                                                                                        CHN - Tremont
## 222                                                                                                   Memorial Sloan Kettering Hauppauge
## 223                                                                                   Brian Picolo/Intermediate School #53 School Clinic
## 224                                                                                New York Presbyterian / Lower Manhattan Cancer Center
## 225                                                                                                                 PS 83 Mendoza School
## 226                                                                                   Planned Parenthood of Central and Western New York
## 227                                                                                          U.S. Renal Care Cheektowaga Dialysis Center
## 228                                                                                    NYU Langone Winthrop Infusion and Dialysis Center
## 229                                                                                                  Extension Clinic at Center Moriches
## 230                                                                                          UR Medicine/Thompson Health OB/GYN - Geneva
## 231                                                                                                   PS 11 Wt Harris/The Clinton School
## 232                                                                                                                      Beacon Dialysis
## 233                                                                                                          NSUH LIJ Imaging at Syosset
## 234                                                                                                             Bellevue Hospital Center
## 235                                                                                            East Neck Nursing & Rehabilitation Center
## 236                                                                                                              Fox Run at Orchard Park
## 237                                                                                                                    LISH at Smithtown
## 238                                                                                                    Steele Avenue Primary Care Center
## 239                                                                                                           DCI-Rubin Dialysis Centers
## 240                                                                                                  Medisys Family Care - Hollis Tudors
## 241                                                                                                                   St Peters Hospital
## 242                                             Family Care Certified Services, a Division of Tri-Borough Certified Health Systems of NY
## 243                                                                                              Ahava Medical and Rehabilitation Center
## 244                                                                               Silver Lake Specialized Rehabilitation and Care Center
## 245                                                                                                 CHMC - Ravinder Agarwal Renal Center
## 246                                                                                              Dunkirk Rehabilitation & Nursing Center
## 247                                                                                    Schenectady Center for Rehabilitation and Nursing
## 248                                                                                                            Mercy Hospital of Buffalo
## 249                                                                                                Joseph P Addabbo Family Health Center
## 250                                                                                                               PS 042 Benjamin Altman
## 251                                                                                    St. Mary's Healthcare - Amsterdam Memorial Campus
## 252                                                                                                    Eleanor Roosevelt Houses Child HC
## 253                                                                                                         Kings Harbor Dialysis Center
## 254                                                                                                           Woodland Pond at New Paltz
## 255                                                                                        Planned Parenthood Hudson Peconic - Patchogue
## 256                                                                             The Villages of Orleans Health and Rehabilitation Center
## 257                                       Family Care Certified Services, a Division of Tri-Borough Certified Health Systems of New York
## 258                                                                                                                      VNA Home Health
## 259                                                                                   Saratoga Center for Rehab and Skilled Nursing Care
## 260                                                                                    Eastchester Rehabilitation and Health Care Center
## 261                                                                    Cornerstone Family Healthcare at the Binghamton Housing Authority
## 262                                                                                          Planned Parenthood Monticello Health Center
## 263                                                                                                      Asian Health Center of Flushing
## 264                                                                                                   Carol Molinaro DCI Dialysis Center
## 265                                                                                                   Capital District Internal Medicine
## 266                                                                                                                               PS 164
## 267                                                                          Montefiore Medical Center - Wellness Center at Waters Place
## 268                                                                                                  Sillerman Center for Rehabilitation
## 269                                                                                      Bronx Gardens Rehabilitation and Nursing Center
## 270                                                                                                                 Fingerlakes UCP, Inc
## 271                                                                           The Grand Pavilion for Rehab & Nursing at Rockville Centre
## 272                                                                                   Bethany Nursing Home & Health Related Facility Inc
## 273                                                                                        Morningside Nursing and Rehabilitation Center
## 274                                                                                                                    Highland Hospital
## 275                                                                                                              St Cabrini Nursing Home
## 276                                                                                                                PS 55 & Mott Hall III
## 277                                                                                                      Guthrie Cortland Medical Center
## 278                                                                                             Beacon Rehabilitation and Nursing Center
## 279                                                                                                              Massena Dialysis Center
## 280                                                                                                             Brooks Memorial Hospital
## 281                                                                                                                                PS 38
## 282                                                                                                                     Evergreen Health
## 283                                                                                             Montefiore Dental Center@Bronx Muni Hosp
## 284                                                                          Oswego Hospital - Alvin L Krakau Comm Mtl Health Center Div
## 285                                                                                                Bassett Health-Herkimer Cardiac Rehab
## 286                                                                                                                  Niagara Hospice Inc
## 287                                                                                                              Syracuse Surgery Center
## 288                                                                                               Jefferson County Public Health Service
## 289                                                                                                                   Cohoes Family Care
## 290                                                                                                                West Side High School
## 291                                                                               FMS Southern Manhattan Dialysis Center - Monroe County
## 292                                                                                                       NDH Cardiac Testing - Kingston
## 293                                                                                                              Elderwood at Wheatfield
## 294                                                                                                         Ridgewood Communicare Center
## 295                                                                                                         Utica Avenue Dialysis Clinic
## 296                                                                                Beacon Christian Community Health Center - Annex Site
## 297                                                                                                            Oswego County Health Dept
## 298                                                                                                      Oswego County Opportunities Inc
## 299                                                                                                               UPMC Chautauqua at WCA
## 300                                                                                                 Western New York State Veterans Home
## 301                                                                                   Cornerstone Family Healthcare:  Mobile Health Unit
## 302                                                                                                         CMH Twin County Sleep Center
## 303                                                                                          North Shore/LIJ Imaging Center at Glen Cove
## 304                                                                                                 Lourdes Mammo on the Move Mobile Van
## 305                                                                                                      Hospice and Palliative Care Inc
## 306                                             NY-Presbyterian Brooklyn Methodist Hospital, Rehab Center and Women & Children's Clinics
## 307                                                                                                 Queens Dialysis at The Pavilion, LLC
## 308                                                                                        Townhouse Center for Rehabilitation & Nursing
## 309                                                                                                Cross County Shopping Mall Ext Clinic
## 310                                                                                              HealthAlliance Hospital Broadway Campus
## 311                                                                                                             Brooklyn Dialysis Center
## 312                                                                                                             St Peters Hospital-SPARC
## 313                                                                                                            Freedom Center of Buffalo
## 314                                                                           The Pines Healthcare & Rehabilitation Centers Olean Campus
## 315                                                                                                     Precision CyberKnife of New York
## 316                                                                                                          Care for the Homeless, Inc.
## 317                                                                                                                  Mobile Medical Unit
## 318                                                                                                               Adirondack Urgent Care
## 319                                                                                  Washington Center for Rehabilitation and Healthcare
## 320                                                                                                  Fresenius Kidney Care - Lindenhurst
## 321                                                                                                        Cardiac Testing - New Windsor
## 322                                                                                   Jennie B Richmond Chaffee Nursing Home Company Inc
## 323                                                                                                         Center for Advanced Medicine
## 324                                                                                                                AMS Mammography Suite
## 325                                                                                          Rochester General Imaging at Alexander Park
## 326                                                                                                      Daniel Squire Oral D & T Center
## 327                                                                                           Ross Center for Nursing and Rehabilitation
## 328                                                                                                            A Merryland Health Center
## 329                                                                                                                     URMC Strong West
## 330                                                                                                      Northern Erie Clinical Services
## 331                                                                NYU Langone Perlmutter Cancer Center - Winthrop Breast Imaging Center
## 332                                                                                                             Elmhurst Hospital Center
## 333                                                                                                               Joslin Diabetes Center
## 334                                                                  The Dr. Laurie Sands and Constellation Brands Breast Imaging Center
## 335                                                                                            New Carlton Rehab and Nursing Center, LLC
## 336                                                                                                    Capital Region Family Health Care
## 337                                                                                        ODA Primary Health Care Network Dental Clinic
## 338                                                                                                       Mohawk Valley Endoscopy Center
## 339                                                                                                                Sleep Disorder Center
## 340                                                                                                           Clyde Family Health Center
## 341                                                                                                              Case Junior High School
## 342                                                                                           Public Health Solutions Brownsville Center
## 343                                                                            St. Peter's Amyotrophic Lateral Sclerosis Regional Center
## 344                                                                                                                   HRHCare Amityville
## 345                                                                                                            Jamaica Hillside Dialysis
## 346                                                                                       Hospice Care of Long Island,Queens South Shore
## 347                                                                                                 UPSTATE Cancer Center at Seneca Hill
## 348                                                                                                     St. Mary's Hospital for Children
## 349                                                                                                       Community Mental Health Center
## 350                                                                                                         Park West Educational Campus
## 351                                                                                             Reg Imaging and Therapeutic Rad Services
## 352                                                                                                 Bensonhurst Clinic Treatment Program
## 353                                                                                                                     MHHC Mobile Unit
## 354                                                                                                   Arnold Gregory Ambulatory Services
## 355                                                                                                            Warrensburg Health Center
## 356                                                                                                          Hudson River Healthcare Inc
## 357                                                                                                   Massena Hospital Outpatient Center
## 358                                                                                                                              CES 126
## 359                                                                                         St. James Hospital - Medical Office Building
## 360                                                                                                            South Bronx Health Center
## 361                                                                                                       Lourdes Mobile Mammography Van
## 362                                                                                               MVHS Rehabilitation and Nursing Center
## 363                                                                                                       Psychiatric Out-Patient Clinic
## 364                                                                                      Cornerstone Family Healthcare at Highland Falls
## 365                                                                                                                  Lenox Hill Hospital
## 366                                                                                  Middletown Park Rehabilitation & Health Care Center
## 367                                                                                                                  CHN Mobile Unit Two
## 368                                                                                                             Freedom Center of Queens
## 369                                                                                                       TCH Chemical Dependency Clinic
## 370                                                                                                           Premier Healthcare Bayside
## 371                                                                                                   Schuylerville Family Health Center
## 372                                                                                                               Vincent P. Dole Clinic
## 373                                                                                                          CenterLight Healthcare D&TC
## 374                                                                                                       Hollis Park Manor Nursing Home
## 375                                                                                                         Advanced Imaging at Baybrook
## 376                                                                                             Valley Health Services ADHC Little Falls
## 377                                                                                                       Pediatric Dentistry Ext Clinic
## 378                                                                                      New Paltz Center for Rehabilitation and Nursing
## 379                                                                                                             Park Ridge Mental Health
## 380                                                                                           Adirondack Medical Center-Lake Placid Site
## 381                                                                                                         Bivona Child Advocacy Center
## 382                                                                                                         Internal Medicine Associates
## 383                                                                                                   Women's Health & Birthing Pavilion
## 384                                                                                                       Rockaways ASC Development, LLC
## 385                                                                                                  Columbia University Health Care Inc
## 386                                                                                            Intermediate School 143 Eleanor Roosevelt
## 387                                                                                 Williamsbridge Center for Rehabilitation and Nursing
## 388                                                                                                                  Milton Medical Arts
## 389                                                                                                                    PS 282 Park Slope
## 390                                                                                      Forest View Center for Rehabilitation & Nursing
## 391                                                                                                               Mobile Van Mammography
## 392                                                                                                     Genesee County Health Department
## 393                                                                                                                 Bolton Health Center
## 394                                                                                                                   Samaritan Hospital
## 395                                                                                                                    Rogosin West Side
## 396                                                                                                                       United Hospice
## 397                                                                                           Memorial Sloan Kettering Counseling Center
## 398                                                                                                           Sunnyview Therapy Services
## 399                                                                                         Good Samaritan Hospital Home Care Department
## 400                                                                                                                 River Hospital, Inc.
## 401                                                                                                     Incarnation Childrens Center Inc
## 402                                                                                                Yorktown Center for Specialty Surgery
## 403                                                                                                         Center for Advanced Medicine
## 404                                                                                                             Behavioral Health Clinic
## 405                                                                                                St. Luke's Cornwall Hospital/Newburgh
## 406                                                                                                                 Avon Family Medicine
## 407                                                                                                                    Park Gardens CHHA
## 408                                                                                               Cincinnatus Rural Health Center Clinic
## 409                                                                                      FHN-Pediatric and Family Practice Health Center
## 410                                                                                           Planned Parenthood Amsterdam Health Center
## 411                                                                                                             Heritage One Day Surgery
## 412                                                                                                Open Door Family Medical Center, Inc.
## 413                                                               Planned Parenthood of Central and Western New York Mobile Van Services
## 414                                                                                                            Lotus Health and Wellness
## 415                                                                                              Buffalo Elementary School of Technology
## 416                                                                                              NYU Winthrop Hospital Diagnostic Center
## 417                                                                                                  Unity Health System Family Practice
## 418                                                                                                                      Broadway Clinic
## 419                                                                                                           Bethel Nursing Home Co Inc
## 420                                                                                           GSHMC-Central Regional Laboratory Services
## 421                                                                                                       ODA Primary Health Care Center
## 422                                                                                                          Eddy Seniorcare PACE Center
## 423                                                                                                       UR Medicine Urgent Care Newark
## 424                                                                                               Sisters Central Park Diagnostic Center
## 425                                                                                       Beacon Christian Community Health Center, Inc.
## 426                                                                                                           University Dialysis Center
## 427                                                                                     Hopkins Center for Rehabilitation and Healthcare
## 428                                                                                                                           PS 153/368
## 429                                                                                                              Ditmas Park Care Center
## 430                                                                                                     Washington Heights Family Center
## 431                                                                                                NY Congregational Nursing Center, Inc
## 432                                                                                                     Surgical Consultation Ext Clinic
## 433                                                                      Woodcrest Rehabilitation & Residential Health Care Center., LLC
## 434                                                                                                              Premier Dialysis Center
## 435                                                                                                   Good Samaritan Hospital of Suffern
## 436                                                                                                       Cuba Memorial Hospital Inc SNF
## 437                                                                                                  Oak Orchard Community Health Center
## 438                                                                                                                  HCR / HCR Home Care
## 439                                                                                                  North Tonawanda Primary Care Center
## 440                                                                                                              P.S. 092 Adrian Hegeman
## 441                                                                                                         St Camillus Home Care Agency
## 442                                                                                     Sands Point Center for Health and Rehabilitation
## 443                                                                                                                   Schervier Pavilion
## 444                                                                                                        Schofield Certified Home Care
## 445                                                                                                         Thomas Jefferson High School
## 446                                                                                                               Suffolk Primary Health
## 447                                                                                                              PS 194 Raoul Wallenberg
## 448                                                                                                       NYP/Queens Primary Care Center
## 449                                                                                                            Wyckoff Doctors at Myrtle
## 450                                                                                                                  Edie Windsor Center
## 451                                                                                                           Maria Regina Residence Inc
## 452                                                                                                              Sunset Park High School
## 453                                                                                                         Troy Pediatric Health Center
## 454                                                                                               BronxCare Crotona Park Family Practice
## 455                                                                                                        Perinatology Extension Clinic
## 456                                                                                                           Island Eye Surgicenter LLC
## 457                                                                                                         Waters Place Dialysis Center
## 458                                                Rose F. Kennedy Center, Children's Evaluation and Rehabilitation Center at Montefiore
## 459                                                                                  The Grand Rehabilitation and Nursing at South Point
## 460                                                                                                                     WPH Sleep Center
## 461                                                                                              U.S. Renal Care South Flushing Dialysis
## 462                                                                                                                       Jordan at CCIA
## 463                                                                                                     CenterLight Healthcare D & T Ctr
## 464                                                                                                        Our Lady of Mercy Life Center
## 465                                                                                                Bethany Gardens Skilled Living Center
## 466                                                                                                         La Fargeville Central School
## 467                                                                                                      Ellis Hospital Bariatric Center
## 468                                                                                               Planned Parenthood Hudson Peconic, Inc
## 469                                                                                                          Primary Med Care Outpatient
## 470                                                                                                  I. Sherwood Wright Center for Aging
## 471                                                                                                    Northern Tioga Family Care Center
## 472                                                                                                                    Kensington OB/GYN
## 473                                                                                                    Third Avenue Family Health Center
## 474                                                                                                   Samaritan Family Practice at LeRay
## 475                                                                                                                            P. S. 142
## 476                                                                                                   Long Island Jewish Eye Care Center
## 477                                                                                                                NEOMY Dialysis Center
## 478                                                                                                                Clifton-Fine Hospital
## 479                                                                                                                 Leroux Health Center
## 480                                                                                               Jordan Health at Volunteers of America
## 481                                                                                                                   CHN Mobile Van VII
## 482                                                                                           Columbus Center for Medical Rehabilitation
## 483                                                                                     Susquehanna Nursing & Rehabilitation Center, LLC
## 484                                                                                            Orange Regional Radiation Oncology Ext Cl
## 485                                                                                Seton Health at Schuyler Ridge Residential Healthcare
## 486                                                                                                      Long Pond Medical & Rehab Group
## 487                                                                                   Bushwick Center for Rehabilitation and Health Care
## 488                                                                                         Flatbush Family Health Center at NYU Langone
## 489                                                                                                   Chelsea Center for Special Studies
## 490                                                                                                                      Kindred at Home
## 491                                                                                                Outpatient Behavioral Health Services
## 492                                                                                                                 Refuah Health Center
## 493                                                                        The University of Vermont Health Network- CVPH Adult Medicine
## 494                                                                   Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 495                                                                                                       Center for Disability Services
## 496                                                                                     Greenwich Village Ambulatory Surgery Center, LLC
## 497                                                                        University Hospital of Brooklyn - SUNY Downstate at Bay Ridge
## 498                                                                                                        New Hyde Park Dialysis Center
## 499                                                                                                        Schervier Nursing Care Center
## 500                                                                                               Ponce de Leon Elementary School/PS 161
## 501                                                                                       Emerge Nursing and Rehabilitation at Glen Cove
## 502                                                                                                         FKC - Latham Dialysis Center
## 503                                                                          ODA Primary Health Care Network Mobile Van Extension Clinic
## 504                                                                                               St. Ann's Adult Day Services at Durand
## 505                                                                                                      Weill Cornell Imaging at NY-WGC
## 506                                                                                                                          ConnextCare
## 507                                                                                                      Montefiore Radiology Ext Clinic
## 508                                                                                                                              P.S. 18
## 509                                                                              Northwoods Rehabilitation and Nursing Center at Moravia
## 510                                                                                                  St Peters Addiction Recovery Center
## 511                                                                                                        Rosemarie Ann Siragusa School
## 512                                                                       Brooklyn Center for Rehabilitation and Residential Health Care
## 513                                                                                              Maimonides Cardiology Outpatient Center
## 514                                                                                                           Maple West Medical Complex
## 515                                                                                                     Endoscopy Center of Niagara, LLC
## 516                                                                                                  New York Surgery Center Queens, LLC
## 517                                                                                                                Monroe Academy Campus
## 518                                                                                        St. Peter's Nursing And Rehabilitation Center
## 519                                                                                                   Family Practice Center of Kingston
## 520                                                                                                                    Urban Health Plan
## 521                                                                                                                  Primary Care Clinic
## 522                                                                                                           Gastroenterology Care, Inc
## 523                                                                                                West 17th Street Family Health Center
## 524                                                        RiverSpring Certified Home Health Agency / RiverSpring CHHA / ElderServe CHHA
## 525                                                                                                           Hillside Children's Center
## 526                                                                                      Westchester Center for Rehabilitation & Nursing
## 527                                                                                         ODA Primary Health Care Network - Monticello
## 528                                                                                                          Ellis Medical Arts Building
## 529                                                                                                        Odyssey House of New York Inc
## 530                                                                                                   Myrtle Avenue Family Health Center
## 531                                Long Island Community Hospital Outpatient Imaging, Women's Imaging and Cardiac Rehabilitation Centers
## 532                                                                                                                               PS 347
## 533                                                                                    Affinity Skilled Living and Rehabilitation Center
## 534                                                                                                             St Peters Hospital-SPARC
## 535                                                                                                       Latham Primary Care Associates
## 536                                                                                                      Samaritan Keep Nursing Home Inc
## 537                                                                                                      Southside Elementary School #93
## 538                                                                                                             Cambridge Medical Center
## 539                                                                                               Saratoga Medical Oncology - Hematology
## 540                                                                                      The Christiane and Richard Hiegel Health Center
## 541                                                                                                 Early Childhood Intervention Program
## 542                                                                                                                   Open Door Brewster
## 543                                                                                         St. Peter's Cardiac & Pulmonary Rehab Center
## 544                                                                                                            35th Street Health Center
## 545                                                                                                         Mayfield Primary Care Center
## 546                                                                                                      North Gate Health Care Facility
## 547                                                                                                       Family Health Center of Harlem
## 548                                                                                                          Bushwick Communicare Center
## 549                                                                                                                   James Monroe Annex
## 550                                                                    Mosaic Health Community Dentistry School-Based Portable Equipment
## 551                                                                                                               CenterLight Healthcare
## 552                                                                                     Montefiore St. Luke's Cornwall - Cornwall Campus
## 553                                                                               The Children's Health Center of the New York Foundling
## 554                                                                                                                    HRHCare Riverhead
## 555                                                                                                                    Wingate at Beacon
## 556                                                                                                                      FMS-Eastchester
## 557                                                                                                                           UHS Vestal
## 558                                                                                      Northern Dutchess Res Health Care Facility, Inc
## 559                                                                                                           NYP/Queens Eye Care Center
## 560                                                                                                               Bay Ridge Surgi-Center
## 561                                                                                                                               PS 223
## 562                                                                                                  Dutchess Ambulatory Surgical Center
## 563                                                                                        Community Health Center of Buffalo Mobile Van
## 564                                                                                          Hospice Care In Westchester and Putnam, Inc
## 565                                                                                                                Dunkirk Health Center
## 566                                                                                                                   South Bronx Campus
## 567                                                                                               Hospicare and Palliative Care Services
## 568                                                                              Northwell Health Stern Family Center for Rehabilitation
## 569                                                                                                          HSS Integrative Care Center
## 570                                                                                                         Regency Extended Care Center
## 571                                                                                                         Highbridge Woodycrest Center
## 572                                                                                                             Liberty Endoscopy Center
## 573                                                                         NYU Langone Brooklyn Ambulatory Surgery and Endoscopy Center
## 574                                                                                                      Penn Yan Manor Nursing Home Inc
## 575                                                                                                      New Glen Oaks Nursing Home, Inc
## 576                                                                                                             Stamford Family Practice
## 577                                                                                                                  Beth Jacob Day Care
## 578                                                                                                                 Newark Health Center
## 579                                                                                                            North Creek Health Center
## 580                                                                                                                 CHN - C A B S Clinic
## 581                                                                                         Friedwald Center Adult Health Care at Summit
## 582                                                                                                               Queens Hospital Center
## 583                                                                                                     Aspire of Western New York, Inc.
## 584                                                                                   Planned Parenthood of Central and Western New York
## 585                                                                                                    P.S. 091 The Albany Avenue School
## 586                                                                                    Digestive Disease Center of Central New York, LLC
## 587                                                                                                                  Andes Health Center
## 588                                                                                                       FMS-Soundshore Dialysis Center
## 589                                                                                                                        HRHCare Nyack
## 590                                                                                                             Rochester Surgery Center
## 591                                                                                                           East Ridge Family Medicine
## 592                                                                                               Gramercy Surgery Center, Inc. - Queens
## 593                                                                                                           Celia Dill Dialysis Center
## 594                                                                                       NYU Langone Harkness Center for Dance Injuries
## 595                                                                                                                 New Dorp High School
## 596                                                                                                 Avantus Harlem Green Dialysis Center
## 597                                                                                                                      DCI-Glens Falls
## 598                                                                                                              OrthoNY Surgical Suites
## 599                                                                                              PS 171 Patrick Henry Preparatory School
## 600                                                                                                              Waterford Family Health
## 601                                                                                                                  Wilton Medical Arts
## 602                                                                                                       Bassett Regional Cancer Center
## 603                                                                                                           Southtowns Dialysis Center
## 604                                                                                                    South End Community Health Center
## 605                                                                                                      Living Center at Geneva - North
## 606                                                                                                       Center for Disability Services
## 607                                                                      Stony Brook Southampton Hospital East Hampton Radiology and Lab
## 608                                                                                                               Henrietta Primary Care
## 609                                                                                             Whitney M Young Jr. Dental Health Center
## 610                                                                                                              Samaritan Medical Plaza
## 611                                                                                 Advantage Care Diagnostic and Treatment Center, Inc.
## 612                                                                                                           Tri-County Family Medicine
## 613                                                                                                    Hyde Park Satellite Health Center
## 614                                                                         The Hamlet Rehabilitation and Healthcare Center at Nesconset
## 615                                                                               Visiting Nurse Service of Ithaca & Tompkins County Inc
## 616                                                                                                           Harlem Clinics #1 #3 #6 #7
## 617                                                                                                          Harry S. Truman High School
## 618                                                                                        Split Rock Long Term Home Health Care Program
## 619                                                                           Hudson Valley Regional Community Health Centers - Dutchess
## 620                                                                                                      Norfolk Community Health Center
## 621                                                                                         Warren Center for Rehabilitation and Nursing
## 622                                                                                                                    Schuyler Hospital
## 623                                                                                                                 Primary Care Network
## 624                                                                                                        Kaleida Health SB Dental Prog
## 625                                                                                              Premier Home Health Care Services, Inc.
## 626                                                                                                          FSLH-Herkimer Dialysis Unit
## 627                                                                                                Healthworks Wellness & Fitness Center
## 628                                                                                     Margaret Tietz Nursing and Rehabilitation Center
## 629                                                                                                                 Clymer Health Center
## 630                                                                                 Cattaraugus County Dept of Health Home Health Agency
## 631                                                                                                        Hudson River Healthcare, Inc.
## 632                                                                                                          NSUH LIJ Imaging at Syosset
## 633                                                                                                 Clifton Park Physical Rehabilitation
## 634                                                                            St. Peter's Amyotrophic Lateral Sclerosis Regional Center
## 635                                                                                                                  Surgery of Tomorrow
## 636                                                                                                                    P R O M E S A Inc
## 637                                                                                          Hillside Manor Rehab & Extended Care Center
## 638                                                                                                                  Syosset SurgiCenter
## 639                                                                                                    Pediatric & Adolescent Med Clinic
## 640                                                                                                         Northern GI Endoscopy Center
## 641                                                                                                    Lower Manhattan Dialysis Center-2
## 642                                                                                                                Charlotte High School
## 643                                                                                                    Fresenius Kidney Care - Bay Shore
## 644                                                                                                     Hudson River Healthcare - Goshen
## 645                                                                                                                     HRHC Mobile Unit
## 646                                                                                                       Westminster School (School 68)
## 647                                                                                                 X148 Charles Drew Educational Campus
## 648                                                                          Richmond Center for Rehabilitation and Specialty Healthcare
## 649                                                                                      Lewis County General Hospital-Nursing Home Unit
## 650                                                                                       Shaker Place Rehabilitation and Nursing Center
## 651                                                                                                     Aspire of Western New York, Inc.
## 652                                                                                                 Millard Fillmore Surgery Center, LLC
## 653                                                                                                     Sunnyview Audiology at Amsterdam
## 654                                                                                                            St Charles Rehabilitation
## 655                                                                                                            Syracuse Home Association
## 656                                                                                                           Medisys Family Care Center
## 657                                                                                 Tolstoy Foundation Rehabilitation and Nursing Center
## 658                                                                                    Sea View Hospital, Rehabilitation Center and Home
## 659                                                                                                 Edison Technical&Occupational Center
## 660                                                                                                     St. Joseph's Dialysis - Camillus
## 661                                                                                                             Dunkirk Extension Clinic
## 662                                                                                                            Auburn Community Hospital
## 663                                                                                                                  Hospice Buffalo Inc
## 664                                                                                                UPSTATE Physical Therapy & Phlebotomy
## 665                                                                                                                 Huntington Methadone
## 666                                                                  Lifetime Care/Hospice of Rochester/Hospice of Wayne&Seneca Counties
## 667                                                                                                            St Charles Rehabilitation
## 668                                                                                                                     Rosary Hill Home
## 669                                                                                                 Alton B Corbit Immediate Care Center
## 670                                                                                                  Huntington Artificial Kidney Center
## 671                                                                                                             Adirondack Health Clinic
## 672                                                                 Montefiore Med Center - Jack D Weiler Hosp of A Einstein College Div
## 673                                                                                                                New Settlement School
## 674                                                                                                                   Garden Care Center
## 675                                                                                                            Union Health Center-ILGWU
## 676                                                                                                  Rome Mem Hosp-1801 Black River Blvd
## 677                                                                                                                           EMU Health
## 678                                                                                               Franklin County Public Health Services
## 679                                                                                                           Outpatient Oncology Clinic
## 680                                                                                    Pine Valley Center for Rehabilitation and Nursing
## 681                                                                                                     Greenburgh Alcoholism Ext Clinic
## 682                                                                                                               PTS of Brooklyn LTHHCP
## 683                                                                                                         UHS Primary Care Main Street
## 684                                                                                               Planned Parenthood Utica Health Center
## 685                                                                                                  Health Care for the Homeless Center
## 686                                                                    South Nassau Communities Hospital Off-Campus Emergency Department
## 687                                                                                                              Great Lakes Cancer Care
## 688                                                                                                             Juan Morel Campos Campus
## 689                                                                                                     Laura M. Sharp Elementary School
## 690                                                                                       Essex Center for Rehabilitation and Healthcare
## 691                                                                                                 FMS-Kenmore Artificial Kidney Center
## 692                                                                                                               Betances Health Center
## 693                                                                                                            St. John's Penfield Homes
## 694                                                                                                  Delhi Elementary/Middle/High School
## 695                                                                                       Island Rehabilitative Services Corp at Commack
## 696                                                                                                               Fairport Baptist Homes
## 697                                                                                                                          Strong Ties
## 698                                                                                                The Rehab Center & the Hearing Center
## 699                                                                                                                           Prime Care
## 700                                                                                                                      MediDental Care
## 701                                                                                              Delhi Rehabilitation and Nursing Center
## 702                                                                                          Highfield Gardens Care Center of Great Neck
## 703                                                                                                                     Samaritan OB/GYN
## 704                                                                                                       Center for Disability Services
## 705                                                                                             Planned Parenthood Hornell Health Center
## 706                                                                                                        Canarsie Multi Service Center
## 707                                                                                              Community Medical and Dental Care, Inc.
## 708                                                                                                               UPMC Chautauqua at WCA
## 709                                                                                      West Mountain Health Services Buildings 1 and 2
## 710                                                                                                          Rome Memorial Hospital, Inc
## 711                                                                                                                           PS 333/335
## 712                                                                                                     Scotia Glenville Family Medicine
## 713                                                                                            Upstate Family Health Center, Inc. - Rome
## 714                                                                     The Steven and Alexandra Cohen Pediatric Long Term Care Pavilion
## 715                                                                                                           Clinton County Health Dept
## 716                                                                                                  Bethel Nursing & Rehab Center ADHCP
## 717                                                                                                      Clinical Rehab Extension Clinic
## 718                                                                                                                 UHCC at Hill Medical
## 719                                                                                                                               PS 279
## 720                                                                                   Planned Parenthood of Central and Western New York
## 721                                                                                                               FMS-Queens Kidney Care
## 722                                                                                                    Lindsay House Surgery Center, LLC
## 723                                                                                               FMS-Southern Manhattan Dialysis Center
## 724                                                                                         Long Beach Nursing and Rehabilitation Center
## 725                                                                           Rogosin Institute - Nephrology Foundation of Brooklyn East
## 726                                                                                                           Farmington Family Medicine
## 727                                                                                                             PS 29 The Melrose School
## 728                                                                                                 All-Med & Rehabilitation of New York
## 729                                                                                                            Broome County Health Dept
## 730                                                                                     NYU Langone Perlmutter Cancer Center - Rego Park
## 731                                                                                                     HRHCare Huntington Health Center
## 732                                                                                                            Caledonia Family Medicine
## 733                                                                                               Mount St Marys Hospital Rehab Services
## 734                                                                                                          Bassett Healthcare-Unadilla
## 735                                                                                                Arc Healthresources of Rockland, Inc.
## 736                                                                                        Aaron Manor Rehabilitation and Nursing Center
## 737                                                                                                East NY Diagnostic & Treatment Center
## 738                                                                                                 NYU Langone Ambulatory Care Services
## 739                                                                                                           Delaware Elementary School
## 740                                                                                                                               PS 169
## 741                                                                                        Suffolk Center for Rehabilitation and Nursing
## 742                                                                                               Heritage Green Rehab & Skilled Nursing
## 743                                                                                                           Sunnyview Therapy Services
## 744                                                                                   Stony Brook Southampton Hospital Regional Dialysis
## 745                                                                                             Specialists' One-Day Surgery Center, LLC
## 746                                                                                                              Hilaire Rehab & Nursing
## 747                                                                                                Nathan Littauer Hospital Nursing Home
## 748                                                                                             Americare Certified Special Services Inc
## 749                                                                                                 Whitney M Young Jr Health Center Inc
## 750                                                                                                                 Apex Surgical Center
## 751                                                                                                       Beacon Community Health Center
## 752                                                                                                                NYU Langone Hospitals
## 753                                                                                                             Primary Care Center-West
## 754                                                                                                                     Samaritan OB/GYN
## 755                                                                                    St. Vincent's Outpatient Behavioral Health Center
## 756                                                                                    Little Falls Hospital West Winfield Health Center
## 757                                                                                        Urban Strategies/Brookdale Family Care Center
## 758                                                                                                              Mercy Outpatient Clinic
## 759                                                                                                Franklin Center for Rehab&Nursg ADHCP
## 760                                                                                                                          ConnextCare
## 761                                                                                                         Garden City Treatment Center
## 762                                                                                                          Trillium Health Mobile Unit
## 763                                                                                                  Medalliance Medical Health Services
## 764                                                                                       Planned Parenthood Staten Island Health Center
## 765                                                                                                   St Peters Med Arts at Slingerlands
## 766                                                                                        Herkimer County Public Health Nursing Service
## 767                                                                                                              Tuscarora Health Center
## 768                                                                                                     Main Street Radiology at Bayside
## 769                                                                                                             Sprain Brook Manor Rehab
## 770                                                                     United Hebrew of New Rochelle Certified Home Health Agency, Inc.
## 771                                                                                                           East Aurora Medical Center
## 772                                                                                                          Healthcare Choices NY, Inc.
## 773                                                                                         Sunnyview Hospital and Rehabilitation Center
## 774                                                                                                            Niagara Street Pediatrics
## 775                                                                          Cornerstone Family Healthcare:  Goshen Dental and Audiology
## 776                                                                                                                 Family Health Center
## 777                                                                                                           256 Mason Avenue Radiology
## 778                                                                                               Cayuga Medical Center Physical Therapy
## 779                                                                                             Bedford Medical Family Health Center Inc
## 780                                                                                                        Bay Plaza Primary Care Center
## 781                                                                                                    HSS Long Island Outpatient Center
## 782                                                                                        Dental Center at North Central Bronx Hospital
## 783                                                                                                Betsy Ross Rehabilitation Center, Inc
## 784                                                                                                    Queensbridge Family Health Center
## 785                                                                                                                                 PS18
## 786                                                                                                       Bon Secours Community Hospital
## 787                                                                                                      Brownsville Child Health Clinic
## 788                                                                                        Vestal Park Rehabilitation and Nursing Center
## 789                                                                                           Eastman Dental Center-Mobile Dental Van #4
## 790                                                                                      PS 136 Charles O. Dewey/Sunset Park Prep MS 821
## 791                                                                                 St. John's Episcopal Hospital Ambulatory Care Center
## 792                                                                                                      Auburn Family Assessment Center
## 793                                                                                         Community Health Center of the North Country
## 794                                                                                   Montefiore Medical Center - Henry & Lucy Moses Div
## 795                                                                                                     Manhasset Ambulatory Care Center
## 796                                                                                                       Anthony L Jordan Health Center
## 797                                                                                                                  Copake Primary Care
## 798                                                                                   Beth Abraham Center for Rehabilitation and Nursing
## 799                                                                                                       Ellis Health Services Building
## 800                                                                                                            North Fork Surgery Center
## 801                                                                                                                Palatine Nursing Home
## 802                                                                                                   CPH Lawrence Avenue Medical Campus
## 803                                                                                                               Intermediate School 45
## 804                                                                                                               Woodhaven Nursing Home
## 805                                                                                                             Franziska Racker Centers
## 806                                                                                      Promenade Rehabilitation and Health Care Center
## 807                                                                                                                        PS 192/PS 325
## 808                                                                                                       Medical Associates of Penfield
## 809                                                                                                          Church Avenue Health Center
## 810                                                                                                     Central New York Dialysis Center
## 811                                                                                                             Westside Sports Medicine
## 812                                                                                      The Grand Rehabilitation and Nursing at Pawling
## 813                                                                                                          Hamilton Manor Nursing Home
## 814                                                                                                             Forme Rehabilitation Inc
## 815                                                                                                                The HUB Health Center
## 816                                                                                                   Rogosin Kidney Center - Auburndale
## 817                                                                                      Medical Imaging and Lab at Moreau Family Health
## 818                                                                                                                               Foxnow
## 819                                                                                              Mercy Hospital Skilled Nursing Facility
## 820                                                                                                    Sullivan County Adult Care Center
## 821                                                                                                           DCI-Rubin Dialysis Centers
## 822                                                                                                          Manhasset Day Center Clinic
## 823                                                                                        New York Congregational Nursing Center LTHHCP
## 824                                                                                                        Far Rockaway Treatment Center
## 825                                                                                             Loretto Health and Rehabilitation Center
## 826                                                                                                            Your Choice at Home, Inc.
## 827                                                                                    Glen Island Center for Nursing and Rehabilitation
## 828                                                                     NY Hotel Trades Council&Hotel Assoc of NYC Health/Midtown Clinic
## 829                                                                                                                   HRHCare Mobile Van
## 830                                                                                                Bay Ridge Sunset Park Dialysis Center
## 831                                                                                                             Shinnecock Health Center
## 832                                                                                                             St Peters Hospital-SPARC
## 833                                                                                                                                 X151
## 834                                                                                                                               PS 112
## 835                                                                                                     Park Avenue Family Health Center
## 836                                                                                       Fort Hudson Certified Home Health Agency, Inc.
## 837                                                                                                      Long Island Jewish Forest Hills
## 838                                                                                                    Columbia County Health Department
## 839                                                                                           Ellis Medicine Primary Care - Ballston Spa
## 840                                                                                                                The Chautauqua Center
## 841                                                                                                           UHB Family Health Services
## 842                                                                                             Bishop Rehabilitation and Nursing Center
## 843                                                                                                       Bassett Healthcare Canajoharie
## 844                                                                                      Visiting Nurse Service of Northeastern New York
## 845                                                                                                 Urology Practice Wayne Medical Group
## 846                                                                                                    Franklin Magnet Elementary School
## 847                                                                                             Health Quest Home Care, Inc. (Certified)
## 848                                                                                                             Bassett Healthcare Delhi
## 849                                                                                                            Allhealth D&TC-Mobile Van
## 850                                                                              Vocational Instruction Project Community Services, Inc.
## 851                                                                                                    Premier Ambulatory Surgery Center
## 852                                                                                                             Bridge View Nursing Home
## 853                                                                                   Pulmonary Medicine and Rheumatology Clinic of AMCH
## 854                                                                                                          Peconic Landing at Southold
## 855                                                                                Visiting Nurse Service of Rochester and Monroe County
## 856                                                                                                                 St. Charles Hospital
## 857                                                                                             Fresenius Kidney Care - Saratoga Springs
## 858                                                                                                                           The Osborn
## 859                                                                                                           North Utica Medical Office
## 860                                                                                                                  Methadone Clinic II
## 861                                                                                                               Betances Health Center
## 862                                                                                                      William Howard Taft High School
## 863                                                                                    Brothers of Mercy Nursing & Rehabilitation Center
## 864                                                                                                         Orchard Park Dialysis Center
## 865                                                                                                                Getty Square Dialysis
## 866                                                                                                           Doctor's United Inc.-Bronx
## 867                                                                                                    CitiCARES Community Health Center
## 868                                                                                    Cooperstown Center for Rehabilitation and Nursing
## 869                                                                                                         Kings County Hospital Center
## 870                                                                                            Oneida Health Canastota-Lenox Family Care
## 871                                                                                             Independent Living Service Health Center
## 872                                                                                      Ryan/Frederick Douglass Community Health Center
## 873                                                                                                          Dr. Weeks Elementary School
## 874                                                                                                  Ellis Cushing Medical Arts Building
## 875                                                                                                 Wyoming County Comm Hosp O/P Clinics
## 876                                                                                           Planned Parenthood Hempstead Health Center
## 877                                                                                      NYU Winthrop Hospital - Women's Wellness OB/GYN
## 878                                                                                                                   Wartburg Home Care
## 879                                                                                                      Mechanicville Outpatient Center
## 880                                                                                                Hudson Valley Ambulatory Surgery, LLC
## 881                                                                                                         North Main Outpatient Center
## 882                                                                                                             Whitehall Medical Center
## 883                                                                                                      Westfield Memorial Hospital Inc
## 884                                                                                                        Comprehensive Fam Care Center
## 885                                                                                              U.S. Renal Care Pelham Parkway Dialysis
## 886                                                                                      Golden Gate Rehabilitation & Health Care Center
## 887                                                                                                            Interfaith Medical Center
## 888                                                                                                          CenterLight Healthcare D&TC
## 889                                                                                                           Saratoga Outpatient Center
## 890                                                                                  Crown Heights Center for Nursing and Rehabilitation
## 891                                                                                                    Lower Eastside Service Center Inc
## 892                                                                                                     UR Medicine Urgent Care - Greece
## 893                                                                                                              JHS 117 (Joseph H Wade)
## 894                                                                                                               OLV Family Care Center
## 895                                                                                                                  St. Joseph Hospital
## 896                                                                                                Planned Parenthood Rome Health Center
## 897                                                                                               Community Health Center of Cheektowaga
## 898                                                                                                            Sea Crest Dialysis Center
## 899                                                                                                  Staten Island University Hosp-North
## 900                                                                                                              Camillus Surgery Center
## 901                                                                                                               Center for Dental Care
## 902                                                                                   Planned Parenthood of Central and Western New York
## 903                                                                                                                   Doctors United Inc
## 904                                                                                                                 OGH Salamanca Clinic
## 905                                                        Community Health Center of St. Mary's Healthcare and Nathan Littauer Hospital
## 906                                                                                                       Menorah Campus Health Services
## 907                                                                                              NYU Langone Rivergate Transplant Clinic
## 908                                                                                                 ODA Primary Health Care Network, Inc
## 909                                                                                                    Irving Goldman Family Care Center
## 910                                                                                       Ellicott Center for Rehabilitation and Nursing
## 911                                                                                                     Ulster Radiation Oncology Center
## 912                                                                                                      CS 30&31/R Hernandez & L Hughes
## 913                                                                                                      Lower Manhattan Health District
## 914                                                                                      CenterLight Healthcare D&TC - Grand Street Site
## 915                                                                                                          The Firehouse Health Clinic
## 916                                                                                                           Schroon Lake Health Center
## 917                                                                                                   Urban Health Plan Extension Clinic
## 918                                                                                                                   BMS Dental Genesis
## 919                                                                                                        Mary Imogene Bassett Hospital
## 920                                                                                               Valatie Family Care & Med Rehab Center
## 921                                                                                      Mount Sinai Brooklyn Ambulatory Infusion Center
## 922                                                                                                           Williams Elementary School
## 923                                                                                                      Guthrie Cortland Medical Center
## 924                                                                                                         Alcoholism Outpatient Clinic
## 925                                                                                             Safire Rehabilitation of Northtowns, LLC
## 926                                                                                      Mosholu Parkway Nursing & Rehabilitation Center
## 927                                                                                                                                PS 24
## 928                                                                                LeRoy Village Green Nursing and Rehabilitation Center
## 929                                                                                                 Jericho Road Community Health Center
## 930                                                                                                   Noyes Physical Therapy at BraeBurn
## 931                                                                                                                             P.S. 124
## 932                                                                                                                  Cesar Chavez School
## 933                                                                                                            Bassett Healthcare Sidney
## 934                                                                                          Planned Parenthood Hudson Peconic - Yonkers
## 935                                                                                                         Clifton Park Family Practice
## 936                                                                                                                 Judson Health Center
## 937                                                                                        Upstate Orthopedics Ambulatory Surgery Center
## 938                                                                                                                       All County LLC
## 939                                                                                                                Carillon Dialysis LLC
## 940                                                                                                              Constellation Home Care
## 941                                                                                                     Lourdes Center for Family Health
## 942                                                                                           Saratoga-Schenectady Endoscopy Center, LLC
## 943                                                                                                                 Island Health Center
## 944                                                                                                                    St Anns Community
## 945                                                                                                           Louis Brandeis High School
## 946                                                                                                   Macedon (Kachoria) Family Practice
## 947                                                                                                     Noxon Rd Senior Citizens Program
## 948                                                                                                                      St Josephs Home
## 949                                                                                                              JGB Rehabilitation Corp
## 950                                                                                                      HSS West Side Outpatient Center
## 951                               The University of Vermont Health Network- Champlain Valley Physicians Hospital Rehabilitation Services
## 952                                                                                                              ENMG at Elizabeth Drive
## 953                                                                                        Albany Medical Center - South Clinical Campus
## 954                                                                                                        BronxCare MBD Family Practice
## 955                                                                                                            Long Island City Dialysis
## 956                                                                                                           Premium Health Peds Center
## 957                                                                         St Catherine of Siena Nursing and Rehabilitation Care Center
## 958                                                                                        St Peters Rensselaer Health and Dental Center
## 959                                                                                                    Manhattanville Health Care Center
## 960                                                                                                                 Heritage Health Care
## 961                                                                                                             Suffern Extension Clinic
## 962                                                                                 Cypress Garden Center for Nursing and Rehabilitation
## 963                                                                                                               Dialyze Direct NY, LLC
## 964                                                                                                 Avantus Irving Place Dialysis Center
## 965                                                                   Planned Parenthood of the North Country, New York, Inc. - Lowville
## 966                                                                                                   Syracuse Endoscopy Associates, LLC
## 967                                                                                                                        Armonk Clinic
## 968                                                                                                   Brookside Multicare Nursing Center
## 969                                                                                      Oak Hill Rehabilitation and Nursing Care Center
## 970                                                                                   Degraff Memorial Hospital-Skilled Nursing Facility
## 971                                                                                                       Valley View Manor Nursing Home
## 972                                                  Rochester Regional Health / United Memorial Community Care - Attica Family Medicine
## 973                                                                                        Primary Care Extension Clinic for Pace Center
## 974                                                                                                          Freedom Center of Rochester
## 975                                                                                                                        Dental Center
## 976                                                                                                                    M S 51- Alexander
## 977                                                                                                     Northern Lights Home Health Care
## 978                                                                                                            Monroe Community Hospital
## 979                                                                                                   Center for Communication Disorders
## 980                                                                                                    Williamsburg Family Health Center
## 981                                                                                                             NWH @ Chappaqua Crossing
## 982                                                                                   NYU Winthrop Hospital Dialysis Center at Sunharbor
## 983                                                                                                    Community Health Initiatives Inc.
## 984                                                                                                    William Appleby Elementary School
## 985                                                                                  Long Island Hand and Orthopedic Surgery Center, LLC
## 986                                                                                                 Bon Secours Sleep Disorder Institute
## 987                                                                                               The Massena Free Clinic for Adults Inc
## 988                                                                                              GoldStep Ambulatory Surgery Center, LLC
## 989                                                                                                            UHS Primary Care - Greene
## 990                                                                                                             Empower Community Health
## 991                                                                                                           Mount Hope Family Practice
## 992                                                                                          Metro Community Health Center Staten Island
## 993                                                                                                                               P S 64
## 994                                                                                                      Adirondack Health Dental Clinic
## 995                                                                                             Surgical Specialty Center of Westchester
## 996                                                                                                                  Grant Middle School
## 997                                                                                                        Burke Rehab & Sports Medicine
## 998                                                                                                        New Dimensions In Health Care
## 999                                                                                               NYU Langone Center for Women's Imaging
## 1000                                                                                                                              PS 329
## 1001                                                                                                                    Syosset Hospital
## 1002                                                                                                             Brooklyn Surgery Center
## 1003                                                                                                    Lourdes Center for Mental Health
## 1004                                                                                                Eden Rehabilitation & Nursing Center
## 1005                                                                                                     Woodside Manor Nursing Home Inc
## 1006                                                                                    Baptist Health Nursing and Rehabilitation Center
## 1007                                                                                                           Albany County Health Dept
## 1008                                                                                             Planned Parenthood Oneida Health Center
## 1009                                                                                          Wilkinson Residential Health Care Facility
## 1010                                                                           Burke Rehabilitation Outpatient Clinic at Executive Plaza
## 1011                                                                                                       Chautauqua County Health Dept
## 1012                                                                                                            Medina Memorial Hospital
## 1013                                                                                                      Williamsbridge Dialysis Center
## 1014                                                                          Phelps Memorial Hospital Diagnostic Imaging at Dobbs Ferry
## 1015                                                                                                              Family Medicine at RIT
## 1016                                                                                                      Buffalo General Medical Center
## 1017                                                                                              Sullivan County Public Health Services
## 1018                                                                                                   LIJMC-Satellite Dialysis Facility
## 1019                                                                                                       Wesley Health Care Center Inc
## 1020                                                                                                                      Dunkirk Dental
## 1021                                                                           St. Peter's Breast Center - Washington Avenue Mammography
## 1022                                                          Long Island Community Hospital Center for Wound Care & Hyperbaric Medicine
## 1023                                                                                                    Maimonides Sleep Disorder Clinic
## 1024                                                                                                      Island Digestive Health Center
## 1025                                                                                           Wayne Center for Nursing & Rehabilitation
## 1026                                                                                                    Boston Post Road Dialysis Center
## 1027                                                                              Rockville Skilled Nursing & Rehabilitation Center, LLC
## 1028                                                                                            Cayuga Nursing and Rehabilitation Center
## 1029                                                                             Jones Memorial Hospital - Hornell Multispecialty Clinic
## 1030                                                                                                                Fingerlakes UCP, Inc
## 1031                                                                                                                      PS 54 S Barnes
## 1032                                                                                                            Catskill Dialysis Center
## 1033                                                                                     South Nassau Center for Maternal Fetal Medicine
## 1034                                                                                    Park Gardens Rehabilitation & Nursing Center LLC
## 1035                                                                                                       Warren County Health Services
## 1036                                                                                                      The New Jewish Home, Manhattan
## 1037                                                                                                  Murry Bergtraum High School Campus
## 1038                                                                                                  Ellis Medicine Spine and Pain Care
## 1039                                                                                                                   Urban Health Plan
## 1040                                                                                                              St Regis Mohawk School
## 1041                                                                                   Dumont Center for Rehabilitation and Nursing Care
## 1042                                                                                               Multispecialty Surgery Clinic of AMCH
## 1043                                                                                                                FASNY Firemen's Home
## 1044                                                                                                                   The Wartburg Home
## 1045                                                                                 The Grand Rehabilitation and Nursing at Chittenango
## 1046                                                                                    Fort Tryon Center for Rehabilitation and Nursing
## 1047                                                                                                                     FMS-Nephro-Care
## 1048                                                                                                                              PS 217
## 1049                                                                                                           NSUH Sleep Studies Center
## 1050                                                                                                                    CUHC Mobile Unit
## 1051                                                                                              Sullivan County Public Health Services
## 1052                                                                                                                   RUMC-Bayley Seton
## 1053                                                                                                Jericho Road Community Health Center
## 1054                                                                                                         Philadelphia Medical Center
## 1055                                                                                                               Jamaica Health Center
## 1056                                                                                                                     HSS Dana Center
## 1057                                                                                                        Medina Memorial Hospital SNF
## 1058                                                                                                               Best Healthcare, Inc.
## 1059                                                                                                          Cardiac Testing - Fishkill
## 1060                                                                                                                     Kindred at Home
## 1061                                                                                                    ODA Primary Health Network, Inc.
## 1062                                                                                                       Parish Health Services Center
## 1063                                                                                    NYU Langone Perlmutter Cancer Center-34th Street
## 1064                                                                                                                     Nottingham RCHF
## 1065                                                                                                           Monroe Community Hospital
## 1066                                                                                                     Orange County Health Department
## 1067                                                                                     Hamilton Park Nursing and Rehabilitation Center
## 1068                                                                                             HealthAlliance Hospital Broadway Campus
## 1069                                                                                                        RGH Mobile Mammography Coach
## 1070                                                                                                         St. Peter's Medical Imaging
## 1071                                                                                                   GSHC for Pediatric Specialty Care
## 1072                                                                                                           Thurgood Marshall Academy
## 1073                                                                                                            UHS Primary Care Endwell
## 1074                                                                                              Middleburgh Central-Middle/High School
## 1075                                                                                                      Vassar Brothers Medical Center
## 1076                                                                                                                            UHCC-IHP
## 1077                                                                                                             McAuliffe Health Center
## 1078                                                                                                                 HCR / HCR Home Care
## 1079                                                                                                   Buffalo Hearing and Speech Center
## 1080                                                                                            Columbia Memorial Mobile Dental Services
## 1081                                                                                                          BV Dental Mobile Equip SBC
## 1082                                                                                                           Damian Family Care Center
## 1083                                                                                           St. Peter's Hospital Spine & Neurosurgery
## 1084                                                                                                          Williamsville Suburban LLC
## 1085                                                                                The Grand Rehabilitation and Nursing at River Valley
## 1086                                                                                                    Bassett Healthcare Cobleskill II
## 1087                                                                                                                     Coachman Clinic
## 1088                                                                                                    Palm Gardens Dialysis Center LLC
## 1089                                                                                                     Catholic Managed Long Term Care
## 1090                                                                                                                        Wiley School
## 1091                                                                                                      Finger Lakes Center for Living
## 1092                                                                                                          Unity Orthopedics at Chili
## 1093                                                                                                    Women's Medical Center at Corona
## 1094                                                                                                          Valley Health Services Inc
## 1095                                                                                                    Flushing Hospital Medical Center
## 1096                                                                                                      Stevenson Family Health Center
## 1097                                                                                                            FMS-City Dialysis Center
## 1098                                                                                                                 GuildCare Manhattan
## 1099                                                                                               Joseph P Addabbo-Family Health Center
## 1100                                                                                                           Bassett Healthcare Walton
## 1101                                                                                  Maimonides Adult and Pediatric Care Newkirk Avenue
## 1102                                                                                       Lenox Hill Hospital Extension Clinic at MEETH
## 1103                                                                                                  Laurance S Rockefeller OP Pavilion
## 1104                                                                                          Presbyterian Home for Central New York Inc
## 1105                                                                                      Weill Cornell Imaging at New York Presbyterian
## 1106                                                                                                         Primary Medical Care Clinic
## 1107                                                                                             SB Oral Health Mobile Equipment Program
## 1108                                                                                 The Pavilion at Queens for Rehabilitation & Nursing
## 1109                                                                                                                Greece Medical Group
## 1110                                                                                                                             Medcare
## 1111                                                                                                          Chatham Family Care Center
## 1112                                                                                                            Nascentia Health at Home
## 1113                                                                            Bethel Nursing Home Company Certified Home Health Agency
## 1114                                                              Planned Parenthood of the North Country, New York, Inc. - Saranac Lake
## 1115                                                                                                          Medisys Family Care Center
## 1116                                                                 Suffolk Co Dept of Health Services Bureau  of Public Health Nursing
## 1117                                                                                                      CHN - Dr. Betty Shabazz Center
## 1118                                                                                                Ida G Israel Community Health Center
## 1119                                                                                                               St. Christopher's Inn
## 1120                                                                                                         RAMBAM Family Health Center
## 1121                                                                                                               PS 194/Countee Cullen
## 1122                                                                              Medalliance Medical Health Services-Washington Heights
## 1123                                                                                                        Eddy Daybreak at Eddy Cohoes
## 1124                                                                                                    Fairview Nursing Care Center Inc
## 1125                                                                                               Behavioral Health Servs/Ridge Commons
## 1126                                                                                                            Brooklyn Birthing Center
## 1127                                                                       Highland Diabetes Health Source (DHS) and Nutrition Edge (NE)
## 1128                                                                                                                       HRHCare Coram
## 1129                                                                                                      NYP/Queens Special Care Center
## 1130                                                                                                       Far Rockaway Treatment Center
## 1131                                                                                                             IS45 Educational Campus
## 1132                                                                                               Kaleida Health Family Planning Center
## 1133                                                                                                         Centers Home Health Revival
## 1134                                                                                                Beth Israel Med Center Cooper Square
## 1135                                                                                                                     DCI-Westchester
## 1136                                                                                                                FMS-Nephro Care West
## 1137                                                                                                        Clinton Family Health Center
## 1138                                                                                                      Broadalbin Primary Care Center
## 1139                                                                                                        Evelyn Brandon Health Center
## 1140                                                                                                           Mount Sinai Kidney Center
## 1141                                                                                                      Watertown Dialysis Center, LLC
## 1142                                                                                     North Shore-LIJ Orzac Center for Rehabilitation
## 1143                                                                                        Eastern Niagara Hospital - Lockport Division
## 1144                                                                                          Grandell Rehabilitation and Nursing Center
## 1145                                                                                                    Sanford R Nalitt Inst for Cancer
## 1146                                                                                                 Staten Island University Hosp-South
## 1147                                                                                      Van Duyn Center for Rehabilitation and Nursing
## 1148                                                                                                           St. Mary's Holland Circle
## 1149                                                                                                     Yonkers Community Health Center
## 1150                                                                                           Our Lady of Lourdes Memorial Hospital Inc
## 1151                                                                                               Syracuse Community Health Center West
## 1152                                                                                   Westchester Institute for Human Development, Inc.
## 1153                                                                                      Willow Point Rehabilitation and Nursing Center
## 1154                                                                                                Brookhaven Health Care Facility, LLC
## 1155                                                                                                                    Andrus On Hudson
## 1156                                                                                                                    Kendal On Hudson
## 1157                                                                The University of Vermont Health Network - Alice Hyde Medical Center
## 1158                                                                                                          Holiday Park Health Center
## 1159                                                                                                      Edna Tina Wilson Living Center
## 1160                                                                                                     St Joseph's Hosp Outpatient Svs
## 1161                                                                                         Peninsula Nursing and Rehabilitation Center
## 1162                                                                                  The Emerald Peek Rehabilitation and Nursing Center
## 1163                                                                                                  Melrose Houses Child Health Clinic
## 1164                                                     Otsego County Board of Representatives c/o County Public Health Nursing Service
## 1165                                                                                                                  East End Methadone
## 1166                                                                                  University of Vermont Health Network- CVPH Urology
## 1167                                                                             Cold Spring Hills Center for Nursing and Rehabilitation
## 1168                                                                                              ChaseHealth Rehab and Residential Care
## 1169                                                                                                      Oceanside Family Health Center
## 1170                                                                                                              Carthage Middle School
## 1171                                                                                                                               X 174
## 1172                                                                                      Planned Parenthood Hudson Peconic - Mt. Vernon
## 1173                                                                                              Outpatient Oncology Clinic-Canandaigua
## 1174                                                                                                                 Friends for the Day
## 1175                                                                                                         DSI Dutchess Dialysis, Inc.
## 1176                                                                                                 Livingston County Health Department
## 1177                                                                                                                Van Rensselaer Manor
## 1178                                                                                                    Kingsbrook Jewish Medical Center
## 1179                                                                                                      NYU Langone Health-Cobble Hill
## 1180                                                                                                            WPH Family Health Clinic
## 1181                                                                                                        North Central Bronx Hospital
## 1182                                                         Suffolk Hearing and Speech Center of Good Samaritan Hospital Medical Center
## 1183                                                                                                       Cardiac Rehabilitation Clinic
## 1184                                            Cornerstone Family Healthcare:  Harper Health for Individuals and Families in Transition
## 1185                                                                                                         United Helpers Nursing Home
## 1186                                                                                                 Oak Orchard Community Health Center
## 1187                                                                                                              F.F. Thompson Hospital
## 1188                                                                                                           Bella Vista Health Center
## 1189                                                                                                                Daleview Care Center
## 1190                                                                                                        Garden City Treatment Center
## 1191                                                                                 The Grand Rehabilitation and Nursing at Guilderland
## 1192                                                                            Ellis Medicine at Mohawk Harbor: Urgent and Primary Care
## 1193                                                                                                    Ulster Radiation Oncology Center
## 1194                                                                                                        Morris Heights Health Center
## 1195                                                                                                         Crouse Community Center Inc
## 1196                                                                                                              Elderwood at Lancaster
## 1197                                                                                                      APICHA Community Health Center
## 1198                                                                                          Planned Parenthood Johnstown Health Center
## 1199                                                                                          Community Healthcare Network East New York
## 1200                                                                                                                Madrid Health Center
## 1201                                                                                                                Rockaway Care Center
## 1202                                      The University of Vermont Health Network- Champlain Valley Physicians Hospital Valcour Imaging
## 1203                                                                                                     Eddy Village Green at Beverwyck
## 1204                                                                                                Sitrin Medical Rehabilitation Center
## 1205                                                                                             NYU Langone Levit Medical Arts Pavilion
## 1206                                                                                                                 CHN - Queens Center
## 1207                                                                                                          Day OP of North Nassau Inc
## 1208                                                                                                                            Help One
## 1209                                                                                                         Staten Island Extension DTC
## 1210                                                                                                           Ability Beyond Disability
## 1211                                                                                Bridgewater Center for Rehabilitation & Nursing, LLC
## 1212                                                                                                             Settlement Health Plaza
## 1213                                                                                                             GuildCare Niagara Falls
## 1214                                                                                        BronxCare Center for Physical Rehabilitation
## 1215                                                                                                         P.S. 335 Granville T. Woods
## 1216                                                                                             Fordham-Tremont Comm Mntl Health Center
## 1217                                                                                                   Specialty Care Center of Kingston
## 1218                                                                                                            Chenango Dialysis Center
## 1219                                                                                              Liberty Resources Family Health Center
## 1220                                                                                 Holliswood Center for Rehabilitation and Healthcare
## 1221                                                                                        Brookdale Urgent Care and Family Care Center
## 1222                                                                                                  Urgent Medical Care of Skaneateles
## 1223                                                                                            Lenox Hill Hosp Center for Mental Health
## 1224                                                                                 NYU Langone Perlmutter Cancer Center - Lake Success
## 1225                                                                                                    John F. Kennedy Education Campus
## 1226                                                                                        Crown Park Rehabilitation and Nursing Center
## 1227                                                                                                                              PS 108
## 1228                                                                                                           The Brooklyn Green School
## 1229                                                                                              Bushwick Center for Renal Dialysis LLC
## 1230                                                                                      Brownsville Multi-Service Family Health Center
## 1231                                                                                                                    RGH PT OT / PM&R
## 1232                                                                                                                Hornell Gardens, LLC
## 1233                                                                                                    The New York Eye Surgical Center
## 1234                                                                                                       New Vanderbilt Dialysis (DCI)
## 1235                                                                 Stony Brook University Hospital Extension Clinic at 37 Research Way
## 1236                                                                                                                 Joy Family Medicine
## 1237                                                                                                     NYP/Queens Family Health Center
## 1238                                                                                                           Extension Clinic at Islip
## 1239                                                                                                          Maplewood Nursing Home Inc
## 1240                                                                                                   Lawrence Nursing Care Center, Inc
## 1241                                                                                                     Jones Memorial Medical Practice
## 1242                                                                                                White Plains Center for Nursing Care
## 1243                                                                                                           Elsie Owens Health Center
## 1244                                                                                                                   Unity at Ridgeway
## 1245                                                                                                             The Center for Recovery
## 1246                                                                                                    Internal Medicine Clinic of AMCH
## 1247                                                                                      Capstone Center for Rehabilitation and Nursing
## 1248                                                                                             Unity Family Medicine at Orchard Street
## 1249                                                                                                 International Community High School
## 1250                                                                                                             Westhampton Care Center
## 1251                                                                                                                 Atlas Park Dialysis
## 1252                                                                                                              Oneida Health Hospital
## 1253                                                                                              Eastern Niagara Hospital Health Center
## 1254                                                                                        Cornerstone Family Healthcare at Port Jervis
## 1255                                                                                                               St. Joseph's Hospital
## 1256                                                                                        A.O. Fox Memorial Hospital - Tri-Town Campus
## 1257                                                                                                    The Chautauqua Center Pediatrics
## 1258                                                                                        The Ambulatory Surgery Center of Westchester
## 1259                                                                                                                Calvary Hospital Inc
## 1260                                                                                                                   Build Academy #91
## 1261                                                                                               Chemical Dependence Treatment Program
## 1262                                                                              Montefiore Medical Center - Wellness Center at Melrose
## 1263                                                                                                  Long Island Jewish Eye Care Center
## 1264                                                                                    HealthAlliance Hosp Bdwy Campus Radiology and PT
## 1265                                                                                                  Binghamton Family Care Center (IM)
## 1266                                                                                                                         ConnextCare
## 1267                                                                                                                 HCR / HCR Home Care
## 1268                                                                                                             Geneva General Hospital
## 1269                                                                                          William F Ryan Community Health Center Inc
## 1270                                                                                       Family Health Network of Central New York Inc
## 1271                                                                                                 BronxCare Medical and Dental at Poe
## 1272                                                                                        NYU Winthrop Hospital Sleep Disorders Center
## 1273                                                                                                             Canton-Potsdam Hospital
## 1274                                                                                              Advanced Surgery Center of Long Island
## 1275                                                                                    Elizabeth Seton Children's Rehabilitation Center
## 1276                                                                                                             Ryan Mobile Medical Van
## 1277                                                                                                  St Barnabas Ambulatory Care Center
## 1278                                                                                       Rochester Regional Health Orthopedics - Perry
## 1279                                                       Putnam Hospital Center Outpatient Rehabilitation Services - Katonah Satellite
## 1280                                                                                                          MVHS Oneida Medical Office
## 1281                                                                      Open Door Family Medical Center School Based Mobile Dental Van
## 1282                                                                                                    FMS - Huntington Dialysis Center
## 1283                                                                                                              Margaretville Hospital
## 1284                                                                                                                               PS 28
## 1285                                                                              The Pines at Utica Center for Nursing & Rehabilitation
## 1286                                                                                      Northwest Buffalo Community Health Care Center
## 1287                                                                                                          Starlight Pediatric Clinic
## 1288                                                                                                             Washington Mills Office
## 1289                                                                                                Metro Community Health Center Queens
## 1290                                                                                                                     Trillium Health
## 1291                                                                                   NYU Langone Perlmutter Cancer Center - Huntington
## 1292                                                                                                                  Regeis Care Center
## 1293                                                                          UR Medicine Thompson Health Victor Rehabilitation Services
## 1294                                                                                                  New Alternatives for Children Inc.
## 1295                                                                                             Queens Boulevard Extended Care Facility
## 1296                                                                                                       Intermediate School 52 Inwood
## 1297                                                                                            Oneida Health Roswell Park Oncology, LLC
## 1298                                                                                                                            UHCC-POB
## 1299                                                                                                           Helen Hayes Hospital RHCF
## 1300                                                                                                          DCI-Rubin Dialysis Centers
## 1301                                                                                                            SJRH - St Johns Division
## 1302                                                                                                             Adapt Community Network
## 1303                                                                                                               Palm Gardens NH ADHCP
## 1304                                                                                   River View Rehabilitation and Nursing Care Center
## 1305                                                                                                         Long Island Care Center Inc
## 1306                                                                                                                      MJHS Home Care
## 1307                                                                                                                Windham Medical Care
## 1308                                                                               The Children's Psychiatry Clinic Sweet Home Satellite
## 1309                                                                                    Samaritan Family Health Center at Sackets Harbor
## 1310                                                                              Long Island Jewish Medical Center Home Care Department
## 1311                                                                                       Schuyler Hospital Inc and Long Term Care Unit
## 1312                                                                                                               Clinton Hill Dialysis
## 1313                                                                           Family Planning of South Central New York, Inc. at Walton
## 1314                                                                                                                  Cohoes Family Care
## 1315                                                                                                                   Mobile Dental Van
## 1316                                                                                                   Apex Rehabilitation & Care Center
## 1317                                                                                                  Jansen Hospice and Palliative Care
## 1318                                                                                                Port Chester Dialysis & Renal Center
## 1319                                                                                                                FMS-Clinton Crossing
## 1320                                                                                                   South Nassau Communities Hospital
## 1321                                                                                                                 Primary Care Clinic
## 1322                                                                                              Fort Hamilton Clinic Treatment Program
## 1323                                                                       New York-Presbyterian Hospital - Columbia Presbyterian Center
## 1324                                                                                                              Downtown Dental Center
## 1325                                                                    UCPA of the North Country School-Based Portable Dental Equipment
## 1326                                                                                                         Castle Hill Family Practice
## 1327                                                                                                       Hadley-Luzerne Student Health
## 1328                                                                                                   Brookdale Hospital Medical Center
## 1329                                                                                                              Hospice of Westchester
## 1330                                                                                                                  Pathways Methadone
## 1331                                                                                                                  PS 142 - Stranahan
## 1332                                                                                                        Liberty Dialysis - Hyde Park
## 1333                                                                                               Family Health Center of Comm Mem Hosp
## 1334                                                                                               Williamsbridge Family Practice Center
## 1335                                                                                               Prasad Childrens Dental Health Mobile
## 1336                                                                                                                               PS 86
## 1337                                                                                                     Newark-Wayne Community Hospital
## 1338                                                                                            North Country Family Health Center, Inc.
## 1339                                                                                                               Palmac Medical Center
## 1340                                                                                                                    CHN Mobile Van V
## 1341                                                                                                    Morris Heights Counseling Center
## 1342                                                                                                                   HSS River Terrace
## 1343                                                                                                 Echo Hills Family Counseling Center
## 1344                                                                               Eddy Heritage House Nursing and Rehabilitation Center
## 1345                                                                                                 Fonda Primary/Specialty Care Center
## 1346                                                                                                              Women's Imaging Center
## 1347                                                                                                           Crown Point Health Center
## 1348                                                                                                     Tioga Co Health Dept Mobile Van
## 1349                                                                                                               Oswego County Hospice
## 1350                                                                                                                       The Riverside
## 1351                                                                                         Planned Parenthood Cobleskill Health Center
## 1352                                                                                 Callen-Lorde Community Health Center Mobile Unit ll
## 1353                                                            University Gastroenterology at the Philip G. Holtzapple Endoscopy Center
## 1354                                                                                                      Eye Surgery Center of New York
## 1355                                                                                                 Rome Mem Hosp-1819 Black River Blvd
## 1356                                                                                                                      Haven Dialysis
## 1357                                                                                                             Little Neck Care Center
## 1358                                                                                        Faxton-St Lukes Healthcare St Lukes Division
## 1359                                                                                       Yonkers Gardens Adult Day Health Care Program
## 1360                                                                                                     Vanderbilt Avenue Health Center
## 1361                                                                                                    Mary Walker Health Center Clinic
## 1362                                                                                                                 Ezra Medical Center
## 1363                                                                                                   St. Joseph's Dialysis - Northeast
## 1364                                                                                Planned Parenthood Diane L. Max Queens Health Center
## 1365                                                                                                                     VNA Home Health
## 1366                                                                                      Weill Cornell Imaging at New York Presbyterian
## 1367                                                                              The Five Towns Premier Rehabilitation & Nursing Center
## 1368                                                                                                                      Brighton Manor
## 1369                                                                                                                Roscoe Health Center
## 1370                                                                                  Brian Picolo/Intermediate School #53 School Clinic
## 1371                                                                                Care for the Homeless Clinic at Part of the Solution
## 1372                                                                                    Little Falls Hospital Little Falls Health Center
## 1373                                                                                                        Troy Pediatric Health Center
## 1374                                                                                                               NYU Mobile Dental Van
## 1375                                                                                                Nathan Littauer Hosp Pri Care Clinic
## 1376                                                                                                                Sidney Kimmel Center
## 1377                                                                                                                Elderwood at Waverly
## 1378                                                                                                           Harrisville Health Center
## 1379                                                                                                        Community Healthcare Network
## 1380                                                                                                      Lourdes Primary Care at Vestal
## 1381                                                                                                        Central Harlem Health Center
## 1382                                                                                                             Mount Sinai Beth Israel
## 1383                                                                                                    LIJ Center for Advanced Medicine
## 1384                                                                                             Ahava Medical and Rehabilitation Center
## 1385                                                                                         Cedar Manor Nursing & Rehabilitation Center
## 1386                                                                                                                Mount Sinai Brooklyn
## 1387                                                                                                        North Shore Home Care LTHHCP
## 1388                                                                                                               Roosevelt High School
## 1389                                                                                                    Medisys Family Care - St. Albans
## 1390                                                                                                    8 Medical Park Outpatient Center
## 1391                                                                                                                    Samaritan OB/GYN
## 1392                                                                                                         Nassau Day Training Program
## 1393                                                                                                           South Lewis Health Center
## 1394                                                                                          South Shore Ambulatory Surgery Center, LLC
## 1395                                                                                              New York Center For Ambulatory Surgery
## 1396                                                                                                                    Laconia Dialysis
## 1397                                                                                                              Verrazano Nursing Home
## 1398                                                                                                            Highland Family Medicine
## 1399                                                                                       Lourdes Primary Medical Care at Whitney Point
## 1400                                                                                       Planned Parenthood Hudson Peconic - Riverhead
## 1401                                                                                      Finger Lakes Migrant Health Care Project, Inc.
## 1402                                                                                              Regional Therapy Center at The Springs
## 1403                                                                                                              Laurens Central School
## 1404                                                                                                 Montefiore Med Grp Aging In America
## 1405                                                                     The Preston Robert Tisch Center for Men's Health at NYU Langone
## 1406                                                                                                      Sunnyview-Carman Rd Ext Clinic
## 1407                                                                                                           Port Richmond High School
## 1408                                                                                                         Bassett Healthcare Edmeston
## 1409                                                                                                                          C.I.S. 303
## 1410                                                                                                                    Samaritan OB/GYN
## 1411                                                                                                             Hearst Childrens Center
## 1412                                                                                                               Coxsackie Family Care
## 1413                                                                                                     ODA Primary Health Care Network
## 1414                                                                                                Center for Child Health & Resiliency
## 1415                                                                                                  Rome Memorial Hospital, Inc - RHCF
## 1416                                                                                   Hudson Headwaters Pediatric and Adolescent Health
## 1417                                                                                              Rebekah Rehab and Extended Care Center
## 1418                                                                                                          Beth Israel Med Center 2-C
## 1419                                                                                                             Bronx Health Collective
## 1420                                                                                                               Moravia Health Center
## 1421                                                                                                  Capital District Internal Medicine
## 1422                                                                                                                  Primary Care Annex
## 1423                                                                                                                   Waterville Office
## 1424                                                                                                  Port Byron Community Health Center
## 1425                                                                                            NYU Langone Rusk Rehabilitation Brooklyn
## 1426                                                                                                 Elderwood of Uihlein at Lake Placid
## 1427                                                                          Soldiers and Sailors Memorial Hospital of Yates County Inc
## 1428                                                                                               Manhattan Reproductive Surgery Center
## 1429                                                                                   Putnam Hospital Center O/P Rehab Center @ Pawling
## 1430                                                                                                               UHCC - Madison Irving
## 1431                                                                                    Hudson Valley Long Term Home Health Care Program
## 1432                                                                            Continuing Day Treatment/Partial Hospitalization Program
## 1433                                                                                                                Musculoskeletal Bldg
## 1434                                                           Montefiore Medical Center Henry and Lucy Moses Division Mobile Dental Van
## 1435                                                                               Cornerstone Family Healthcare:  Middletown Pediatrics
## 1436                                                                                                     FMS-St. Alban's Dialysis Center
## 1437                                                                                                         North Ponds Family Medicine
## 1438                                                                                                                  After Care Program
## 1439                                                                                  Planned Parenthood of Central and Western New York
## 1440                                                                                                        Genesee Valley Family Health
## 1441                                                                                           Peconic Bay Physical Therapy&Rehab Center
## 1442                                                                                                         Samaritan Home Health, Inc.
## 1443                                                                                                                  Curtis High School
## 1444                                                                                            Capital Region Ambulatory Surgery Center
## 1445                                                                                          Sheepshead Nursing & Rehabilitation Center
## 1446                                                                                                                   Methadone Clinc I
## 1447                                                                                              Samaritan Hospital - St. Mary's Campus
## 1448                                                                                                             Hancock Family Practice
## 1449                                                                                   Planned Parenthood Hudson Peconic - Spring Valley
## 1450                                                                                                Whitney M Young Jr Health Center Inc
## 1451                                                                                             St. Nicholas Houses Child Health Clinic
## 1452                                                                                        Inwood Diagnostic and Treatment Center, Inc.
## 1453                                                                                                      Theodore Roosevelt High School
## 1454                                                                                              Beach Gardens Rehab and Nursing Center
## 1455                                                                                                       Lewis County General Hospital
## 1456                                                                                                                 Wayne Medical Group
## 1457                                                                                               St. Peter's Addiction Recovery Center
## 1458                                                                                                                   FMS-Living Center
## 1459                                                                                                     Eastern Niagara Family Medicine
## 1460                                                                                                          Beaver River Health Center
## 1461                                                                                                 Samaritan Health Service Ellenville
## 1462                                                                                                     Rehabilitation Extension Clinic
## 1463                                                                                                     Corning Medical Office Building
## 1464                                                                                        St Luke Residential Health Care Facility Inc
## 1465                                                                                       Adira at Riverside Rehabilitation and Nursing
## 1466                                                                                                   Westchester Center for Renal Care
## 1467                                                                                                       PACE Health Center Lackawanna
## 1468                                                                  Samaritan Medical Center - Urology, Lab & X-ray Services at Summit
## 1469                                                                                                     Huntington on Broadway Dialysis
## 1470                                                                                       Open Door Family Medical Center-Sleepy Hollow
## 1471                                                                                        Ahava Medical and Rehabilitation Center, LLC
## 1472                                                                                                      South Troy Primary Care Center
## 1473                                                                                                                        Warner Place
## 1474                                                                                                               Seneca Hill Manor Inc
## 1475                                                                                                 Neighborhood Health Center Blasdell
## 1476                                                                                     Fulton Center for Rehabilitation and Healthcare
## 1477                                                                                      Thelma C. Davidson Adair Medical/Dental clinic
## 1478                                                                                                                    Fannie Lou Hamer
## 1479                                                                                       Hudson Valley Hospital Center Infusion Center
## 1480                                                                                                       Northern Westchester Hospital
## 1481                                                                                                Gastroenterology of Westchester, LLC
## 1482                                                                                                           Bertrand Chaffee Hospital
## 1483                                                                                          Eger Health Care and Rehabilitation Center
## 1484                                                                                                         Lourdes Mobile Dental Van 2
## 1485                                                                                                        Newark Wayne Dialysis Center
## 1486                                                                            North Westchester Restorative Therapy and Nursing Center
## 1487                                                                                                     Allhealth D & T Center-Brooklyn
## 1488                                                                                                Premium Health Women's Health Center
## 1489                                                                                                          New East Side Nursing Home
## 1490                                                                                                    Eastchester Road Dialysis Center
## 1491                                                                                                 Northern Manor Geriatric Center Inc
## 1492                                                                                                   Irving Goldman Family Care Center
## 1493                                                                        Oak Orchard Community Health Center School Mobile Dental Van
## 1494                                                                                                               Lewiston Primary Care
## 1495                                                                                       SUNY at Stony Brook School of Dental Medicine
## 1496                                                                                 Sunrise Manor Center for Nursing and Rehabilitation
## 1497                                                                                             Hudson River Healthcare - Spring Valley
## 1498                                                           Suffolk County Department of Health Clinic Services - Hauppauge Methadone
## 1499                                                                                                Central Square Medical Health Center
## 1500                                                                                                            Leroy Medical Associates
## 1501                                                                                                 Community Health Center of Lockport
## 1502                                                        Montefiore Medical Center Henry and Lucy Moses Division Mobile Dental Van #2
## 1503                                                                                               Mt. Vernon Neighborhood Health Center
## 1504                                                                                                           Iroquois Nursing Home Inc
## 1505                                                                                                          Northern Dutchess Hospital
## 1506                                                                                               Utica Rehabilitation & Nursing Center
## 1507                                                                                              Delaware County Public Health Services
## 1508                                                                                          Berkshire Nursing & Rehabilitation  Center
## 1509                                                                                     Glengariff Rehabilitation and Healthcare Center
## 1510                                                                                                   University Dialysis Center@Auburn
## 1511                                                                                                       Outpatient Psychiatric Clinic
## 1512                                                                                                    Albert Tuitt Educational Academy
## 1513                                                                                                                               P S 8
## 1514                                                                                                         Outpatient Extension Clinic
## 1515                                                                                     Visiting Nurse Service of Northeastern New York
## 1516                                                           Montefiore Wakefield Behavioral Health and Substance Use Disorders Clinic
## 1517                                                                                                            Downsville Health Center
## 1518                                                                                                            P.S. 044 Thomas C. Brown
## 1519                                                                               Brooklyn Plaza Med Ctr Whitman-Ingersoll-Farragut H C
## 1520                                                                                                         University Heights Dialysis
## 1521                                                                                                  BronxCare Health & Wellness Center
## 1522                                                                                                      Communication Disorders Clinic
## 1523                                                                                                           Ridgewood Dialysis Center
## 1524                                                                                                            Jewish Home of Rochester
## 1525                                                                                                                 Millennium Dialysis
## 1526                                                                                      VBMC Cardiac Testing Center at Columbia Street
## 1527                                                                                                                     MMG - Via Verde
## 1528                                                                                              Quantum Rehabilitation and Nursing LLC
## 1529                                                                                                        Able Health Care Service Inc
## 1530                                                                                                          Western New York BloodCare
## 1531                                                                                                                            PS/MS 75
## 1532                                                                                                          Catherine Seeburger Center
## 1533                                                                                           New Roc Nursing and Rehabilitation Center
## 1534                                                                            Intermediate School 217 Entrada Academy & Charter School
## 1535                                                                                                              James M. Kieran Campus
## 1536                                                                                   Northern Westchester Hospital at Yorktown Imaging
## 1537                                                                                                           Riverdale Dialysis Center
## 1538                                                                                                    RGH ILS Northpark Medical Clinic
## 1539                                                                                                 Buffalo Community Healthcare Center
## 1540                                                                                                  Highland Women's Health - Perinton
## 1541                                                                                               Long Island Ambulatory Surgery Center
## 1542                                                                                                   South End Community Health Center
## 1543                                                                             Champlain Valley Physicians Hospital Medical Center SNF
## 1544                                                                                                           Floral Park Home Dialysis
## 1545                                                                                                            Mason Eye Surgery Center
## 1546                                                                                             Gowanda Rehabilitation & Nursing Center
## 1547                                                                      New York-Presbyterian Hospital - New York Weill Cornell Center
## 1548                                                                                             St. Mary's St. Johnsville Health Center
## 1549                                                                                               The High School of Fashion Industries
## 1550                                                                                                                FMS-Monroe Community
## 1551                                                                                                Peconic Bay Skilled Nursing Facility
## 1552                                                                                                    St. Mary's Medical Arts Building
## 1553                                                                                                              Westport Health Center
## 1554                                                                             Livingston County Center for Nursing and Rehabilitation
## 1555                                                                                                            Erasmus Hall High School
## 1556                                                                                       Golden Hill Nursing and Rehabilitation Center
## 1557                                                                                                                 Bronx Health Center
## 1558                                                                                          Bronx Park Rehabilitation & Nursing Center
## 1559                                                                                                    SJRH-Outpatient Physical Therapy
## 1560                                                                                 Mount Sinai Comprehensive Health Program - Downtown
## 1561                                                                                           U.S. Renal Care West Cheektowaga Dialysis
## 1562                                                                                                   Lawrence Home Care of Westchester
## 1563                                                                                                               Coney Island Hospital
## 1564                                                                                                         Housing Works East New York
## 1565                                                                                                                     Willcare LTHHCP
## 1566                                                                              University Hospital - Stony Brook Southampton Hospital
## 1567                                                                                             JHS 117 (Alternative Education Complex)
## 1568                                                                                                           East Neck Dialysis Center
## 1569                                                                                                          NCCC Mobile Dental Program
## 1570                                                                                                        Bassett Healthcare - Clinton
## 1571                                                                                                             Webster Family Medicine
## 1572                                                                                                      Kips Bay Endoscopy Center, LLC
## 1573                                                                                               Hebrew Home for the Aged at Riverdale
## 1574                                                                                                                    JHS 220 Pershing
## 1575                                                                                                         WPHC-Women's Imaging Center
## 1576                                                                                                            Cliffside Renal Dialysis
## 1577                                                                                                  Good Samaritan Hosp Pet/Ct Scanner
## 1578                                                                                             Planned Parenthood Ithaca Health Center
## 1579                                                                                               Medex Diagnostic and Treatment Center
## 1580                                                                                                                   Urban Health Plan
## 1581                                                                                                        Seneca Ridge Medical Complex
## 1582                                                                                                                Moreau Family Health
## 1583                                                                                                                 Huntington Hospital
## 1584                                                                                 Regal Heights Rehabilitation and Health Care Center
## 1585                                                                                                             Unity Dialysis at Chili
## 1586                                                                                                       Extension Clinic at Patchogue
## 1587                                                                                                  Pre-Emption Road Clinical Services
## 1588                                                                                               Ellis Medicine Primary Care Glenville
## 1589                                                                                                   Vestal Specialty Extension Clinic
## 1590                                                                                                    Grand Island Primary Care Center
## 1591                                                                                                           Amedisys Home Health Care
## 1592                                                                           Community Health Center of the North Country - Gouverneur
## 1593                                                                                                     Premier Healthcare D & T Center
## 1594                                                                                   Southern Tier Community Health Center Network Inc
## 1595                                                                                                            St Peters Hospital-SPARC
## 1596                                                                                                              Jane Adams High School
## 1597                                                                                                                Womans Health Source
## 1598                                                                                            Safire Rehabilitation of Southtowns, LLC
## 1599                                                                                                   South Nassau Communities Hospital
## 1600                                                                                                   The New Jewish Home, Sarah Neuman
## 1601                                                                                                                               MS145
## 1602                                                                                                             Saratoga Surgery Center
## 1603                                                                                                     Glengariff Dialysis Center, LLC
## 1604                                                                                                   Bronx Medical and Wellness Center
## 1605                                                                                        St. Peter's Cardiac & Pulmonary Rehab Center
## 1606                                                                                                         Healthcare Choices NY, Inc.
## 1607                                                                                               Cancer Institute-Imbert Cancer Center
## 1608                                                                                                     Ezras Choilim Health Center Inc
## 1609                                                                                            Brookdale Family Care Center at Penn Ave
## 1610                                                                                                                        BOOM! Health
## 1611                                                                                                       Narco Freedom-Grand Concourse
## 1612                                                                                                    NYU Mobile Dental Equip Sch Prog
## 1613                                                                                           Fordham Nursing and Rehabilitation Center
## 1614                                                                                                     Fresenius Kidney Care Hempstead
## 1615                                                                        North County Complex Methadone Maintenance Treatment Program
## 1616                                                                                              Bayard Rustin Education Complex (BREC)
## 1617                                                                                        Saratoga Outpatient Center at 19 West Avenue
## 1618                                                                                                                 HCR / HCR Home Care
## 1619                                                                                                    Fort Hudson Nursing Center, Inc.
## 1620                                                                                                     Farrell Community Health Center
## 1621                                                                              Hometown Health Centers at Mont Pleasant Middle School
## 1622                                                                                          Monroe County Department of Health Clinics
## 1623                                                                                                      Haym Solomon Home for the Aged
## 1624                                                                                                 Cooperative Magnetic Imaging Center
## 1625                                                                                             WNY Medical Management - Sheridan Drive
## 1626                                                                                                              Margaretville Hospital
## 1627                                                                                                                       PS 38 Pacific
## 1628                                                                                        Montefiore Medical Center-Wakefield Hospital
## 1629                                                                                                                 Resort Nursing Home
## 1630                                                                                                       FMS-Niskayuna Dialysis Center
## 1631                                                                                                                      Niagara OB/GYN
## 1632                                                                                                     Plaza Del Castilo Health Center
## 1633                                                                                                            Banana Kelly High School
## 1634                                                                                                Hope Center for HIV and Nursing Care
## 1635                                                                                                                      All County LLC
## 1636                                                                                        Linden Center for Nursing and Rehabilitation
## 1637                                                                                     Family Planning of South Central New York, Inc.
## 1638                                                                                                   Workmen's Circle Multicare Center
## 1639                                                                                                                 Dwyer Health Center
## 1640                                                                             Northwell Health Stern Family Center for Rehabilitation
## 1641                                                                                               Upper Hudson Planned Parenthood, Inc.
## 1642                                                                                                       The Birthing Center of NY Inc
## 1643                                                                                                    Highland Cardiology at Red Creek
## 1644                                                                                                Family Practice Center of Ellenville
## 1645                                                                                                       UHS Medical Group Orthopedics
## 1646                                                                                                              Open Door Dental Van 2
## 1647                                                                                                         Jerome Family Health Center
## 1648                                                                                                                        X 162 Campus
## 1649                                                                                                   Sumner Avenue Child Health Clinic
## 1650                                                                                                Sapphire Nursing and Rehab at Goshen
## 1651                                                                                                  START Treatment & Recovery Centers
## 1652                                                                               New York City Department of Health and Mental Hygiene
## 1653                                                                                      Garnet Health Medical Center - G. Hermann Site
## 1654                                                                                                        White Plains District Office
## 1655                                                                                                         Multi-Specialty Care Center
## 1656                                                                                           Personal Touch Home Aides of New York Inc
## 1657                                                                                                              Clinton Medical Center
## 1658                                                                                                Poughkeepsie Community Health Center
## 1659                                                                                                Early Childhood Intervention Program
## 1660                                                                                                               Adirondack Cardiology
## 1661                                                                                              Weill Cornell Imaging at NYP-61 Street
## 1662                                                                                           Nuclear Medicine Extension Clinic of AMCH
## 1663                               The University of Vermont Health Network- Champlain Valley Physicians Hospital Family Medicine Center
## 1664                                                                                                        CHN - Caribbean House Clinic
## 1665                                                                                                                AMS of Oswego Health
## 1666                                                                                                         Outpatient Extension Clinic
## 1667                                                                                                                            P. S. 97
## 1668                                                                                                                  Father Baker Manor
## 1669                                                                                                    Good Shepherd Village at Endwell
## 1670                                                                                             Intermediate School 164 Edward W. Stitt
## 1671                                                                                                 Middle Island Adult Day Health Srvs
## 1672                                                                                                            St. Peter's Sleep Center
## 1673                                                                                                          St. Elizabeth Medical Arts
## 1674                                                                                                         Seneca Family Health Center
## 1675                                                                                        Altmar-Parish-Williamstown Elementary School
## 1676                                                                                                      FMS-Middletown Dialysis Center
## 1677                                                                                                   Ellis Medicine Primary Care-Malta
## 1678                                                                                                            Broadway Dialysis Center
## 1679                                                                                                      Bassett Healthcare at Fox Care
## 1680                                                                                             Westchester County Department of Health
## 1681                                                                                                         Bassett Healthcare Delanson
## 1682                                                                                     New York-Presbyterian Hospital - Allen Hospital
## 1683                                                                                                           Alcoholism Rehabilitation
## 1684                                                                                          Bainbridge Nursing & Rehabilitation Center
## 1685                                                                                                                 Ozone Park Dialysis
## 1686                                                                                                           RRH Riedman Health Center
## 1687                                                                                                          St. Charles Rehabilitation
## 1688                                                                   NYU Langone Perlmutter Cancer Center - Winthrop Radiation Therapy
## 1689                                                                                                    Park Ridge Professional Building
## 1690                                                      Mount St. Mary's Primary Care Extension Clinic for Complete Senior Care Center
## 1691                                                                                                 Broome County Mobile Dental Program
## 1692                                                                                    Brooklyn Gardens Nursing & Rehabilitation Center
## 1693                                            Family Care Certified Services, a Division of Tri-Borough Certified Health Systems of NY
## 1694                                                                                                   Pulaski Junior Senior High School
## 1695                                                                                                                    Midwood Dialysis
## 1696                                                                                                          North Utica Medical Office
## 1697                                                                                             James G. Johnston Memorial Nursing Home
## 1698                                                           Long Island Community Hospital Outpatient Chemical Dependency Center East
## 1699                                                                                                  Schoharie County Health Department
## 1700                                                                                                  START Treatment & Recovery Centers
## 1701                                                                               Premier Genesee Center for Nursing and Rehabilitation
## 1702                                                                                         Planned Parenthood Queensbury Health Center
## 1703                                                                                     Lakeside/Parkshore Adult Day Health Care Center
## 1704                                                                                                                    Calvary Hospital
## 1705                                                                                      CPH Specialty Practices at Gouverneur Hospital
## 1706                                                                                                                                X158
## 1707                                                                                                                  Callen-Lorde Bronx
## 1708                                                                                            Caring Hospice Services of New York, LLC
## 1709                                                                                           Pro Health Ambulatory Surgery Center, Inc
## 1710                                                                                  Palm Gardens Center for Nursing and Rehabilitation
## 1711                                                                                                Ambulatory Care Clinic at Union Hosp
## 1712                                                                                                Clifton Park Physical Rehabilitation
## 1713                                                                                       St. Peter's Nursing And Rehabilitation Center
## 1714                                                                                                      City Wide Health Facility Inc.
## 1715                                                                                              New York Artificial Kidney Center, Inc
## 1716                                                                                    Humboldt House Rehabilitation and Nursing Center
## 1717                                                                                                    OH Fulton Health Services Center
## 1718                                                                                                 Island Rehabilitative Services Corp
## 1719                                                                                                     West Nassau Dialysis Center Inc
## 1720                                                                                                                            PS 811 M
## 1721                                                                                                  Julia and Israel Waldbaum Dialysis
## 1722                                                                                            E.J. Noble Health Center Dekalb Junction
## 1723                                                                                                    The Endoscopy Center of New York
## 1724                                                                                                             Intermediate School 145
## 1725                                                                                                                   The Wartburg Home
## 1726                                                                                                             Deruyter Central School
## 1727                                                                                  Little Falls Hospital St. Johnsville Health Center
## 1728                                                                                                                             P.S. 96
## 1729                                                                                                             Cayuga Endoscopy Center
## 1730                                                                                                 South Bay Cardiovascular Associates
## 1731                                                                                                    St. Joseph's Dialysis - Regional
## 1732                                                                                                                     HSS Westchester
## 1733                                                                                                Burke Rehab Sports&Physical Medicine
## 1734                                                                                      Long Island Community Hospital Dialysis Center
## 1735                                                                                         People, Home Health Services-Certified, Inc
## 1736                                                                                          Noyes Center for Kidney Disease & Dialysis
## 1737                                                                                                       Warren County Health Services
## 1738                                                                                                 Montefiore Rehab Medical Associates
## 1739                                                                                                                     Briah Home Care
## 1740                                                                                                    Oneida Health Verona Family Care
## 1741                                                                                                    Columbia-Greene Dialysis Centers
## 1742                                                                                              Joseph P. Addabbo Family Health Center
## 1743                                                                                                                        FMS-Brighton
## 1744                                                                                             Cattaraugus County Department of Health
## 1745                                                                                                   Lower Eastside Service Center Inc
## 1746                                                                                                                    Phelps at Croton
## 1747                                                                                                                    UPSTATE C.A.R.E.
## 1748                                                                                               Carthage Area Hospital Walk-In Clinic
## 1749                                                                                                                        Gan Day Care
## 1750                                                                                                Hometown Health Centers at Amsterdam
## 1751                                                                                                       Strong Health Midwifery Group
## 1752                                                                                                     Sapphire Nursing at Meadow Hill
## 1753                                                                                                  CHN-Long Island City Health Center
## 1754                                                                            HealthAlliance Hospital Broadway Campus Physical Therapy
## 1755                                                                                                             Malta Med Emergent Care
## 1756                                                                                                                         ConnextCare
## 1757                                                                                                          Peconic Bay Medical Center
## 1758                                                                                            Westchester Artificial Kidney Center-DCI
## 1759                                                                                                           Benjamin Banneker Academy
## 1760                                                                               Eddy Heritage House Nursing and Rehabilitation Center
## 1761                                                                                                  Mosholu Avenue Primary Care Center
## 1762                                                                                               Brookdale Family Care Center-New Lots
## 1763                                                                                                                  Morris High School
## 1764                                                                                                                  LISH at Manorville
## 1765                                                                                          Health Services of Northern New York, Inc.
## 1766                                                                NY-Presbyterian Lawrence Hospital Cardiac & Pulmonary Rehabilitation
## 1767                                                                                                            WPH Medical and Wellness
## 1768                                                                                                              Kenmore Mercy Hospital
## 1769                                                                                                         Bassett Healthcare Stamford
## 1770                                                                                    The Center for Primary and Behavioral Healthcare
## 1771                                                                                                Watkins Glen Medical Office Building
## 1772                                                                                           United Odd Fellow and Rebekah Home LTHHCP
## 1773                                                                                                              Primary Care Clinic OP
## 1774                                                                                                                 A C Clark Gymnasium
## 1775                                                                                                          The New York Proton Center
## 1776                                                                                         Chenango County Department of Public Health
## 1777                                                                                                                          Metro YMCA
## 1778                                                                                                                Elderwood at Amherst
## 1779                                                                                                Onondaga County Department of Health
## 1780                                                                                                     The Unity Hospital of Rochester
## 1781                                                                                               Digestive Health Center of Huntington
## 1782                                                                       Memorial Sloan Kettering Breast and Diagnostic Imaging Center
## 1783                                                                                         Surgical Pain Center of the Adirondacks LLC
## 1784                                                                                             Finger Lakes Visiting Nurse Service Inc
## 1785                                                                                                 Springfield Community Health Center
## 1786                                                                       The Pines at Poughkeepsie Center for Nursing & Rehabilitation
## 1787                                                                                                                      Penfield Place
## 1788                                                                                                  Fresenius Kidney Care - Wheatfield
## 1789                                                                                                                Elderwood at Hornell
## 1790                                                                                            Henry J. Carter Skilled Nursing Facility
## 1791                                                                                         Samaritan Hospital - Albany Memorial Campus
## 1792                                                                                                   SNC Hosp Center for Sleep Studies
## 1793                                                                                                   Coney Island Multi Service Center
## 1794                                                                                                        Hutchings Psychiatric Center
## 1795                                                                                                         Manhasset Day Center Clinic
## 1796                                                         East Hill Family Medical Inc. - School-Based Mobile Dental Equipment Clinic
## 1797                                                                                                              Ithaca Dialysis Center
## 1798                                                                                                               NYU Winthrop Hospital
## 1799                                                                                                    Margaretville Hospital In Motion
## 1800                                                                                                                    CMH Eaton Center
## 1801                                                                                                        Richmond Pain Management ASC
## 1802                                                                         Northpointe Council Methadone Maintenance Treatment Program
## 1803                                                                                 BronxCare Dr. Martin Luther King, Jr. Health Center
## 1804                                                                                                                Family Medical Group
## 1805                                                                                   Clifton Springs Hospital and Clinic Extended Care
## 1806                                                                         Planned Parenthood Project Street Beat Mobile Health Center
## 1807                                                                                                     Long Island Jewish Forest Hills
## 1808                                                                                                            Strong Memorial Hospital
## 1809                                                                                           University Hospital Sleep Disorder Clinic
## 1810                                                                                        St. James Rehabilitation & Healthcare Center
## 1811                                                                                              NYU Winthrop Hospital Pediatric Center
## 1812                                                                            The New Jewish Home Adult Day Health Care Program, Bronx
## 1813                                                                                                    Saratoga Community Health Center
## 1814                                                                                                           Degraff Memorial Hospital
## 1815                                                                                                                              P S 10
## 1816                                                                                                     ODA Primary Health Care Network
## 1817                                                                                                      The New Jewish Home, Home Care
## 1818                                                                       Groton Community Health Care Center Residential Care Facility
## 1819                                                                                                                 Mount Eden Dialysis
## 1820                                                                                                                Glens Falls Hospital
## 1821                                                                                                     Peconic Bay Homehealth Services
## 1822                                                                                                         Fieldston Lodge Care Center
## 1823                                                                                                        Doctor's United Inc.-Yonkers
## 1824                                                                                          Charles B Wang Community Health Center Inc
## 1825                                                                                                            Waddington Health Center
## 1826                                                                                                               Midlakes Medical Care
## 1827                                                                                                Fresnius Kidney Care - Degraw Street
## 1828                                                                                          OrthoNY Ambulatory Surgery Center - Albany
## 1829                                                                                                 St Peters Addiction Recovery Center
## 1830                                                                                                                Refuah Health Center
## 1831                                                                                                               Orthopedic O/P Clinic
## 1832                                                                                        Community Health Center of the North Country
## 1833                                                                                                BIMC Geriatrics Senior Health Center
## 1834                                                                                                     Continuing Treatment Program II
## 1835                                                                                                          Sunnyview Therapy Services
## 1836                                                                                                              Putnam Hospital Center
## 1837                                                                                                   Jones Mem Hosp Health Care Clinic
## 1838                                                                                                       University Health Care Center
## 1839                                                                                                           Ticonderoga Health Center
## 1840                                                                                         NewYork-Presbyterian/Hudson Valley Hospital
## 1841                                                       Community Health Center of St. Mary's Healthcare and Nathan Littauer Hospital
## 1842                                                                           Dr Susan Smith Mckinney Nursing and Rehabilitation Center
## 1843                                                                                                                  Southside Hospital
## 1844                                                                                                   Century Medical and Dental Center
## 1845                                                                                       Bronx Center for Rehabilitation & Health Care
## 1846                                                  The University of Vermont Health Network- Champlain Valley Physicians Hospital MRI
## 1847                                                                                                            St. Mary's Health Center
## 1848                                                                                     Eddy Daybreak at Marjorie Doyle Rockwell Center
## 1849                                                                                                          HW Smith Elementary School
## 1850                                                                                                            Primary Care Center-West
## 1851                                                                                                       Datahr Home Health Care, Inc.
## 1852                                                                          Women and Children's Hospital of Buffalo - McKinley OB/GYN
## 1853                                                                                                     Girling Health Care of New York
## 1854                                                                                             Methadone Maintenance Treatment Program
## 1855                                                                                                         FMS-Bayside Dialysis Center
## 1856                                                                                                                 Complex Care Center
## 1857                                                                                                 Hemodialysis/CAPD Outpatient Center
## 1858                                                                                                 Samaritan Health Service University
## 1859                                                                                                               Evander Childs Campus
## 1860                                                                                                              La Casa De Salud, Inc.
## 1861                                                                                                New York Eye & Ear Outpatient Center
## 1862                                                                                                                  Marie Curie Campus
## 1863                                                                                                       NYU Langone Orthopedic Center
## 1864                                                                                                                   Allerton Dialysis
## 1865                                                                                                          Windsor-Family Care Center
## 1866                                                                                        Prasad Childrens Dental Health Program, Inc.
## 1867                                                                                                             Adapt Community Network
## 1868                                                                                             Schofield Adult Day Health Care Program
## 1869                                                                                                Center for Hearing and Communication
## 1870                                                                                        Harlem Center for Nursing and Rehabilitation
## 1871                                                                                              Hudson River Healthcare Valentine Lane
## 1872                                                                                                                          Midtown PT
## 1873                                                                                                      Riverside Family Medical Group
## 1874                                                                                                          Mid-Bronx Endoscopy Center
## 1875                                                                                                  Mohawk Valley Heart Institute, Inc
## 1876                                                                                                    Greenfield Health & Rehab Center
## 1877                                                                                                     Oneida County Health Department
## 1878                                                                           The Chateau at Brooklyn Rehabilitation and Nursing Center
## 1879                                                                                                            HHC Health and Home Care
## 1880                                                                                           Stanley M Makowski Early Childhood Center
## 1881                                                                                               Sisters Hospital Alden Medical Center
## 1882                                                                           St. Peter's Breast Center - Washington Avenue Mammography
## 1883                                                                                                     Pittsford Extension Clinic - UC
## 1884                                                                                                   Mobile Van#3-Refuah Health Center
## 1885                                                                                                               Edwards Health Center
## 1886                                                                                     NYU Winthrop Hospital Ambulatory Surgery Center
## 1887                                                                                              Jefferson County Public Health Service
## 1888                                                                                                            North Shore Surgi-Center
## 1889                                                                                                                              PS 155
## 1890                                                                               Excel at Woodbury for Rehabilitation and Nursing, LLC
## 1891                                                                                                           UHS Primary Care Endicott
## 1892                                                                                                           Candor Family Care Center
## 1893                                                                                                         Hudson Falls Medical Center
## 1894                                                                                                               Boonville Family Care
## 1895                                                                                      Diamond Hill Nursing and Rehabilitation Center
## 1896                                                                                                       Medical Specialties at Wilton
## 1897                                                                                                                               PS 57
## 1898                                                                                                          Elderwood at Williamsville
## 1899                                                                                                        Metropolitan Hospital Center
## 1900                                                                                                                 Lourdes Orthopedics
## 1901                                                                                              St Josephs Hospital Health Center CHHA
## 1902                                                                                                             Intermediate School 218
## 1903                                                                                        J-Cap Inc Thomas & Marie White Health Center
## 1904                                                                                        Finger Lakes Migrant Health Care Project Inc
## 1905                                                                                                               Morris Central School
## 1906                                                                                  Michael Callen-Audre Lorde Community Health Center
## 1907                                                                                                    ParCare Community Health Network
## 1908                                                                                                   Rockland County Health Department
## 1909                                                                                                   NY Eye & Ear Infirmary Ext Clinic
## 1910                                                                                                               Dental Care On Wheels
## 1911                                                                                                  Achieve Rehab and Nursing Facility
## 1912                                                                                                                      Lourdes Vestal
## 1913                                                                                                   121st Street Family Health Center
## 1914                                                                                                    Main Street Radiology at Bayside
## 1915                                                                                                              Massena Hospital, Inc.
## 1916                                                                                                          Stonybrook Dialysis Clinic
## 1917                                                                                           St. Peter's Hospital Spine & Neurosurgery
## 1918                                                                                              The Marble Hill Family Practice Center
## 1919                                                                                       St Peters Rensselaer Health and Dental Center
## 1920                                                                                                       Sterling Surgical Center, LLC
## 1921                                                                                                          St. Charles Rehabilitation
## 1922                                                                                                     Long Island State Veterans Home
## 1923                                                                                                            Amber Court at Home, LLC
## 1924                                                                                           Community Health Center of Richmond, Inc.
## 1925                                                                                        Surgical Specialists of Glens Falls Hospital
## 1926                                                                                                                    Mosdoth Day Care
## 1927                                                                                                         Sisters Health Center Depew
## 1928                                                                                                           Center for Physical Rehab
## 1929                                                                                                                Wards Island Project
## 1930                                                                                                                     Elmira ASC, LLC
## 1931                                            Parker Jewish Institute for Health Care and Rehabilitation, Certified Home Health Agency
## 1932                                                                                                        Carnegie Hill Institute, Inc
## 1933                                                                                                                    Amsterdam Center
## 1934                                                                                                       Waterview Nursing Care Center
## 1935                                                                                                         Outpatient Extension Clinic
## 1936                                                                                                   University Hospital Screening Van
## 1937                                                                                                                Methadone Clinic III
## 1938                                                                                       William F. Ryan Community Health Center, Inc.
## 1939                                                                                               Rosa Coplon Jewish Home and Infirmary
## 1940                                                                                                     Good Shepherd-Fairview Home Inc
## 1941                                                                      Absolut Center for Nursing and Rehabilitation at Endicott, LLC
## 1942                                                                                                         Bassett Healthcare Herkimer
## 1943                                                                                                           Elderwood at Grand Island
## 1944                                                                                           Jones Memorial Medical Practices, Bolivar
## 1945                                                                                                                    Canterbury Woods
## 1946                                                                                                         Barnabas Hospital Methadone
## 1947                                                                                                          NSUH Imaging at Great Neck
## 1948                                                                                                                 Mayfair Care Center
## 1949                                                                                                     Mercy Comprehensive Care Center
## 1950                                                                                                        M.S. 54 Booker T. Washington
## 1951                                                                                                        Carey Road Outpatient Center
## 1952                                                                       The Pines Healthcare & Rehabilitation Centers  Machias Campus
## 1953                                                                               Mercy Hospital - Mercy Hospital Orchard Park Division
## 1954                                                                                                            Mount Vernon High School
## 1955                                                                                                           Alice Hyde Medical Center
## 1956                                                                                                        Hospital for Special Surgery
## 1957                                                                                                         Saint Vincent Health Center
## 1958                                                                                                                Elmont Health Center
## 1959                                                                                                          Arnot Ogden Medical Center
## 1960                                                                                        Specialty Surgery Center of Central New York
## 1961                                                                                                                WCINYP at 53 Beekman
## 1962                                                                                                            Buffalo Hearing & Speech
## 1963                                                                                                            Ronkonkoma Health Center
## 1964                                                                                 Whitney M. Young Jr. Health Center, Inc. Mobile Van
## 1965                                                                                             Tender Loving Care, an Amedisys Company
## 1966                                                                                                      PACE Health Center Cheektowaga
## 1967                                                                                               NYU Langone Ambulatory Surgery Center
## 1968                                                                                            Martin Luther King, Jr Elementary School
## 1969                                                                                             Sleep Disorders Lab at Lourdes Hospital
## 1970                                                                                                      United Hebrew Geriatric Center
## 1971                                                                                                           Hutchinson River Dialysis
## 1972                                                                                    FoltsBrook Center for Nursing and Rehabilitation
## 1973                                                                                                           Maimonides Medical Center
## 1974                                                                                       Parkview Care and Rehabilitation Center, Inc.
## 1975                                                                                                                      Premium Health
## 1976                                                                                                      Latham Primary Care Associates
## 1977                                                                                                   Daughters of Sarah Nursing Center
## 1978                                                                                                                   CHN Mobile Van IV
## 1979                                                                                   Sunnyview Therapy Services at 1450 Western Avenue
## 1980                                                                                        Sunnyview Hospital and Rehabilitation Center
## 1981                                                                                                                 Mobile Health Van 5
## 1982                                                                                                 Metro Community Health Center Bronx
## 1983                                                                                                   Geneva Adult Day Care at Waterloo
## 1984                                                                                                           Seneca Health Care Center
## 1985                                                                                                    HIV Primary Care Clinic - Ithaca
## 1986                                                                                                   FMS-Albany Regional Kidney Center
## 1987                                                                                                                         Methadone 1
## 1988                                                                                                       St Anthony Community Hospital
## 1989                                                                                Bensonhurst Center for Rehabilitation and Healthcare
## 1990                                                                                                                   HRHCare Wyandanch
## 1991                                                                                             North Country Obstetrics and Gynecology
## 1992                                                                                                         James Donovan Middle School
## 1993                                                                                  St. Joseph's MC-St. Vincent's Westchester Division
## 1994                                                                                                         St. Joseph's Medical Center
## 1995                                                                                               Burke Rehabilitation Clinic at Armonk
## 1996                                                                                              Jefferson County Public Health Service
## 1997                                                                                                        Columbia Memorial Pediatrics
## 1998                                                                                     Parker Jewish Institute for Health Care & Rehab
## 1999                                                                                                        White Plains Hospital Center
## 2000                                                                                                                       Lifetime Care
## 2001                                                                                                                VNA of Staten Island
## 2002                                                                                               Callen-Lorde Integrated Health Center
## 2003                                                                                                Jericho Road Community Health Center
## 2004                                                                                          Cornerstone Family Healthcare - Plattekill
## 2005                                                                                    Greene Meadows Nursing and Rehabilitation Center
## 2006                                                                                                               Lasante Health Center
## 2007                                                                                                      Chinatown Dialysis Center, LLC
## 2008                                                                                                     Orleans Community Health Center
## 2009                                                                                                     Stony Brook Primary Care Center
## 2010                                                                                Friedwald Center for Rehabilitation and Nursing, LLC
## 2011                                                                                                            Fishkill Dialysis Center
## 2012                                                                                          Royal Care Certified Home Health Care, LLC
## 2013                                                                                                          Rutland Nursing Home, Inc.
## 2014                                                                                                          Cardiac Testing - Fishkill
## 2015                                                                                                  UHS Primary Care - Robinson Street
## 2016                                                                                                              Avon Nursing Home, LLC
## 2017                                                                                                      The Center for Discovery, Inc.
## 2018                                                                                              Samaritan Hospital - St. Mary's Campus
## 2019                                                                                         UR Medicine Primary Care - Bushnell's Basin
## 2020                                                         NY Presbyterian/Hudson Valley Hospital Physical Therapy at Croton-on-Hudson
## 2021                                                                                                              Mobile Mammography Van
## 2022                                                                                                         Susan E. Wagner High School
## 2023                                                                                                     Buffalo Hearing & Speech Center
## 2024                                                                                         Strong Infusion Center at Highland Hospital
## 2025                                                                                        Long Island Center for Digestive Health, LLC
## 2026                                                                                                Ambulatory Surgery Center of Niagara
## 2027                                                                                       The Phoenix Rehabilitation and Nursing Center
## 2028                                                                                              Metro Community Health Center Brooklyn
## 2029                                                                                                Allegany County Department of Health
## 2030                                                                                                           Selfhelp Family Home Care
## 2031                                                                                                            Granville Medical Center
## 2032                                                                                                         St Vincent Depaul Residence
## 2033                                                                                                              Penn Fair Primary Care
## 2034                                                                                           Salamanca Rehabilitation & Nursing Center
## 2035                                                                                            Rogosin Institute Brooklyn Home Dialysis
## 2036                                                                                                 St. Mary's Northville Health Center
## 2037                                                                                                   Outpatient Oncology Clinic-Geneva
## 2038                                                                                                            Maimonides Cancer Center
## 2039                                                                                     Queens Nassau Rehabilitation and Nursing Center
## 2040                                                                                                           Ramon Velez Health Center
## 2041                                                                                Staten Island University Hospital University Hospice
## 2042                                                                                                 Hamilton Adult Day Services Program
## 2043                                                                             Southside Hospital Endoscopy and Pain Management Center
## 2044                                                                                                                Inwood Health Center
## 2045                                                                                                  Queens-Long Island Renal Institute
## 2046                                                                                                       Washington Irving High School
## 2047                                                                                          William F Ryan Community Health Center Inc
## 2048                                                                                                      Manhattan Avenue Health Center
## 2049                                                                                                    Ulster Radiation Oncology Center
## 2050                                                                                            Outpatient Extension Clinic-White Spruce
## 2051                                                                                                         CMH Rehabilitation Services
## 2052                                                                                                   Rome Mem Hosp-1617 North James St
## 2053                                                                                              Weill Cornell Imaging at NYP-West Side
## 2054                                                                                                     North Shore University Hospital
## 2055                                                                                                               Cardiopulmonary Rehab
## 2056                                                                                                       Calkins Creek Family Medicine
## 2057                                                                                                      Cornerstone Urgent Care Center
## 2058                                                                                            Corning Hospital Same Day Surgery Center
## 2059                                                                                                                              I S 49
## 2060                                                                                                 Dr. King Applied Sci Com Magnet Sch
## 2061                                                                                                    Main Street Radiology at Bayside
## 2062                                                                                                 PEDS-ECMC Clinical Therapy Services
## 2063                                                                                                                              PS 382
## 2064                                                                                       Lenox Hill Hospital Extension Clinic at MEETH
## 2065                                                                         Oneida Health Chittenango Internal Medicine and Family Care
## 2066                                                                                              Mt St Marys Neighborhood Health Center
## 2067                                                                                                       Dyker Heights Dialysis Center
## 2068                                                                              Memorial Sloan Kettering 64th Street Outpatient Center
## 2069                                                                                                       Morris Heights at Melrose Ave
## 2070                                                                                                              Harlem Hospital Center
## 2071                                                                                Carmel Richmond Healthcare and Rehabilitation Center
## 2072                                                                                  Far Rockaway Center for Rehabilitation and Nursing
## 2073                                                                                                Open Door Family Medical Center, Inc
## 2074                                                                                           Seagate Rehabilitation and Nursing Center
## 2075                                                                                                     Bethel Nursing Home Company Inc
## 2076                                                                                                                    Syosset Hospital
## 2077                                                                             Queens Boulevard Extended Care Facility Dialysis Center
## 2078                                                                                          Unity Health at Pieters Family Life Center
## 2079                                                                                                             Gananda Family Practice
## 2080                                                                                                     HSS Physiatry & Pain Management
## 2081                                                                    Planned Parenthood of the North Country, New York, Inc. - Malone
## 2082                                                                                                           Philip Randolph Campus HS
## 2083                                                                                                            Lutheran Retirement Home
## 2084                                                                                                    Health Center Broad Street Annex
## 2085                                                                                                  John R. Oishei Children's Hospital
## 2086                                                                                                                OGH Salamanca Clinic
## 2087                                                                                                 Northern Tioga Center-Family Health
## 2088                                                                                                           Lisbon Health Care Center
## 2089                                                                                                                Northern Manor ADHCP
## 2090                                                                                                        Meadowbrook Endoscopy Center
## 2091                                                                    Warrensburg Health Center - School Based Mobile Dental Equipment
## 2092                                                                                                                               PS 48
## 2093                                                                                                          FMS-Albany Dialysis Center
## 2094                                                                                                     Boricua Community Health Center
## 2095                                                                                  Ralph Lauren Center for Cancer Care and Prevention
## 2096                                                                                                                 Mosaic Health Lyons
## 2097                                                                                          Visiting Nurse Hospice and Palliative Care
## 2098                                                                                                              Belair Care Center Inc
## 2099                                                                                 The Unity Hospital of Rochester - St. Mary's Campus
## 2100                                                                                                      Bassett Healthcare Middleburgh
## 2101                                                                                                         Central New York Eye Center
## 2102                                                                                     Caring Family Nursing and Rehabilitation Center
## 2103                                                                                                            Elderwood at North Creek
## 2104                                                                                                      Dolgeville Primary Care Center
## 2105                                                                                              Unity Hospital Dialysis at Spencerport
## 2106                                                                                                           Beach Terrace Care Center
## 2107                                                                                                                         Path Center
## 2108                                                                 United Health Services Hospitals Inc. - Binghamton General Hospital
## 2109                                                                                                 St. Lawrence Ambulatory Care Center
## 2110                                                                                                                   Mott Haven Campus
## 2111                                                                                          Northern Riverview Health Care Center, Inc
## 2112                                                                                             Avantus Upper Manhattan Dialysis Center
## 2113                                                                                                         South Bronx Dialysis Center
## 2114                                                                                                  Marathon Junior Senior High School
## 2115                                                                                                        Westside Academy at Blodgett
## 2116                                                                                                                      BMS at Genesis
## 2117                                                                                                      Chenango Memorial Hospital Inc
## 2118                                                                                                Aurelia Osborn Fox Memorial Hospital
## 2119                                                                                                                 HCR / HCR Home Care
## 2120                                                                                                               Bayberry Nursing Home
## 2121                                                                                                 Woodside Houses Child Health Center
## 2122                                                                                                     Fingerlakes Medical Care Center
## 2123                                                                                       St. Peter's Nursing And Rehabilitation Center
## 2124                                                                                                                 Mobile Medical Unit
## 2125                                                                                                                             I S 166
## 2126                                                                                          Strong Eastside Orthopedics & Rehab Clinic
## 2127                                                                                                          St. Charles Rehabilitation
## 2128                                                                                        Planned Parenthood Schenectady Health Center
## 2129                                                                                                                   J.H.S. 062 Ditmas
## 2130                                                                      Montefiore Mount Vernon Methadone Maintenance Treatment Center
## 2131                                                                                                             Champlain Family Health
## 2132                                                                                                         Bushwick Educational Campus
## 2133                                                                                             Orchard Rehabilitation & Nursing Center
## 2134                                                                                                    Brooks-TLC Hospital System, Inc.
## 2135                                                                                             Methadone Maintenance Treatment Program
## 2136                                                                                                     Therapy Connection at Millbrook
## 2137                                                                                            Westbury/New Cassel Family Health Center
## 2138                                                                                                      Narco Freedom-561 Court Street
## 2139                                                                                           Mount St Marys Hospital and Health Center
## 2140                                                                                                                  CAH Medical Center
## 2141                                                                                                                        West Side GI
## 2142                                                                                                     Eddy Village Green at Beverwyck
## 2143                                                                                             Century Medical and Dental Center, Inc.
## 2144                                                                                                          Bassett Healthcare Norwich
## 2145                                                                                               Avon Foundation Breast Imaging Center
## 2146                                                                                                       Stony Brook Technology Center
## 2147                                                                                               Roswell Park Cancer Institute Niagara
## 2148                                                                                                            Huntington Living Center
## 2149                                                                                                     Fresenius Kidney Care - Hornell
## 2150                                                                                                   Wyoming County Community Hospital
## 2151                                                                                                           Twin Tier Home Health Inc
## 2152                                                                                            Cornerstone Family Healthcare Mobile Van
## 2153                                                                                                            CHC Surgical Center, LLC
## 2154                                                                                                                     Beechwood Homes
## 2155                                                                                                          Barry Street Health Center
## 2156                                                                                                     Caroga Lake Primary Care Center
## 2157                                                                                        VBMC Cardiac Testing & Rehabilitation Center
## 2158                                                                      Schulman and Schachne Institute for Nursing And Rehabilitation
## 2159                                                                                                     Lourdes Orthopedics - Southside
## 2160                                                                                                       Community Medicine-East Utica
## 2161                                                                                                                   HRHCare Brentwood
## 2162                                                                                                          Alcohol Treatment Services
## 2163                                                                                      Mount St. Mary's Ear, Nose and Throat Services
## 2164                                                                                                             Putnam Gastroenterology
## 2165                                                                                                    Brookdale Family Care Center Inc
## 2166                                                                                      Four Seasons Nursing and Rehabilitation Center
## 2167                                                                                  Smithtown Center for Rehabilitation & Nursing Care
## 2168                                                                                                                 Guthrie Home Health
## 2169                                                                                                        Gloversville Dialysis Center
## 2170                                                                                     Gurwin Jewish Nursing and Rehabilitation Center
## 2171                                                                                                      Riverside Family Medical Group
## 2172                                                                                                     Renaissance Health Care Network
## 2173                                                                                                  Morris Heights Center 233rd Street
## 2174                                                                                                                   Summit Pediatrics
## 2175                                                                                                  Maimonides Adult/Ped Dental Center
## 2176                                                                                                FonClair Terrace Primary Care Center
## 2177                                                                                                                 Sidney Primary Care
## 2178                                                                                                          NSUH Imaging at Huntington
## 2179                                                                                                                                X198
## 2180                                                                                                         Southview Internal Medicine
## 2181                                                                                                                  St. James Hospital
## 2182                                                                                               ODA Primary Health Care Network, Inc.
## 2183                                                                            Parker Jewish Institute for Health Care & Rehabilitation
## 2184                                                                                                               Bedford Health Clinic
## 2185                                                                 Trustees of the Eastern Star Hall and Home of the State of New York
## 2186                                                                                              Maimonides Women's Services 9th Avenue
## 2187                                                                                                                   Mobile Eye Clinic
## 2188                                                                                                  Whitney M Young Troy Health Center
## 2189                                                                                                    Primary Care Associates Eastside
## 2190                                                                                                                 Unity Living Center
## 2191                                                                                                  Creekview Nursing and Rehab Center
## 2192                                                                                                                   DSI Newburgh, LLC
## 2193                                                                                                                               PS 59
## 2194                                                                                                            Penfield Family Medicine
## 2195                                                                                  Sleep Disorder/Pulmonary Function Testing Services
## 2196                                                                                             Campbell Hall Rehabilitation Center Inc
## 2197                                                                                                     Hudson Valley Endoscopic Center
## 2198                                                                                    North Country Family Health Center - Evans Mills
## 2199                                                                                                         NewYork-Presbyterian/Queens
## 2200                                                                                                               Little Falls Hospital
## 2201                                                                                                                PS 197/John Russwurm
## 2202                                                                                            Island Ambulatory Surgery Center, L.L.C.
## 2203                                                                                                                Mental Health Clinic
## 2204                                                                                                           Indian Lake Health Center
## 2205                                                                                                                    Mobile Medical 4
## 2206                                                                                    HealthAlliance Hosp Bdwy Campus Radiology and PT
## 2207                                                                                                    Samaritan Health Village 53rd St
## 2208                                                                                               Joseph P Addabbo Family Health Center
## 2209                                                                                                           Beth Israel Med Center #2
## 2210                                                              Stony Brook University Hospital's Extension Clinic at Stony Brook Road
## 2211                                                                         Community Memorial Hospital - Hamilton Family Health Center
## 2212                                                                                                       Unity Dental Group - Penfield
## 2213                                                                                          Hudson Valley Certified Home Health Agency
## 2214                                                                                                   Hospice of the North Country, Inc
## 2215                                                                                                            Lynbrook Dialysis Center
## 2216                                                                                                               Jamestown High School
## 2217                                                                                                         Dundee Dental Health Center
## 2218                                                                                                             Sauquoit Medical Office
## 2219                                                                                                         Schyler Achievement Academy
## 2220                                                                                                         Brockport Mental Health O/P
## 2221                                                                                            Houghton Rehabilitation & Nursing Center
## 2222                                                                                                                      BMS at Ashford
## 2223                                                                                               Buffalo Hearing and Speech Center Inc
## 2224                                                                                 Hudson Valley Rehabilitation & Extended Care Center
## 2225                                                                                                                     Pine Haven Home
## 2226                                                                                                                IDCC Health Services
## 2227                                                                                         Adirondack Medical Center-Saranac Lake Site
## 2228                                                                                       Triboro Center for Rehabilitation and Nursing
## 2229                                                                                                         East Tremont Medical Center
## 2230                                                                                                                   Settlement Health
## 2231                                                                                                          St Martin De Porres Clinic
## 2232                                                                                                          Westchester Medical Center
## 2233                                                                                                               Hudson Valley Hospice
## 2234                                                                                                     Open Door Family Med Center Inc
## 2235                                                                                                                HSS ASC of Manhattan
## 2236                                                                                                           SNCH Family Health Center
## 2237                                                                                                              St Mary's Center ADHCP
## 2238                                                                                                           OLOL SB Mobile Dental Van
## 2239                                                                                               St. Peter's Addiction Recovery Center
## 2240                                                                                                         Kew Gardens Dialysis Center
## 2241                                                                                      Carthage Center for Rehabilitaiton and Nursing
## 2242                                                                                                                   St. Josephs Place
## 2243                                                                                                                   One Fordham Plaza
## 2244                                                                                                            Greenwich Medical Center
## 2245                                                                                                            Cortland Surgical Center
## 2246                                                                                             Westchester County Department of Health
## 2247                                                                                              Rensselaer County Department of Health
## 2248                                                                                                                 RPCI Amherst Center
## 2249                                                                                     The Grand Rehabilitation and Nursing at Batavia
## 2250                                                                               Meadow Park Rehabilitation and Health Care Center LLC
## 2251                                                                                      Fishkill Center for Rehabilitation and Nursing
## 2252                                                                                          East Haven Nursing & Rehabilitation Center
## 2253                                                                                                            Hamptons Dialysis Center
## 2254                                                                                                    Orange Regional Medical Pavilion
## 2255                                                                                                  Center for Health Services-Midwood
## 2256                                                                                            Eugenio Maria De Hostos Microsociety Sch
## 2257                                                                                          Brook Plaza Ambulatory Surgical Center Inc
## 2258                                                                                               Chemical Dependence Treatment Program
## 2259                                                                                             NYU Langone Levit Medical Arts Pavilion
## 2260                                                                                                          The Children's Aid Society
## 2261                                                                                                                         Medcare LLC
## 2262                                                                                                            Worcester Central School
## 2263                                                            Highland Breast Imaging at Jordan and Highland Medical Imaging at Jordan
## 2264                                                                                                            Dr Lydia T Wright School
## 2265                                                                                                     HSS East Side Outpatient Center
## 2266                                                                                           Endoscopy Center of Western New York, LLC
## 2267                                                                                  The Grand Rehabilitation and Nursing at Great Neck
## 2268                                                                                                   Outpatient Oncology Clinic-Greece
## 2269                                                                                                   Mapleton Clinic Treatment Program
## 2270                                                                                                             Child Protection Center
## 2271                                                                                       Eastern Orange Ambulatory Surgery Center, LLC
## 2272                                                                                                                Doctors United, Inc.
## 2273                                                                          Comprehensive Community Hospice of Parker Jewish Institute
## 2274                                                                                                 Hemodialysis/CAPD Outpatient Center
## 2275                                                                                                Lutheran Center at Poughkeepsie, Inc
## 2276                                                                                                     Bridgewater Center for Dialysis
## 2277                                                                                   Upper East Side Rehabilitation and Nursing Center
## 2278                                                                                                     NYP/Queens Wound Healing Center
## 2279                                                                                       Fort Tryon Long Term Home Health Care Program
## 2280                                                                                                                     In-Tech Academy
## 2281                                                                             FMS-Atlantic Peritoneal Dialysis & Home Training Center
## 2282                                                                                              Family Health Centers of Comm Mem Hosp
## 2283                                                                                                   A O Fox Memorial Adult Day Center
## 2284                                                                                                            Third Avenue Imaging LLC
## 2285                                                                           Visiting Nurse Association of Utica and Oneida County Inc
## 2286                                                                                            Cornerstone Family Healthcare:  New City
## 2287                                                                                                         Everett Road Surgery Center
## 2288                                                    NY-Presbyterian Lawrence Hospital Rehabilitation & Sports Medicine - Eastchester
## 2289                                                                                          St. Joseph's Medical Center Imaging Center
## 2290                                                                                        ColumbiaDoctors/NewYork-Presbyterian Imaging
## 2291                                                                                                              Meadowbrook Healthcare
## 2292                                                                                                                   LISH at Riverhead
## 2293                                                                                                    Callen-Lorde Mobile Medical Unit
## 2294                                                                                 P.S./I.S. 157 The Benjamin Health & Science Academy
## 2295                                                                       Olean General Hospital School-Based Portable Dental Equipment
## 2296                                                                                                Main Street Radiology at Bayside LLC
## 2297                                                                                         Highpointe on Michigan Health Care Facility
## 2298                                                                                       Bedford Center for Nursing and Rehabilitation
## 2299                                                                                                       NFMMC Summit Park Mall Clinic
## 2300                                                                                                   Grand Concourse Dialysis Facility
## 2301                                                                                  HRHCare Kraus Family Health Center of the Hamptons
## 2302                                                                                        Montgomery Nursing and Rehabilitation Center
## 2303                                                                                                                Harlem Health Center
## 2304                                                                                                  Johnathan Williams Houses Child HC
## 2305 Nassau County Department of Mental Health, Chemical Dependency and Developmental Disability Services - Methadone Maintenance Clinic
## 2306                                                                                            Port Jefferson Ambulatory Surgery Center
## 2307                                                                                        Visiting Nurse Service of New York Home Care
## 2308                                                                                                           Advanced Endoscopy Center
## 2309                                                                                                                 West Hertel Academy
## 2310                                                                                                           Eye Health Associates Inc
## 2311                                                                                                  Neighborhood Health Center Mattina
## 2312                                                                                                            Harvey Austin School #97
## 2313                                                                                                       Sisters Health Center Amherst
## 2314                                                                                          Wm F Ryan Community Health Center Inc-NENA
## 2315                                                                                                    LIJ Center for Advanced Medicine
## 2316                                                                                                                The Brightonian, Inc
## 2317                                                                                                          Regional Wound Care Center
## 2318                                                                                                                    Samaritan OB/GYN
## 2319                                                                                                                 Center for Recovery
## 2320                                                                           Ontario County Board of Supervisors c/o County Physicians
## 2321                                                                                                    Kingsway Arms Nursing Center Inc
## 2322                                                     The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 2323                                                                                       Martine Center for Rehabilitation and Nursing
## 2324                                                                                                Center for Disability Services, Inc.
## 2325                                                                                                            Rockwell Dialysis Center
## 2326                                                                                                        Sheridan Preparatory Academy
## 2327                                                                                                    FMS-South Queens Dialysis Center
## 2328                                                                                                             Hill Haven Nursing Home
## 2329                                                                                                 Bassett Healthcare Physical Therapy
## 2330                                                                                                              Midtown Surgery Center
## 2331                                                                                                 Family Practice Center of Hyde Park
## 2332                                                                                                        Morris Heights Health Center
## 2333                                                                                                             New Hyde Park Endoscopy
## 2334                                                                                                        Community Healthcare Network
## 2335                                                                                     Colonial Park Rehabilitation and Nursing Center
## 2336                                                                                                                 Dialysis Clinic Inc
## 2337                                                                                                     St Johnland Nursing Center, Inc
## 2338                                                                                              Forest Hills Hospital Extension Clinic
## 2339                                                                                                        Essex County Nursing Service
## 2340                                                                                                              Olean General Hospital
## 2341                                                                                                              Jeanne Jugan Residence
## 2342                                                                                           Bezalel Rehabilitation and Nursing Center
## 2343                                                                                                                 Gouverneur Hospital
## 2344                                                                             St. Luke's Hospital - Physical Therapy Extension Clinic
## 2345                                                                                                           Northern Catskill Urology
## 2346                                                                                          RGH Elderone Emerson Center Medical Clinic
## 2347                                                                                                St. Anthony Sleep Disorder Institute
## 2348                                                                                                Mountainside Residential Care Center
## 2349                                                                           Soldiers and Sailors Memorial Hospital Extended Care Unit
## 2350                                                                                                 Niagara County Department of Health
## 2351                                                                                                    Sanford R Nalitt Inst for Cancer
## 2352                                                                                                     Morris Heights at Walton Avenue
## 2353                                                                                                    Long Island Jewish Valley Stream
## 2354                                                                                                               Lakeside Heart Clinic
## 2355                                                                           Saratoga Hospital Physician Offices at Malta Medical Park
## 2356                                                       Putnam Hospital Center Outpatient Rehabilitation Services - Katonah Satellite
## 2357                                                                                   Putnam Hospital Center O/P Rehab Center @ Pawling
## 2358                                                                                                                Mobile Health Unit 2
## 2359                                                                                                     Mary M Gooley Hemophilia Center
## 2360                                                                       NY-Presbyterian Brooklyn Methodist Hospital Infusion Services
## 2361                                                                                                          Buffalo Womenservices, LLC
## 2362                                                                         Briarcliff Manor Center for Rehabilitation and Nursing Care
## 2363                                                                                                             CPH Primary Care Center
## 2364                                                                                                     Primary Medical Care O/P Clinic
## 2365                                                                                                             Bay Creek Medical Group
## 2366                                                                                     Endoscopic Diagnostic and Treatment Center, LLC
## 2367                                                                                               South Ocean Care Family Health Center
## 2368                                                                              CenterLight Healthcare Diagnostic and Treatment Center
## 2369                                                                                               Lewis County General Hospital Hospice
## 2370                                                                                                 Staten Island University Hosp-South
## 2371                                                                                               Livingston Manor Family Health Center
## 2372                                                                                                St. Mary's Canajoharie Health Center
## 2373                                                                                                                        Putnam Ridge
## 2374                                                                                                                VNA of Staten Island
## 2375                                                                                      Crown Heights Child & Adolescent Health Clinic
## 2376                                                                                               Honeoye Primary Care Extension Clinic
## 2377                                                                                           Rochester General Hospital at Linden Oaks
## 2378                                                                                               Rochester General Wound Health Center
## 2379                                                                      University Hospital - Stony Brook Eastern Long Island Hospital
## 2380                                                                                                                 Upstate Campus East
## 2381                                                                  Absolut Center for Nursing and Rehabilitation at Three Rivers, LLC
## 2382                                                                                                                   UHS Wilson Square
## 2383                                                                                                                Pontiac Nursing Home
## 2384                                                                                            L'Refuah Medical & Rehabilitation Center
## 2385                                                                                                                              P.S. 5
## 2386                                                                                                          Ralph Avenue Health Center
## 2387                                                                                          Carillon Nursing and Rehabilitation Center
## 2388                                                                                                         Brighton Surgery Center,LLC
## 2389                                                                                                              Milford Central School
## 2390                                      Hospice of Central New York/Hospice and Palliative Care Associates/Hospice of the Finger Lakes
## 2391                                                                                                                 BMS ISIS at Bristol
## 2392                                                                                              Planned Parenthood Bronx Health Center
## 2393                                                                                                                 Mobile Medical Unit
## 2394                                                                                                     Rockefeller University Hospital
## 2395                                                                                   NYU Langone Hassenfeld and Fink Children's Center
## 2396                                                                                                        Mohawk Valley Medical Office
## 2397                                                                                                                          Prime Care
## 2398                                                                                                Mount St. Mary's Orthopedic Services
## 2399                                                                                                Syracuse Community Health Center Inc
## 2400                                                                                                           Queens Endoscopy ASC, LLC
## 2401                                                                                                      West Lawrence Care Center, LLC
## 2402                                                                                  Cornerstone Family Healthcare Middletown Dentistry
## 2403                                                                                                          Morrisania Dialysis Center
## 2404                                                                                                           Herman Badillo School #76
## 2405                                                                                                                   Wayne Health Care
## 2406                                                                                                  Mannsville Manor Elementary School
## 2407                                                                                                            Edison Elementary School
## 2408                                                                                          United Cerebral Palsy of Ulster County Inc
## 2409                                                                                                                     Low Lead Clinic
## 2410                                                                                                   Sidney R. Baer, Jr. Health Center
## 2411                                                                                                         Highland Breast Care Center
## 2412                                                                                                            Queen of Peace Residence
## 2413                                                                                       Department of Behavioral and Community Health
## 2414                                                                           The Paramount at Somers Rehabilitation and Nursing Center
## 2415                                                                                                               Linden Surgery Center
## 2416                                                                                             Sherburne Adult Day Health Care Program
## 2417                                                                                                         St Elizabeth Medical Center
## 2418                                                                                                                              P S 95
## 2419                                                                                            Perry Avenue Family Medical Center, Inc.
## 2420                                                                                                 Cooperative Magnetic Imaging Center
## 2421                                                                                                                          PS 352/375
## 2422                                                                                          Eastman Dental Center-Mobile Dental Van #3
## 2423                                                                                                        Ronald Macdonald Care Mobile
## 2424                                                                                            Genesee Valley Family Medicine-Lakeville
## 2425                                                                                                            CMH Family Health Center
## 2426                                                                                                     Parsons Community Health Center
## 2427                                                                                 Sky View Rehabilitation and Health Care Center, LLC
## 2428                                                                   Absolut Center for Nursing and Rehabilitation at Aurora Park, LLC
## 2429                                                                                                     Jamaica Hospital Medical Center
## 2430                                                                                  Hometown Health Centers at Schenectady High School
## 2431                                                                                                                                X098
## 2432                                                                                                  Albany Regional Eye Surgery Center
## 2433                                                                                  Planned Parenthood of Central and Western New York
## 2434                                                                   Hospice of Jefferson County / Palliative Care of Jefferson County
## 2435                                                                                          Shore View Nursing & Rehabilitation Center
## 2436                                                                                                       Hampton Bays Extension Clinic
## 2437                                                                                                               Jacobi Medical Center
## 2438                                                                                                                    Community Health
## 2439                                                                                     Cortland Park Rehabilitation and Nursing Center
## 2440                                                                                                           Bay Creek Dialysis Center
## 2441                                                                                                       SUNY-Parkside Dialysis Center
## 2442                                                                    SUNY at Stony Brook School of Dental Medicine Dental Care Center
## 2443                                                                                      Franklin Center for Rehabilitation and Nursing
## 2444                                                                                                        Ovid Community Health Center
## 2445                                                                                                  START Treatment & Recovery Centers
## 2446                                                                                                      Tioga County Health Department
## 2447                                                                                    St. Joseph's Hospital - Skilled Nursing Facility
## 2448                                                                                                      Phoenix Health Services Center
## 2449                                                                                                             Park Ridge Nursing Home
## 2450                                                                                             Stony Brook Medicine Mobile Mammography
## 2451                                                                                              Montgomery Co Public Health Department
## 2452                                                                                              New York Medical and Diagnostic Center
## 2453                                                                                      Good Samaritan Hospital Women's imaging Center
## 2454                                                                                                              Convenient Care Center
## 2455                                                                                                                    Samaritan OB/GYN
## 2456                                                                                     Wyckoff Heights Medical Center Extension Clinic
## 2457                                                                                   Ambulatory Surgery Center of Western New York LLC
## 2458                                                                                                 St Peters Addiction Recovery Center
## 2459                                                                                            Long Island Community Hospital Home Care
## 2460                                                                                                 Cooperative Magnetic Imaging Center
## 2461                                                                                                               MVHS Orthopedic Group
## 2462                                                                                                             Yonkers District Office
## 2463                                                                                              Whitney M Young Methadone Rehab Clinic
## 2464                                                                                                       Staten Island Dialysis Center
## 2465                                                                                                             Hudson River Healthcare
## 2466                                                                                                                   SBH Health System
## 2467                                                                                           Menorah Home & Hospital for Aged & Infirm
## 2468                                                                                             Outpatient Cardiology Clinic-Canal View
## 2469                                                                                                                   HRHCare Patchogue
## 2470                                                                                                                      Archway Clinic
## 2471                                                                                                     Islip Adult Day Health Services
## 2472                                                                                                 The Door - A Center of Alternatives
## 2473                                                                                                      Fairview Adult Day Care Center
## 2474                                                                                                  United Cerebral Palsy D & T Center
## 2475                                                                                                                  Malta Medical Arts
## 2476                                                                                                            Port Chester High School
## 2477                                                                                                         Laboratory and X-Ray Clinic
## 2478                                                                                           Terence Cardinal Cooke Health Care Center
## 2479                                                                                                        Gramercy Surgery Center, Inc
## 2480                                                                                                            East End Dialysis Center
## 2481                                                                                            Specialists' One-Day Surgery Center, LLC
## 2482                                                                                                       HSS Sports Performance Center
## 2483                                                                                                              Vestal Healthcare, LLC
## 2484                                                                                Northeast Center for Rehabilitation and Brain Injury
## 2485                                                                         Pelham Parkway Nursing Care and Rehabilitation Facility LLC
## 2486                                                                                                            Elderwood at Ticonderoga
## 2487                                                                        Kingsbrook Jewish Medical Center Inc. - Rutland Nursing Home
## 2488                                                                                      Oneida Health Rehabilitation and Extended Care
## 2489                                                                                                            A.O. Primary Care Center
## 2490                                                                                             Norwich Rehabilitation & Nursing Center
## 2491                                                                                                        Irondequoit Physical Therapy
## 2492                                                                NY-Presbyterian Brooklyn Methodist Hospital Cardio-Vascular Services
## 2493                                                                                                          Northern Dutchess Hospital
## 2494                                                                                       The Grand Rehabilitation and Nursing at Utica
## 2495                                                                            The Burke Rehabilitation Outpatient Clinic at Ridge Hill
## 2496                                                                                                      Psych/Alcoholism Treatment Pgm
## 2497                                                                                                      Crouse Physical Rehabilitation
## 2498                                                                                                            Seneca Co Dept of Health
## 2499                                                                                                         Dundee Family Health Center
## 2500                                                                                                              Elderwood at Liverpool
## 2501                                                                                                     New Hartford ACP Medical Office
## 2502                                                                                                  The Chautauqua Center of Jamestown
## 2503                                                                                                     Physical Therapy & Rehab Center
## 2504                                                                                       Primary/Specialty Care Center at Decker Drive
## 2505                                                                                                     Genessee Valley Family Medicine
## 2506                                                                                                             Health Center for Women
## 2507                                                                                                   Premier Healthcare Tremont Avenue
## 2508                                                                                                                    Kendal at Ithaca
## 2509                                                                          Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2510                                                                                        New York Community Hospital of Brooklyn, Inc
## 2511                                                                                               Tioga County Family Planning Services
## 2512                                                                                                                        TapCo Campus
## 2513                                                                                                      Long Island Community Hospital
## 2514                                                                                               Elder One Silver Hills Medical Clinic
## 2515                                                                                                      St. Joseph's Dialysis - Seneca
## 2516                                                                                                  START Treatment & Recovery Centers
## 2517                                                                                           Dr. Susan Smith McKinney - Neponsit ADHCP
## 2518                                                                                                          GHI-Family Dental Practice
## 2519                                                                                                             Westfall Surgery Center
## 2520                                                                                                                 University Hospital
## 2521                                                                   NYU Langone Occupational and Industrial Orthopaedic Center (OIOC)
## 2522                                                                                        Luxor Nursing and Rehabilitation at Sayville
## 2523                                                                                       Brookdale Physicians Dialysis Associates, Inc
## 2524                                                                                                  Fishkill Ambulatory Surgery Center
## 2525                                                                                                              Putnam Hospital Center
## 2526                                                                                                      Unadilla Valley Central School
## 2527                                                                                                           NSUH Sleep Studies Center
## 2528                                                                                                               SurgiCare of Brooklyn
## 2529                                                                                                                    First In Therapy
## 2530                                                                                               Brasher Falls Community Health Center
## 2531                                                                                              Bethel Nursing & Rehabilitation Center
## 2532                                                                                                             Riverside Health Center
## 2533                                                                                              Unity Internal Medicine at Cornerstone
## 2534                                                                                                              HRHC-Mobile Dental Van
## 2535                                                      Community Health Center of Buffalo, Inc - School Based Mobile Dental Equipment
## 2536                                                                    Planned Parenthood of the North Country, New York, Inc. - Canton
## 2537                                                                                                          Cleve Hill Dialysis Center
## 2538                                                                            Hudson Valley Regional Community Health Centers - Putnam
## 2539                                                                                          East Harlem Council for Human Services Inc
## 2540                                                                                                           Norman Thomas High School
## 2541                                                                                                           August Martin High School
## 2542                                                               Sapphire Center for Rehabilitation and Nursing of Central Queens, LLC
## 2543                                                                                       Adirondack Medical Center - Mobile Dental Van
## 2544                                                                                                           DCI-Narrows Kidney Center
## 2545                                                                                                         Norwich Primary Care Center
## 2546                                                                                                          FMS-Greece Dialysis Center
## 2547                                                                                            Morrisania Diagnostic & Treatment Center
## 2548                                                                                                                           Kirkhaven
## 2549                                                                                           F.F. Thompson Family Practice Shortsville
## 2550                                                                                                      Wyckoff Heights Medical Center
## 2551                                                                                                                  Eddy Village Green
## 2552                                                                                                       FMS-Amsterdam Dialysis Center
## 2553                                                                                                             St Cabrini Nursing Home
## 2554                                                                                    United Cerebral Palsy Treatment and Rehab Center
## 2555                                                                                                            UPSTATE Physical Therapy
## 2556                                                                                                               Watertown High School
## 2557                                                                                                       Physicians Choice Surgicenter
## 2558                                                                                        Easter Seals Comprehensive Primary Care D&TC
## 2559                                                                                                     Lafayette Medical Approach, LLC
## 2560                                                                                                               WMH Chautauqua Clinic
## 2561                                                                                                       Isabella Geriatric Center Inc
## 2562                                                                                                       Outpatient Psychiatric Clinic
## 2563                                                                                                      Union Square Eye Care - Harlem
## 2564                                                                                                                       Hampden Place
## 2565                                                                              Ellis Hospital - Bellevue Woman's Care Center Division
## 2566                                                                                                         Brooklyn Community Dialysis
## 2567                                                                                             Eddy Visiting Nurse & Rehab Association
## 2568                                                                                                        Quality First Medical Center
## 2569                                                                                                                   Rockaway Dialysis
## 2570                                                                                                 Grand Street Gastroenterology, Inc.
## 2571                                                                                               Brookdale Family Care Center-Flatbush
## 2572                                                                                                  Millard Fillmore Suburban Hospital
## 2573                                                                                                           Dialysis Center of Oneida
## 2574                                                                                       Salem Hills Rehabilitation and Nursing Center
## 2575                                                                                      Church Home of the Protestant Episcopal Church
## 2576                                                                                           Sunshine Children's Home and Rehab Center
## 2577                                                                                                                     UHS Dermatology
## 2578                                                                                     Chestnut Park Rehabilitation and Nursing Center
## 2579                                                                                                  START Treatment & Recovery Centers
## 2580                                                                                               Niagara Falls Memorial Medical Center
## 2581                                                                                  Hillside Polymedic Diagnostic and Treatment Center
## 2582                                                                                                      HSS Brooklyn Outpatient Center
## 2583                                                                                                                   Mcauley Residence
## 2584                                                                                                         Franklin Educational Campus
## 2585                                                                                                   New York University Dental Center
## 2586                                                                                                    Maynard Wilson Elementary School
## 2587                                                                                                       Strong Women's Health Program
## 2588                                                                                    Winifred Masterson Burke Rehabilitation Hospital
## 2589                                                                                                              Troy Internal Medicine
## 2590                                                                                    BronxCare Ogden Family Medical and Dental Center
## 2591                                                                                                        Center for Radiation Therapy
## 2592                                                                                                 Marathon Rural Health Center Clinic
## 2593                                                                     The Mildred Milliman Radiation Center of Olean General Hospital
## 2594                                                                                                                              PS 105
## 2595                                                                                                          FSLH-Masonic Dialysis Unit
## 2596                                                                                                 OH Wellness & Rehabilitation Center
## 2597                                                                                                                Ossining High School
## 2598                                                                                                            Ambulatory Care Pavilion
## 2599                                                                                                           Central Island Healthcare
## 2600                                                                                                                    New Focus Center
## 2601                                                                                                            Health Center at Gunhill
## 2602                                                                                      VBMC Cardiac Testing Center at Columbia Street
## 2603                                                                                 The Burke Rehabilitation and Sports Medicine Clinic
## 2604                                                                                                           Soundview Dialysis Center
## 2605                                                                                                      Sunnyview-Carman Rd Ext Clinic
## 2606                                                                                                          Wesley Gardens Corporation
## 2607                                                                                         Samaritan Hospital - Albany Memorial Campus
## 2608                                                                                              Chautauqua Hospice and Palliative Care
## 2609                                                                                      Samaritan Family Health Center at Cape Vincent
## 2610                                                                                                           The Turning Point Program
## 2611                                                                                                       Hudson Valley Dialysis Center
## 2612                                                                                  Bushwick Center for Rehabilitation and Health Care
## 2613                                                                                               University Ave Family Practice Center
## 2614                                                          Long Island Community Hospital Center for Wound Care & Hyperbaric Medicine
## 2615                                                                                                                Mercy Medical Center
## 2616                                                                                                                 Mosaic Health Ilion
## 2617                                                                                                                Highland Care Center
## 2618                                                                                  Stony Brook University Hospital's Extension Clinic
## 2619                                                                                                                Homecare and Hospice
## 2620                                                                                        Acadia Center for Nursing and Rehabilitation
## 2621                                                                                                            Johnstown Surgery Center
## 2622                                                                                                         NYU Winthrop NYC Cyberknife
## 2623                                                                                                          Freddie Thomas High School
## 2624                                                       Saratoga County Board of Supervisors c/o County Public Health Nursing Service
## 2625                                                                                                Interfaith Medical Center-St. Mark's
## 2626                                                                                                           Highland Nursing Home Inc
## 2627                                                                                                        Latta Road Nursing Home East
## 2628                                                                                       Plattsburgh Rehabilitation and Nursing Center
## 2629                                                                                                              Gold Crest Care Center
## 2630                                                                                                 Medisys Family Care - East New York
## 2631                                                                                            NHC Mobile Health Unit - Say Yes Buffalo
## 2632                                                                                                  St. Mary's Johnstown Health Center
## 2633                                                                                 Phoenix House Long Island City Family Health Center
## 2634                                                                                                              Wells Nursing Home Inc
## 2635                                                                                                      Lourdes Rehab Services-Endwell
## 2636                                                                                               Adolescent Health and Wellness Center
## 2637                                                                                                    Strong Psych Center O/P Services
## 2638                                                                       United Health Services Hospitals Inc. - Wilson Medical Center
## 2639                                                                                                      Seneca Falls Clinical Services
## 2640                                                                                                   Mobile Van#1-Refuah Health Center
## 2641                                                                                          North Shore LIJ Imaging at Great South Bay
## 2642                                                                                 The Citadel Rehab and Nursing Center at Kingsbridge
## 2643                                                                                                            Cortland Convenient Care
## 2644                                                                                                    Manhattan Square Family Medicine
## 2645                                                                                                      Newark Community Health Center
## 2646                                                                                                            Hospice of Orleans, Inc.
## 2647                                                                            North Country Orthopaedic Ambulatory Surgery Center, LLC
## 2648                                                                                                                               PS 15
## 2649                                                                                          Massapequa Center Rehabilitation & Nursing
## 2650                                                                                             Planned Parenthood Goshen Health Center
## 2651                                                                                  NYU Langone Perlmutter Cancer Center - Sunset Park
## 2652                                                                                                Fresenius Kidney Care North Bellmore
## 2653                                                                                                 NYU Winthrop Cardiac Rehabilitation
## 2654                                                                                                          Oneida Health Sleep Center
## 2655                                                                                                              Stony Brook Cardiology
## 2656                                                                                  The Heritage Rehabilitation and Health Care Center
## 2657                                                                                                       East Hill Family Medical Inc.
## 2658                                                 Rochester Regional Health / United Memorial Community Care - Bergen Family Medicine
## 2659                                                                                      Hospice and Palliative Care of Chenango County
## 2660                                                                             Cornerstone Family Healthcare:  The Center for Recovery
## 2661                                                                                                       Long Island Select Healthcare
## 2662                                                                                       Morningside Nursing and Rehabilitation Center
## 2663                                                                                                         Ridge Health Services, Inc.
## 2664                                                                                                                 Strong Wound Center
## 2665                                                                    NSUH Comprehensive Wound Care Center and Vascular Access Program
## 2666                                                                                                            Johnstown Medical Center
## 2667                                                                                                         Garden City Dialysis Center
## 2668                                                                                                 UHS Primary Care Upper Front Street
## 2669                                                                                                                 Wingate of Dutchess
## 2670                                                                                                      Queens Village Dialysis Center
## 2671                                                                                             Morris Heights Health Center Mobile Van
## 2672                                                                                                        Upstate Cerebral Palsy, Inc.
## 2673                                                                                                  LISH at the Family Wellness Center
## 2674                                                                                                                  Oak Orchard Health
## 2675                                                                                                St. Francis Hospital Infusion Center
## 2676                                                                          Northern Metropolitan Residential Health Care Facility Inc
## 2677                                                                                                  The Wellness Center at Oak Orchard
## 2678                                                                                                          Franklin Elementary School
## 2679                                                                                                              Wolcott Medical Center
## 2680                                                                                 Southern Tier Community Health Center Network, Inc.
## 2681                                                                                                             Mountain Valley Hospice
## 2682                                                                                                                    At Home Care Inc
## 2683                                                                               Yonkers Gardens Center for Nursing and Rehabilitation
## 2684                                                                                              Franklin County Public Health Services
## 2685                                                                                                                              PS 971
## 2686                                                                                        HealthAlliance Hospital Mary's Avenue Campus
## 2687                                                                       NYP/Queens Trude Weishaupt Memorial Satellite Dialysis Center
## 2688                                                                                                           Housing Works Services II
## 2689                                                                                                          North Buffalo Medical Park
## 2690                                                                                                        Carnegie Hill Endoscopy, LLC
## 2691                                                                                                  Amsterdam Nursing Home Corp (1992)
## 2692                                                                                                   New Alternatives for Children Inc
## 2693                                                                                                                        UCVA Medical
## 2694                                                                                                         CenterLight Healthcare D&TC
## 2695                                                                                                      Yeled V'Yalda Childhood Center
## 2696                                                                                Pinnacle Multicare Nursing and Rehabilitation Center
## 2697                                                                                                   Bassett Family Medicine - Oneonta
## 2698                                                                                                    South Brooklyn Nephrology Center
## 2699                                                                                                                  Upstate Pediatrics
## 2700                                                                         Long Island Community Hospital Bellport Primary Care Center
## 2701                                                                                     Granville Center for Rehabilitation and Nursing
## 2702                                                                                     Wyckoff Heights Medical Center Pediatric Center
## 2703                                                                                                      South Lewis Middle/High School
## 2704                                                                                            New York State Veterans Home at Montrose
## 2705                                                                                                 Manhattan Center for Math & Science
## 2706                                                                                                        NYU Langone Health Home Care
## 2707                                                                                                            St Peters Hospital-SPARC
## 2708                                                                          The Valley View Center for Nursing Care and Rehabilitation
## 2709                                                                                               Allergy and Immunology Clinic of AMCH
## 2710                                                                                                                  Glen Cove Hospital
## 2711                                                                                                          South Shore Surgery Center
## 2712                                                                                                 Charles B Rangel Comm Health Center
## 2713                                                                                                                              I S 90
## 2714                                                                                                             Rhinebeck Health Center
## 2715                                                                                              Albert Tucker Clinical Services Center
## 2716                                                                                                     Bassett Healthcare Little Falls
## 2717                                                                                                                     VNS Westchester
## 2718                                                                                       Methodist Home for Nursing and Rehabilitation
## 2719                                                                                                            Manhattan Surgery Center
## 2720                                                                         United Cerebral Palsy Association of the Rochester Area Inc
## 2721                                                                                               Oasis Rehabilitation and Nursing, LLC
## 2722                                                                                                   Capital Region Family Health Care
## 2723                                                                                                      The Baptist Home at Brookmeade
## 2724                                                                                                                Richmond Hill Clinic
## 2725                                                                                          Planned Parenthood Glen Cove Health Center
## 2726                                                                     Absolut Center for Nursing and Rehabilitation at Westfield, LLC
## 2727                                                                                    Memorial Hospital for Cancer and Allied Diseases
## 2728                                                                              Canton-Potsdam Hospital Brasher Falls Physical Therapy
## 2729                                                                                                                 West Farms Dialysis
## 2730                                                                                                  Vassar Bros Hosp Wound Care Center
## 2731                                                                                                                    Dematteis Center
## 2732                                                                                         North Shore/LIJ Imaging Center at Glen Cove
## 2733                                                                                 Yates Co Board of Supervisors c/o County Physicians
## 2734                                                                                                               University Eye Center
## 2735                                                                                                      Geneva Community Health Center
## 2736                                                                                                                              MS 424
## 2737                                                                                                             Project Outreach Clinic
## 2738                                                                                                               Sunnyside Care Center
## 2739                                                                Albany Medical Center Hospital Ambulatory Surgery Center - Niskayuna
## 2740                                                                                       Planned Parenthood Clifton Park Health Center
## 2741                                                                         U C P and Handicapped Childrens Association of Syracuse Inc
## 2742                                                                                                         Sisters of Charity Hospital
## 2743                                                                                                    Richfield Springs Central School
## 2744                                                                                                     RUMC Behavioral Health Pavilion
## 2745                                                                                                       Upper Room AIDS Ministry ADHC
## 2746                                                                                                 Ellis Hospital Mental Health Clinic
## 2747                                                                                                         SurgiCare of Manhattan, LLC
## 2748                                                                                  Sunset Terrace Family Health Center at NYU Langone
## 2749                                                                                                              Brooklyn Health Center
## 2750                                                                                           Maimonides Adult Primary Care 57th Street
## 2751                                                                                                            Lowville Dialysis Center
## 2752                                                                                                       Family Medicine Health Center
## 2753                                                                                                Burke Rehab & Sports Medicine Center
## 2754                                                                                       New York Eye and Ear Infirmary of Mount Sinai
## 2755                                                                                                       Newark Manor Nursing Home Inc
## 2756                                                                                                                     HRHCare, Hudson
## 2757                                                                                                                St. Mary's Home Care
## 2758                                                                                                            Franziska Racker Centers
## 2759                                                                                         Grand Manor Nursing & Rehabilitation Center
## 2760                                                                                                            Boonville Medical Office
## 2761                                                                           Cliffside Rehabilitation & Residential Health Care Center
## 2762                                                                                                              Rego Park Nursing Home
## 2763                                                                               Visiting Nursing Association of Western New York, Inc
## 2764                                                                                         Calvary Home Health Agency and Hospice Care
## 2765                                                                                                           Conesus Lake Nursing Home
## 2766                                                                                                                   Lourdes Southside
## 2767                                                                                     Sisters of Charity Hospital - St. Joseph Campus
## 2768                                                                                 Evergreen Health (STI Testing and Treatment Center)
## 2769                                                                                                        Upstate Cerebral Palsy, Inc.
## 2770                                                                                                          Women's Premier Obstetrics
## 2771                                                                                                                Westbury High School
## 2772                                                                                               Project Renewal Health Ft. Washington
## 2773                                                                                            Fordham Tremont Comm Mentl Health Center
## 2774                                                                                                         Suffolk Surgery Center, LLC
## 2775                                                                                                             Ontario - Yates Hospice
## 2776                                                                                           Planned Parenthood Margaret Sanger Center
## 2777                                                                                                             Union Plaza Care Center
##      Short.Description
## 1                 HSPC
## 2                   NH
## 3                   NH
## 4                   NH
## 5                   NH
## 6                   NH
## 7                  DTC
## 8                 CHHA
## 9                 HSPC
## 10             HOSP-EC
## 11                 DTC
## 12             HOSP-EC
## 13             HOSP-EC
## 14             HOSP-EC
## 15                 DTC
## 16             HOSP-EC
## 17                 DTC
## 18                 DTC
## 19                 DTC
## 20             HOSP-EC
## 21                 DTC
## 22             HOSP-EC
## 23             HOSP-EC
## 24                 DTC
## 25                 DTC
## 26                 DTC
## 27                 DTC
## 28                 DTC
## 29                 DTC
## 30                 DTC
## 31                    
## 32                  NH
## 33                CHHA
## 34                  NH
## 35                 DTC
## 36             HOSP-EC
## 37             HOSP-EC
## 38                 DTC
## 39             HOSP-EC
## 40                 DTC
## 41              DTC-EC
## 42              DTC-EC
## 43              DTC-EC
## 44              DTC-EC
## 45                    
## 46              DTC-EC
## 47                 DTC
## 48             HOSP-EC
## 49                 DTC
## 50                  NH
## 51             HOSP-SB
## 52                HOSP
## 53              DTC-EC
## 54             HOSP-SB
## 55             HOSP-EC
## 56              DTC-EC
## 57                  NH
## 58                    
## 59              DTC-EC
## 60                  NH
## 61              DTC-EC
## 62             HOSP-EC
## 63             HOSP-EC
## 64                 DTC
## 65             HOSP-EC
## 66             HOSP-EC
## 67             HOSP-EC
## 68             HOSP-EC
## 69                HOSP
## 70             HOSP-EC
## 71                HOSP
## 72             HOSP-EC
## 73             HOSP-EC
## 74              DTC-EC
## 75              DTC-EC
## 76             HOSP-SB
## 77              DTC-EC
## 78                    
## 79                  NH
## 80             HOSP-EC
## 81                 DTC
## 82              DTC-EC
## 83             HOSP-SB
## 84             HOSP-SB
## 85              DTC-EC
## 86                 DTC
## 87              DTC-EC
## 88                HOSP
## 89              DTC-EC
## 90             HOSP-EC
## 91                  NH
## 92                  NH
## 93             HOSP-EC
## 94                 DTC
## 95              DTC-EC
## 96              DTC-EC
## 97                CHHA
## 98                  NH
## 99                CHHA
## 100                DTC
## 101                DTC
## 102             DTC-EC
## 103            HOSP-EC
## 104                DTC
## 105            HOSP-EC
## 106               HOSP
## 107            HOSP-EC
## 108                DTC
## 109                DTC
## 110               CHHA
## 111              ADHCP
## 112            HOSP-SB
## 113                DTC
## 114            HOSP-EC
## 115             DTC-EC
## 116                DTC
## 117            HOSP-EC
## 118               HOSP
## 119                   
## 120            HOSP-EC
## 121                   
## 122            HOSP-EC
## 123            HOSP-EC
## 124            HOSP-EC
## 125             DTC-EC
## 126                DTC
## 127               HOSP
## 128                DTC
## 129             DTC-EC
## 130             DTC-EC
## 131                 NH
## 132            HOSP-EC
## 133               HOSP
## 134                   
## 135             DTC-EC
## 136            HOSP-EC
## 137                DTC
## 138            HOSP-EC
## 139                DTC
## 140                 NH
## 141             DTC-EC
## 142            HOSP-EC
## 143                DTC
## 144            HOSP-EC
## 145                 NH
## 146               CHHA
## 147            HOSP-EC
## 148             DTC-EC
## 149            HOSP-EC
## 150            HOSP-EC
## 151            HOSP-EC
## 152                 NH
## 153                 NH
## 154            HOSP-EC
## 155             DTC-EC
## 156             DTC-EC
## 157             DTC-EC
## 158                DTC
## 159                DTC
## 160             DTC-EC
## 161            HOSP-EC
## 162            HOSP-SB
## 163                 NH
## 164             DTC-EC
## 165               HOSP
## 166             DTC-EC
## 167            HOSP-EC
## 168               HOSP
## 169            HOSP-EC
## 170            HOSP-SB
## 171             DTC-EC
## 172                 NH
## 173            HOSP-EC
## 174               HOSP
## 175                DTC
## 176             DTC-EC
## 177               CHHA
## 178            HOSP-EC
## 179               CHHA
## 180            HOSP-EC
## 181               CHHA
## 182            HOSP-SB
## 183                 NH
## 184               CHHA
## 185               CHHA
## 186               HOSP
## 187                 NH
## 188                 NH
## 189            HOSP-EC
## 190                 NH
## 191               HOSP
## 192                   
## 193             DTC-EC
## 194                 NH
## 195            HOSP-EC
## 196                   
## 197                   
## 198            HOSP-EC
## 199                   
## 200            HOSP-SB
## 201             DTC-EC
## 202            HOSP-EC
## 203               CHHA
## 204            HOSP-EC
## 205            HOSP-EC
## 206                   
## 207            HOSP-EC
## 208            HOSP-EC
## 209                DTC
## 210             DTC-EC
## 211             DTC-EC
## 212                DTC
## 213            HOSP-EC
## 214            HOSP-EC
## 215            HOSP-EC
## 216             LTHHCP
## 217             DTC-EC
## 218               HOSP
## 219             DTC-EC
## 220                DTC
## 221             DTC-EC
## 222            HOSP-EC
## 223            HOSP-SB
## 224            HOSP-EC
## 225            HOSP-SB
## 226             DTC-EC
## 227                DTC
## 228            HOSP-EC
## 229            HOSP-EC
## 230            HOSP-EC
## 231                   
## 232             DTC-EC
## 233            HOSP-EC
## 234               HOSP
## 235                 NH
## 236                 NH
## 237             DTC-EC
## 238            HOSP-EC
## 239             DTC-EC
## 240            HOSP-EC
## 241               HOSP
## 242             LTHHCP
## 243             DTC-EC
## 244                 NH
## 245            HOSP-EC
## 246                 NH
## 247                 NH
## 248               HOSP
## 249             DTC-EC
## 250                   
## 251               HOSP
## 252             DTC-EC
## 253                DTC
## 254                 NH
## 255             DTC-EC
## 256                 NH
## 257               CHHA
## 258               CHHA
## 259                 NH
## 260                 NH
## 261             DTC-EC
## 262             DTC-EC
## 263             DTC-EC
## 264             DTC-EC
## 265            HOSP-EC
## 266            HOSP-SB
## 267            HOSP-EC
## 268            HOSP-EC
## 269                 NH
## 270             DTC-EC
## 271                 NH
## 272                 NH
## 273              ADHCP
## 274               HOSP
## 275                 NH
## 276            HOSP-SB
## 277             LTHHCP
## 278                 NH
## 279                DTC
## 280            HOSP-EC
## 281            HOSP-SB
## 282             DTC-EC
## 283            HOSP-EC
## 284               HOSP
## 285            HOSP-EC
## 286               HSPC
## 287                DTC
## 288             LTHHCP
## 289            HOSP-EC
## 290                   
## 291             DTC-EC
## 292            HOSP-EC
## 293                 NH
## 294             DTC-EC
## 295                DTC
## 296             DTC-EC
## 297                DTC
## 298                DTC
## 299               HOSP
## 300                 NH
## 301                   
## 302            HOSP-EC
## 303            HOSP-EC
## 304                   
## 305               HSPC
## 306            HOSP-EC
## 307                DTC
## 308                 NH
## 309            HOSP-EC
## 310               HOSP
## 311                DTC
## 312            HOSP-EC
## 313                DTC
## 314                 NH
## 315            HOSP-EC
## 316             DTC-EC
## 317                   
## 318            HOSP-EC
## 319                 NH
## 320             DTC-EC
## 321            HOSP-EC
## 322                 NH
## 323            HOSP-EC
## 324            HOSP-EC
## 325            HOSP-EC
## 326                DTC
## 327                 NH
## 328                DTC
## 329               HOSP
## 330            HOSP-EC
## 331            HOSP-EC
## 332               HOSP
## 333            HOSP-EC
## 334            HOSP-EC
## 335                 NH
## 336            HOSP-EC
## 337             DTC-EC
## 338                DTC
## 339            HOSP-EC
## 340            HOSP-EC
## 341                   
## 342             DTC-EC
## 343            HOSP-EC
## 344             DTC-EC
## 345             DTC-EC
## 346               HSPC
## 347            HOSP-EC
## 348                 NH
## 349            HOSP-EC
## 350                   
## 351            HOSP-EC
## 352            HOSP-EC
## 353                   
## 354                   
## 355                DTC
## 356             DTC-EC
## 357            HOSP-EC
## 358                   
## 359            HOSP-EC
## 360            HOSP-EC
## 361                   
## 362                 NH
## 363            HOSP-EC
## 364             DTC-EC
## 365               HOSP
## 366                 NH
## 367                   
## 368             DTC-EC
## 369            HOSP-EC
## 370             DTC-EC
## 371            HOSP-EC
## 372            HOSP-EC
## 373             DTC-EC
## 374                 NH
## 375            HOSP-EC
## 376              ADHCP
## 377             DTC-EC
## 378                 NH
## 379            HOSP-EC
## 380               HOSP
## 381            HOSP-EC
## 382            HOSP-EC
## 383             DTC-EC
## 384                DTC
## 385                DTC
## 386            HOSP-SB
## 387                 NH
## 388            HOSP-EC
## 389            HOSP-SB
## 390                 NH
## 391                   
## 392                DTC
## 393             DTC-EC
## 394               HOSP
## 395             DTC-EC
## 396               HSPC
## 397            HOSP-EC
## 398            HOSP-EC
## 399               CHHA
## 400                   
## 401                 NH
## 402                DTC
## 403            HOSP-EC
## 404            HOSP-EC
## 405            HOSP-EC
## 406            HOSP-EC
## 407               CHHA
## 408             DTC-EC
## 409             DTC-EC
## 410             DTC-EC
## 411                DTC
## 412             DTC-EC
## 413             DTC-EC
## 414                DTC
## 415            HOSP-SB
## 416            HOSP-EC
## 417            HOSP-EC
## 418            HOSP-EC
## 419             LTHHCP
## 420            HOSP-EC
## 421             DTC-EC
## 422            HOSP-EC
## 423            HOSP-EC
## 424            HOSP-EC
## 425                DTC
## 426                DTC
## 427                 NH
## 428            HOSP-SB
## 429                 NH
## 430            HOSP-EC
## 431                 NH
## 432            HOSP-EC
## 433                 NH
## 434                DTC
## 435               HOSP
## 436                 NH
## 437             DTC-EC
## 438               CHHA
## 439            HOSP-EC
## 440            HOSP-SB
## 441               CHHA
## 442                 NH
## 443                 NH
## 444               CHHA
## 445                   
## 446                DTC
## 447            HOSP-SB
## 448            HOSP-EC
## 449            HOSP-EC
## 450            HOSP-EC
## 451                 NH
## 452            HOSP-SB
## 453            HOSP-EC
## 454             DTC-EC
## 455            HOSP-EC
## 456                DTC
## 457             DTC-EC
## 458            HOSP-EC
## 459                 NH
## 460            HOSP-EC
## 461                DTC
## 462             DTC-EC
## 463             DTC-EC
## 464                 NH
## 465                 NH
## 466                   
## 467            HOSP-EC
## 468                DTC
## 469            HOSP-EC
## 470            HOSP-EC
## 471            HOSP-EC
## 472            HOSP-EC
## 473             DTC-EC
## 474            HOSP-EC
## 475                   
## 476            HOSP-EC
## 477             DTC-EC
## 478                   
## 479            HOSP-EC
## 480             DTC-EC
## 481                   
## 482                DTC
## 483                 NH
## 484            HOSP-EC
## 485                 NH
## 486            HOSP-EC
## 487              ADHCP
## 488            HOSP-EC
## 489            HOSP-EC
## 490               CHHA
## 491            HOSP-EC
## 492                DTC
## 493            HOSP-EC
## 494               HOSP
## 495             DTC-EC
## 496                DTC
## 497            HOSP-EC
## 498                DTC
## 499                 NH
## 500                   
## 501                 NH
## 502             DTC-EC
## 503                   
## 504              ADHCP
## 505             DTC-EC
## 506                DTC
## 507            HOSP-EC
## 508            HOSP-SB
## 509                 NH
## 510            HOSP-EC
## 511            HOSP-SB
## 512                 NH
## 513            HOSP-EC
## 514            HOSP-EC
## 515                DTC
## 516                DTC
## 517                   
## 518                 NH
## 519             DTC-EC
## 520             DTC-EC
## 521            HOSP-EC
## 522                DTC
## 523             DTC-EC
## 524               CHHA
## 525             DTC-EC
## 526                 NH
## 527             DTC-EC
## 528            HOSP-EC
## 529                DTC
## 530             DTC-EC
## 531            HOSP-EC
## 532            HOSP-SB
## 533                 NH
## 534            HOSP-EC
## 535            HOSP-EC
## 536                 NH
## 537            HOSP-SB
## 538            HOSP-EC
## 539            HOSP-EC
## 540            HOSP-EC
## 541            HOSP-EC
## 542             DTC-EC
## 543            HOSP-EC
## 544             DTC-EC
## 545            HOSP-EC
## 546                 NH
## 547                DTC
## 548             DTC-EC
## 549                   
## 550                   
## 551             DTC-EC
## 552            HOSP-EC
## 553                DTC
## 554             DTC-EC
## 555                 NH
## 556             DTC-EC
## 557            HOSP-EC
## 558                 NH
## 559            HOSP-EC
## 560                DTC
## 561            HOSP-SB
## 562                DTC
## 563                   
## 564               HSPC
## 565            HOSP-EC
## 566            HOSP-SB
## 567               HSPC
## 568                 NH
## 569            HOSP-EC
## 570                 NH
## 571                 NH
## 572                DTC
## 573            HOSP-EC
## 574                 NH
## 575                 NH
## 576            HOSP-EC
## 577                   
## 578            HOSP-EC
## 579             DTC-EC
## 580             DTC-EC
## 581              ADHCP
## 582               HOSP
## 583                DTC
## 584             DTC-EC
## 585            HOSP-SB
## 586                DTC
## 587            HOSP-EC
## 588             DTC-EC
## 589             DTC-EC
## 590                DTC
## 591            HOSP-EC
## 592             DTC-EC
## 593             DTC-EC
## 594            HOSP-EC
## 595            HOSP-SB
## 596             DTC-EC
## 597             DTC-EC
## 598                DTC
## 599            HOSP-SB
## 600            HOSP-EC
## 601            HOSP-EC
## 602            HOSP-EC
## 603             DTC-EC
## 604            HOSP-EC
## 605                 NH
## 606             DTC-EC
## 607            HOSP-EC
## 608            HOSP-EC
## 609             DTC-EC
## 610            HOSP-EC
## 611                DTC
## 612                DTC
## 613            HOSP-EC
## 614                 NH
## 615             LTHHCP
## 616            HOSP-EC
## 617                   
## 618             LTHHCP
## 619             DTC-EC
## 620            HOSP-EC
## 621                 NH
## 622                   
## 623            HOSP-EC
## 624            HOSP-SB
## 625               CHHA
## 626            HOSP-EC
## 627            HOSP-EC
## 628                 NH
## 629                DTC
## 630               CHHA
## 631                DTC
## 632            HOSP-EC
## 633            HOSP-EC
## 634            HOSP-EC
## 635                DTC
## 636                DTC
## 637                 NH
## 638             DTC-EC
## 639            HOSP-EC
## 640                DTC
## 641                DTC
## 642            HOSP-SB
## 643             DTC-EC
## 644             DTC-EC
## 645                   
## 646            HOSP-SB
## 647                   
## 648                 NH
## 649                 NH
## 650                 NH
## 651             DTC-EC
## 652                DTC
## 653            HOSP-EC
## 654            HOSP-EC
## 655                 NH
## 656            HOSP-EC
## 657                 NH
## 658                 NH
## 659            HOSP-SB
## 660             DTC-EC
## 661             DTC-EC
## 662               HOSP
## 663               HSPC
## 664            HOSP-EC
## 665             DTC-EC
## 666               HSPC
## 667            HOSP-EC
## 668                 NH
## 669            HOSP-EC
## 670             DTC-EC
## 671            HOSP-EC
## 672               HOSP
## 673            HOSP-SB
## 674                 NH
## 675                DTC
## 676            HOSP-EC
## 677                DTC
## 678               CHHA
## 679            HOSP-EC
## 680                 NH
## 681            HOSP-EC
## 682             LTHHCP
## 683            HOSP-EC
## 684             DTC-EC
## 685             DTC-EC
## 686               HOSP
## 687            HOSP-EC
## 688            HOSP-SB
## 689                   
## 690                 NH
## 691             DTC-EC
## 692             DTC-EC
## 693                 NH
## 694            HOSP-SB
## 695             DTC-EC
## 696                 NH
## 697            HOSP-EC
## 698            HOSP-EC
## 699            HOSP-EC
## 700                DTC
## 701                 NH
## 702                 NH
## 703            HOSP-EC
## 704             DTC-EC
## 705             DTC-EC
## 706            HOSP-EC
## 707                DTC
## 708               HOSP
## 709             DTC-EC
## 710               HOSP
## 711                   
## 712            HOSP-EC
## 713             DTC-EC
## 714                 NH
## 715                DTC
## 716              ADHCP
## 717            HOSP-EC
## 718            HOSP-EC
## 719                   
## 720             DTC-EC
## 721             DTC-EC
## 722                DTC
## 723                DTC
## 724                 NH
## 725             DTC-EC
## 726            HOSP-EC
## 727                   
## 728                DTC
## 729                DTC
## 730            HOSP-EC
## 731             DTC-EC
## 732            HOSP-EC
## 733            HOSP-EC
## 734            HOSP-EC
## 735                DTC
## 736                 NH
## 737                DTC
## 738            HOSP-EC
## 739                   
## 740            HOSP-SB
## 741                 NH
## 742                 NH
## 743            HOSP-EC
## 744            HOSP-EC
## 745                DTC
## 746                 NH
## 747                 NH
## 748               CHHA
## 749             DTC-EC
## 750                DTC
## 751             DTC-EC
## 752               HOSP
## 753            HOSP-EC
## 754            HOSP-EC
## 755            HOSP-EC
## 756                   
## 757                DTC
## 758            HOSP-EC
## 759              ADHCP
## 760             DTC-EC
## 761            HOSP-EC
## 762                   
## 763                DTC
## 764             DTC-EC
## 765            HOSP-EC
## 766                DTC
## 767            HOSP-EC
## 768             DTC-EC
## 769                 NH
## 770               CHHA
## 771            HOSP-EC
## 772             DTC-EC
## 773               HOSP
## 774            HOSP-EC
## 775             DTC-EC
## 776            HOSP-EC
## 777            HOSP-EC
## 778            HOSP-EC
## 779                DTC
## 780            HOSP-EC
## 781            HOSP-EC
## 782            HOSP-EC
## 783                 NH
## 784            HOSP-EC
## 785            HOSP-SB
## 786               HOSP
## 787             DTC-EC
## 788                 NH
## 789                   
## 790            HOSP-SB
## 791            HOSP-EC
## 792             DTC-EC
## 793             DTC-EC
## 794               HOSP
## 795            HOSP-EC
## 796                DTC
## 797            HOSP-EC
## 798                 NH
## 799            HOSP-EC
## 800                DTC
## 801                 NH
## 802            HOSP-EC
## 803            HOSP-SB
## 804                 NH
## 805             DTC-EC
## 806                 NH
## 807                   
## 808            HOSP-EC
## 809             DTC-EC
## 810             DTC-EC
## 811            HOSP-EC
## 812                 NH
## 813                 NH
## 814                DTC
## 815             DTC-EC
## 816             DTC-EC
## 817            HOSP-EC
## 818            HOSP-EC
## 819                 NH
## 820                 NH
## 821             DTC-EC
## 822            HOSP-EC
## 823             LTHHCP
## 824            HOSP-EC
## 825                 NH
## 826               CHHA
## 827                 NH
## 828                DTC
## 829                   
## 830                DTC
## 831            HOSP-EC
## 832            HOSP-EC
## 833            HOSP-SB
## 834                   
## 835             DTC-EC
## 836               CHHA
## 837               HOSP
## 838                DTC
## 839            HOSP-EC
## 840                DTC
## 841            HOSP-EC
## 842                 NH
## 843            HOSP-EC
## 844             LTHHCP
## 845            HOSP-EC
## 846                   
## 847               CHHA
## 848            HOSP-EC
## 849             DTC-EC
## 850                DTC
## 851                DTC
## 852                 NH
## 853            HOSP-EC
## 854                 NH
## 855               CHHA
## 856               HOSP
## 857             DTC-EC
## 858                 NH
## 859            HOSP-EC
## 860            HOSP-EC
## 861                DTC
## 862            HOSP-SB
## 863                 NH
## 864             DTC-EC
## 865             DTC-EC
## 866             DTC-EC
## 867             DTC-EC
## 868                 NH
## 869               HOSP
## 870            HOSP-EC
## 871             DTC-EC
## 872             DTC-EC
## 873                   
## 874            HOSP-EC
## 875            HOSP-EC
## 876             DTC-EC
## 877            HOSP-EC
## 878               CHHA
## 879            HOSP-EC
## 880                DTC
## 881            HOSP-EC
## 882            HOSP-EC
## 883               HOSP
## 884            HOSP-EC
## 885                DTC
## 886                 NH
## 887               HOSP
## 888             DTC-EC
## 889            HOSP-EC
## 890                 NH
## 891             DTC-EC
## 892            HOSP-EC
## 893                   
## 894            HOSP-EC
## 895               HOSP
## 896             DTC-EC
## 897             DTC-EC
## 898                DTC
## 899               HOSP
## 900                DTC
## 901            HOSP-EC
## 902             DTC-EC
## 903                DTC
## 904            HOSP-EC
## 905             LTHHCP
## 906                DTC
## 907            HOSP-EC
## 908                DTC
## 909            HOSP-EC
## 910                 NH
## 911            HOSP-EC
## 912                   
## 913             DTC-EC
## 914             DTC-EC
## 915             DTC-EC
## 916             DTC-EC
## 917             DTC-EC
## 918             DTC-EC
## 919               HOSP
## 920            HOSP-EC
## 921            HOSP-EC
## 922                   
## 923               HOSP
## 924            HOSP-EC
## 925                 NH
## 926                 NH
## 927            HOSP-SB
## 928                 NH
## 929             DTC-EC
## 930            HOSP-EC
## 931            HOSP-SB
## 932            HOSP-SB
## 933            HOSP-EC
## 934             DTC-EC
## 935            HOSP-EC
## 936             DTC-EC
## 937                DTC
## 938             DTC-EC
## 939                DTC
## 940               CHHA
## 941            HOSP-EC
## 942                DTC
## 943            HOSP-EC
## 944                 NH
## 945            HOSP-SB
## 946            HOSP-EC
## 947            HOSP-EC
## 948                 NH
## 949                DTC
## 950            HOSP-EC
## 951            HOSP-EC
## 952            HOSP-EC
## 953               HOSP
## 954             DTC-EC
## 955             DTC-EC
## 956             DTC-EC
## 957                 NH
## 958            HOSP-EC
## 959                 NH
## 960                DTC
## 961             DTC-EC
## 962                 NH
## 963                DTC
## 964                DTC
## 965             DTC-EC
## 966                DTC
## 967            HOSP-EC
## 968                 NH
## 969                 NH
## 970                 NH
## 971                 NH
## 972            HOSP-EC
## 973            HOSP-EC
## 974             DTC-EC
## 975            HOSP-EC
## 976            HOSP-SB
## 977               CHHA
## 978               HOSP
## 979            HOSP-EC
## 980            HOSP-EC
## 981            HOSP-EC
## 982            HOSP-EC
## 983                DTC
## 984                   
## 985                DTC
## 986            HOSP-EC
## 987                DTC
## 988                DTC
## 989            HOSP-EC
## 990             DTC-EC
## 991             DTC-EC
## 992             DTC-EC
## 993                   
## 994            HOSP-EC
## 995                DTC
## 996                   
## 997            HOSP-EC
## 998                DTC
## 999            HOSP-EC
## 1000           HOSP-SB
## 1001              HOSP
## 1002               DTC
## 1003           HOSP-EC
## 1004                NH
## 1005                NH
## 1006                NH
## 1007               DTC
## 1008            DTC-EC
## 1009                NH
## 1010           HOSP-EC
## 1011               DTC
## 1012                  
## 1013            DTC-EC
## 1014           HOSP-EC
## 1015           HOSP-EC
## 1016              HOSP
## 1017               DTC
## 1018           HOSP-EC
## 1019                NH
## 1020            DTC-EC
## 1021           HOSP-EC
## 1022           HOSP-EC
## 1023           HOSP-EC
## 1024               DTC
## 1025                NH
## 1026            DTC-EC
## 1027                NH
## 1028                NH
## 1029           HOSP-EC
## 1030               DTC
## 1031                  
## 1032            DTC-EC
## 1033           HOSP-EC
## 1034                NH
## 1035               DTC
## 1036                NH
## 1037                  
## 1038           HOSP-EC
## 1039            DTC-EC
## 1040                  
## 1041                NH
## 1042           HOSP-EC
## 1043                NH
## 1044            LTHHCP
## 1045                NH
## 1046             ADHCP
## 1047            DTC-EC
## 1048           HOSP-SB
## 1049           HOSP-EC
## 1050                  
## 1051            LTHHCP
## 1052              HOSP
## 1053               DTC
## 1054                  
## 1055            DTC-EC
## 1056           HOSP-EC
## 1057                NH
## 1058               DTC
## 1059           HOSP-EC
## 1060              CHHA
## 1061            DTC-EC
## 1062           HOSP-EC
## 1063           HOSP-EC
## 1064                NH
## 1065                NH
## 1066               DTC
## 1067                NH
## 1068              HOSP
## 1069                  
## 1070           HOSP-EC
## 1071           HOSP-EC
## 1072           HOSP-SB
## 1073           HOSP-EC
## 1074           HOSP-SB
## 1075              HOSP
## 1076           HOSP-EC
## 1077               DTC
## 1078            LTHHCP
## 1079            DTC-EC
## 1080                  
## 1081                  
## 1082               DTC
## 1083           HOSP-EC
## 1084                NH
## 1085                NH
## 1086           HOSP-EC
## 1087           HOSP-EC
## 1088               DTC
## 1089               DTC
## 1090                  
## 1091                NH
## 1092           HOSP-EC
## 1093            DTC-EC
## 1094                NH
## 1095              HOSP
## 1096            DTC-EC
## 1097            DTC-EC
## 1098            DTC-EC
## 1099               DTC
## 1100           HOSP-EC
## 1101           HOSP-EC
## 1102           HOSP-EC
## 1103           HOSP-EC
## 1104                NH
## 1105            DTC-EC
## 1106           HOSP-EC
## 1107           HOSP-SB
## 1108                NH
## 1109           HOSP-EC
## 1110            DTC-EC
## 1111           HOSP-EC
## 1112              CHHA
## 1113              CHHA
## 1114            DTC-EC
## 1115           HOSP-EC
## 1116              CHHA
## 1117            DTC-EC
## 1118           HOSP-EC
## 1119               DTC
## 1120            DTC-EC
## 1121                  
## 1122            DTC-EC
## 1123             ADHCP
## 1124                NH
## 1125           HOSP-EC
## 1126               DTC
## 1127           HOSP-EC
## 1128            DTC-EC
## 1129           HOSP-EC
## 1130           HOSP-EC
## 1131           HOSP-SB
## 1132           HOSP-EC
## 1133              CHHA
## 1134           HOSP-EC
## 1135               DTC
## 1136            DTC-EC
## 1137           HOSP-EC
## 1138           HOSP-EC
## 1139           HOSP-EC
## 1140           HOSP-EC
## 1141               DTC
## 1142                NH
## 1143              HOSP
## 1144                NH
## 1145           HOSP-EC
## 1146              HOSP
## 1147                NH
## 1148           HOSP-EC
## 1149            DTC-EC
## 1150              HOSP
## 1151            DTC-EC
## 1152               DTC
## 1153                NH
## 1154                NH
## 1155                NH
## 1156                NH
## 1157              HOSP
## 1158           HOSP-EC
## 1159                NH
## 1160           HOSP-EC
## 1161                NH
## 1162                NH
## 1163            DTC-EC
## 1164               DTC
## 1165            DTC-EC
## 1166           HOSP-EC
## 1167                NH
## 1168                NH
## 1169            DTC-EC
## 1170                  
## 1171           HOSP-SB
## 1172            DTC-EC
## 1173           HOSP-EC
## 1174             ADHCP
## 1175               DTC
## 1176               DTC
## 1177                NH
## 1178              HOSP
## 1179              HOSP
## 1180           HOSP-EC
## 1181              HOSP
## 1182           HOSP-EC
## 1183           HOSP-EC
## 1184            DTC-EC
## 1185                NH
## 1186            DTC-EC
## 1187              HOSP
## 1188            DTC-EC
## 1189                NH
## 1190           HOSP-EC
## 1191                NH
## 1192           HOSP-EC
## 1193           HOSP-EC
## 1194            DTC-EC
## 1195                NH
## 1196                NH
## 1197               DTC
## 1198            DTC-EC
## 1199            DTC-EC
## 1200           HOSP-EC
## 1201                NH
## 1202           HOSP-EC
## 1203                NH
## 1204               DTC
## 1205           HOSP-EC
## 1206            DTC-EC
## 1207               DTC
## 1208            DTC-EC
## 1209            DTC-EC
## 1210               DTC
## 1211                NH
## 1212            DTC-EC
## 1213            DTC-EC
## 1214           HOSP-EC
## 1215           HOSP-SB
## 1216           HOSP-EC
## 1217            DTC-EC
## 1218            DTC-EC
## 1219               DTC
## 1220                NH
## 1221           HOSP-EC
## 1222           HOSP-EC
## 1223           HOSP-EC
## 1224           HOSP-EC
## 1225           HOSP-SB
## 1226                NH
## 1227           HOSP-SB
## 1228           HOSP-SB
## 1229               DTC
## 1230               DTC
## 1231           HOSP-EC
## 1232                NH
## 1233               DTC
## 1234            DTC-EC
## 1235           HOSP-EC
## 1236            DTC-EC
## 1237           HOSP-EC
## 1238           HOSP-EC
## 1239                NH
## 1240                NH
## 1241           HOSP-EC
## 1242                NH
## 1243            DTC-EC
## 1244           HOSP-EC
## 1245           HOSP-EC
## 1246           HOSP-EC
## 1247                NH
## 1248           HOSP-EC
## 1249                  
## 1250                NH
## 1251            DTC-EC
## 1252              HOSP
## 1253           HOSP-EC
## 1254            DTC-EC
## 1255              HOSP
## 1256              HOSP
## 1257            DTC-EC
## 1258               DTC
## 1259              HOSP
## 1260           HOSP-SB
## 1261           HOSP-EC
## 1262           HOSP-EC
## 1263           HOSP-EC
## 1264           HOSP-EC
## 1265           HOSP-EC
## 1266            DTC-EC
## 1267              CHHA
## 1268              HOSP
## 1269            DTC-EC
## 1270               DTC
## 1271            DTC-EC
## 1272           HOSP-EC
## 1273              HOSP
## 1274               DTC
## 1275               DTC
## 1276                  
## 1277           HOSP-EC
## 1278           HOSP-EC
## 1279           HOSP-EC
## 1280           HOSP-EC
## 1281                  
## 1282            DTC-EC
## 1283                  
## 1284           HOSP-SB
## 1285                NH
## 1286               DTC
## 1287            DTC-EC
## 1288           HOSP-EC
## 1289            DTC-EC
## 1290               DTC
## 1291           HOSP-EC
## 1292                NH
## 1293           HOSP-EC
## 1294                  
## 1295                NH
## 1296           HOSP-SB
## 1297               DTC
## 1298           HOSP-EC
## 1299                NH
## 1300            DTC-EC
## 1301              HOSP
## 1302            DTC-EC
## 1303             ADHCP
## 1304                NH
## 1305                NH
## 1306              CHHA
## 1307           HOSP-EC
## 1308           HOSP-EC
## 1309           HOSP-EC
## 1310              CHHA
## 1311                NH
## 1312            DTC-EC
## 1313            DTC-EC
## 1314           HOSP-EC
## 1315            DTC-EC
## 1316                NH
## 1317              HSPC
## 1318            DTC-EC
## 1319            DTC-EC
## 1320            LTHHCP
## 1321           HOSP-EC
## 1322           HOSP-EC
## 1323              HOSP
## 1324            DTC-EC
## 1325                  
## 1326           HOSP-EC
## 1327                  
## 1328              HOSP
## 1329              HSPC
## 1330           HOSP-EC
## 1331           HOSP-SB
## 1332               DTC
## 1333                  
## 1334           HOSP-EC
## 1335                  
## 1336                  
## 1337              HOSP
## 1338               DTC
## 1339           HOSP-EC
## 1340                  
## 1341            DTC-EC
## 1342           HOSP-EC
## 1343           HOSP-EC
## 1344                NH
## 1345           HOSP-EC
## 1346           HOSP-EC
## 1347                  
## 1348            DTC-EC
## 1349              HSPC
## 1350                NH
## 1351            DTC-EC
## 1352                  
## 1353               DTC
## 1354               DTC
## 1355           HOSP-EC
## 1356            DTC-EC
## 1357                NH
## 1358              HOSP
## 1359             ADHCP
## 1360            DTC-EC
## 1361            DTC-EC
## 1362            DTC-EC
## 1363            DTC-EC
## 1364            DTC-EC
## 1365            LTHHCP
## 1366               DTC
## 1367                NH
## 1368                NH
## 1369                  
## 1370           HOSP-SB
## 1371            DTC-EC
## 1372                  
## 1373           HOSP-EC
## 1374            DTC-EC
## 1375           HOSP-EC
## 1376           HOSP-EC
## 1377                NH
## 1378                  
## 1379                  
## 1380           HOSP-EC
## 1381            DTC-EC
## 1382              HOSP
## 1383           HOSP-EC
## 1384            DTC-EC
## 1385                NH
## 1386              HOSP
## 1387            LTHHCP
## 1388                  
## 1389           HOSP-EC
## 1390           HOSP-EC
## 1391           HOSP-EC
## 1392           HOSP-EC
## 1393                  
## 1394               DTC
## 1395               DTC
## 1396            DTC-EC
## 1397                NH
## 1398           HOSP-EC
## 1399           HOSP-EC
## 1400            DTC-EC
## 1401               DTC
## 1402           HOSP-EC
## 1403           HOSP-SB
## 1404           HOSP-EC
## 1405           HOSP-EC
## 1406           HOSP-EC
## 1407           HOSP-SB
## 1408           HOSP-EC
## 1409                  
## 1410           HOSP-EC
## 1411            DTC-EC
## 1412           HOSP-EC
## 1413            DTC-EC
## 1414           HOSP-EC
## 1415                NH
## 1416            DTC-EC
## 1417                NH
## 1418           HOSP-EC
## 1419           HOSP-EC
## 1420            DTC-EC
## 1421           HOSP-EC
## 1422           HOSP-EC
## 1423           HOSP-EC
## 1424            DTC-EC
## 1425           HOSP-EC
## 1426                NH
## 1427                  
## 1428               DTC
## 1429           HOSP-EC
## 1430           HOSP-EC
## 1431            LTHHCP
## 1432           HOSP-EC
## 1433           HOSP-EC
## 1434                  
## 1435            DTC-EC
## 1436            DTC-EC
## 1437           HOSP-EC
## 1438           HOSP-EC
## 1439            DTC-EC
## 1440           HOSP-EC
## 1441           HOSP-EC
## 1442              CHHA
## 1443                  
## 1444               DTC
## 1445                NH
## 1446           HOSP-EC
## 1447              HOSP
## 1448           HOSP-EC
## 1449            DTC-EC
## 1450               DTC
## 1451            DTC-EC
## 1452               DTC
## 1453           HOSP-SB
## 1454                NH
## 1455                  
## 1456           HOSP-EC
## 1457              HOSP
## 1458            DTC-EC
## 1459           HOSP-EC
## 1460                  
## 1461            DTC-EC
## 1462           HOSP-EC
## 1463           HOSP-EC
## 1464                NH
## 1465                NH
## 1466               DTC
## 1467           HOSP-EC
## 1468           HOSP-EC
## 1469            DTC-EC
## 1470            DTC-EC
## 1471               DTC
## 1472           HOSP-EC
## 1473             ADHCP
## 1474                NH
## 1475            DTC-EC
## 1476                NH
## 1477            DTC-EC
## 1478                  
## 1479           HOSP-EC
## 1480              HOSP
## 1481               DTC
## 1482              HOSP
## 1483                NH
## 1484                  
## 1485               DTC
## 1486                NH
## 1487            DTC-EC
## 1488            DTC-EC
## 1489                NH
## 1490            DTC-EC
## 1491                NH
## 1492           HOSP-EC
## 1493                  
## 1494           HOSP-EC
## 1495                  
## 1496                NH
## 1497            DTC-EC
## 1498               DTC
## 1499           HOSP-EC
## 1500           HOSP-EC
## 1501            DTC-EC
## 1502                  
## 1503            DTC-EC
## 1504                NH
## 1505              HOSP
## 1506                NH
## 1507               DTC
## 1508                NH
## 1509                NH
## 1510            DTC-EC
## 1511           HOSP-EC
## 1512                  
## 1513                  
## 1514           HOSP-EC
## 1515              CHHA
## 1516           HOSP-EC
## 1517                  
## 1518           HOSP-SB
## 1519            DTC-EC
## 1520            DTC-EC
## 1521           HOSP-EC
## 1522           HOSP-EC
## 1523               DTC
## 1524                NH
## 1525            DTC-EC
## 1526           HOSP-EC
## 1527           HOSP-EC
## 1528                NH
## 1529              CHHA
## 1530               DTC
## 1531                  
## 1532           HOSP-EC
## 1533                NH
## 1534           HOSP-SB
## 1535                  
## 1536           HOSP-EC
## 1537            DTC-EC
## 1538           HOSP-EC
## 1539                NH
## 1540           HOSP-EC
## 1541               DTC
## 1542           HOSP-EC
## 1543                NH
## 1544            DTC-EC
## 1545               DTC
## 1546                NH
## 1547              HOSP
## 1548           HOSP-EC
## 1549                  
## 1550            DTC-EC
## 1551                NH
## 1552           HOSP-EC
## 1553                  
## 1554                NH
## 1555           HOSP-SB
## 1556                NH
## 1557               DTC
## 1558                NH
## 1559           HOSP-EC
## 1560           HOSP-EC
## 1561               DTC
## 1562              CHHA
## 1563              HOSP
## 1564               DTC
## 1565            LTHHCP
## 1566              HOSP
## 1567           HOSP-SB
## 1568               DTC
## 1569                  
## 1570           HOSP-EC
## 1571           HOSP-EC
## 1572               DTC
## 1573                NH
## 1574           HOSP-SB
## 1575           HOSP-EC
## 1576               DTC
## 1577           HOSP-EC
## 1578            DTC-EC
## 1579               DTC
## 1580               DTC
## 1581           HOSP-EC
## 1582            DTC-EC
## 1583              HOSP
## 1584                NH
## 1585           HOSP-EC
## 1586           HOSP-EC
## 1587           HOSP-EC
## 1588           HOSP-EC
## 1589           HOSP-EC
## 1590           HOSP-EC
## 1591              CHHA
## 1592            DTC-EC
## 1593               DTC
## 1594            DTC-EC
## 1595           HOSP-EC
## 1596                  
## 1597           HOSP-EC
## 1598                NH
## 1599              CHHA
## 1600                NH
## 1601           HOSP-SB
## 1602           HOSP-EC
## 1603               DTC
## 1604            DTC-EC
## 1605           HOSP-EC
## 1606               DTC
## 1607           HOSP-EC
## 1608               DTC
## 1609           HOSP-EC
## 1610            DTC-EC
## 1611            DTC-EC
## 1612                  
## 1613                NH
## 1614            DTC-EC
## 1615            DTC-EC
## 1616           HOSP-SB
## 1617           HOSP-EC
## 1618            LTHHCP
## 1619                NH
## 1620           HOSP-EC
## 1621                  
## 1622               DTC
## 1623                NH
## 1624            DTC-EC
## 1625            DTC-EC
## 1626                  
## 1627           HOSP-SB
## 1628              HOSP
## 1629                NH
## 1630            DTC-EC
## 1631           HOSP-EC
## 1632            DTC-EC
## 1633                  
## 1634                NH
## 1635               DTC
## 1636                NH
## 1637               DTC
## 1638                NH
## 1639           HOSP-EC
## 1640                NH
## 1641            DTC-EC
## 1642               DTC
## 1643           HOSP-EC
## 1644            DTC-EC
## 1645           HOSP-EC
## 1646                  
## 1647            DTC-EC
## 1648                  
## 1649            DTC-EC
## 1650                NH
## 1651            DTC-EC
## 1652               DTC
## 1653                  
## 1654            DTC-EC
## 1655           HOSP-EC
## 1656              CHHA
## 1657           HOSP-EC
## 1658            DTC-EC
## 1659           HOSP-EC
## 1660           HOSP-EC
## 1661            DTC-EC
## 1662           HOSP-EC
## 1663           HOSP-EC
## 1664            DTC-EC
## 1665           HOSP-EC
## 1666           HOSP-EC
## 1667                  
## 1668                NH
## 1669                NH
## 1670           HOSP-SB
## 1671             ADHCP
## 1672           HOSP-EC
## 1673           HOSP-EC
## 1674           HOSP-EC
## 1675                  
## 1676            DTC-EC
## 1677           HOSP-EC
## 1678            DTC-EC
## 1679           HOSP-EC
## 1680               DTC
## 1681           HOSP-EC
## 1682              HOSP
## 1683           HOSP-EC
## 1684                NH
## 1685            DTC-EC
## 1686           HOSP-EC
## 1687           HOSP-EC
## 1688           HOSP-EC
## 1689           HOSP-EC
## 1690           HOSP-EC
## 1691                  
## 1692                NH
## 1693              CHHA
## 1694                  
## 1695            DTC-EC
## 1696           HOSP-EC
## 1697                NH
## 1698           HOSP-EC
## 1699               DTC
## 1700            DTC-EC
## 1701                NH
## 1702            DTC-EC
## 1703             ADHCP
## 1704              HOSP
## 1705           HOSP-EC
## 1706                  
## 1707            DTC-EC
## 1708              HSPC
## 1709               DTC
## 1710                NH
## 1711           HOSP-EC
## 1712           HOSP-EC
## 1713                NH
## 1714            DTC-EC
## 1715               DTC
## 1716                NH
## 1717           HOSP-EC
## 1718               DTC
## 1719               DTC
## 1720           HOSP-SB
## 1721            DTC-EC
## 1722                  
## 1723               DTC
## 1724                  
## 1725                NH
## 1726                  
## 1727                  
## 1728           HOSP-SB
## 1729           HOSP-EC
## 1730           HOSP-EC
## 1731               DTC
## 1732           HOSP-EC
## 1733           HOSP-EC
## 1734           HOSP-EC
## 1735              CHHA
## 1736           HOSP-EC
## 1737            LTHHCP
## 1738           HOSP-EC
## 1739              CHHA
## 1740           HOSP-EC
## 1741               DTC
## 1742            DTC-EC
## 1743            DTC-EC
## 1744               DTC
## 1745               DTC
## 1746           HOSP-EC
## 1747           HOSP-EC
## 1748                  
## 1749                  
## 1750            DTC-EC
## 1751           HOSP-EC
## 1752                NH
## 1753            DTC-EC
## 1754           HOSP-EC
## 1755               DTC
## 1756            DTC-EC
## 1757              HOSP
## 1758               DTC
## 1759                  
## 1760                NH
## 1761           HOSP-EC
## 1762            DTC-EC
## 1763           HOSP-SB
## 1764            DTC-EC
## 1765            LTHHCP
## 1766           HOSP-EC
## 1767           HOSP-EC
## 1768              HOSP
## 1769           HOSP-EC
## 1770           HOSP-EC
## 1771           HOSP-EC
## 1772            LTHHCP
## 1773           HOSP-EC
## 1774           HOSP-EC
## 1775               DTC
## 1776               DTC
## 1777           HOSP-EC
## 1778                NH
## 1779               DTC
## 1780              HOSP
## 1781               DTC
## 1782           HOSP-EC
## 1783               DTC
## 1784              CHHA
## 1785            DTC-EC
## 1786                NH
## 1787                NH
## 1788            DTC-EC
## 1789                NH
## 1790                NH
## 1791              HOSP
## 1792           HOSP-EC
## 1793           HOSP-EC
## 1794           HOSP-EC
## 1795           HOSP-EC
## 1796                  
## 1797               DTC
## 1798              HOSP
## 1799                  
## 1800           HOSP-EC
## 1801               DTC
## 1802               DTC
## 1803               DTC
## 1804           HOSP-EC
## 1805                NH
## 1806                  
## 1807              HOSP
## 1808              HOSP
## 1809           HOSP-EC
## 1810                NH
## 1811           HOSP-EC
## 1812             ADHCP
## 1813           HOSP-EC
## 1814              HOSP
## 1815           HOSP-SB
## 1816            DTC-EC
## 1817              CHHA
## 1818                NH
## 1819            DTC-EC
## 1820              HOSP
## 1821              CHHA
## 1822                NH
## 1823            DTC-EC
## 1824               DTC
## 1825           HOSP-EC
## 1826           HOSP-EC
## 1827            DTC-EC
## 1828               DTC
## 1829           HOSP-EC
## 1830            DTC-EC
## 1831           HOSP-EC
## 1832               DTC
## 1833           HOSP-EC
## 1834           HOSP-EC
## 1835           HOSP-EC
## 1836              HOSP
## 1837           HOSP-EC
## 1838           HOSP-EC
## 1839            DTC-EC
## 1840              HOSP
## 1841              CHHA
## 1842                NH
## 1843           HOSP-EC
## 1844            DTC-EC
## 1845                NH
## 1846           HOSP-EC
## 1847           HOSP-EC
## 1848             ADHCP
## 1849                  
## 1850           HOSP-EC
## 1851              CHHA
## 1852           HOSP-EC
## 1853              CHHA
## 1854           HOSP-EC
## 1855            DTC-EC
## 1856           HOSP-EC
## 1857           HOSP-EC
## 1858            DTC-EC
## 1859           HOSP-SB
## 1860               DTC
## 1861           HOSP-EC
## 1862                  
## 1863           HOSP-EC
## 1864            DTC-EC
## 1865           HOSP-EC
## 1866               DTC
## 1867               DTC
## 1868             ADHCP
## 1869               DTC
## 1870                NH
## 1871            DTC-EC
## 1872           HOSP-EC
## 1873           HOSP-EC
## 1874               DTC
## 1875              HOSP
## 1876                NH
## 1877            DTC-EC
## 1878                NH
## 1879              CHHA
## 1880           HOSP-SB
## 1881           HOSP-EC
## 1882           HOSP-EC
## 1883           HOSP-EC
## 1884            DTC-EC
## 1885                  
## 1886           HOSP-EC
## 1887              CHHA
## 1888               DTC
## 1889           HOSP-SB
## 1890                NH
## 1891           HOSP-EC
## 1892           HOSP-EC
## 1893           HOSP-EC
## 1894           HOSP-EC
## 1895                NH
## 1896           HOSP-EC
## 1897                  
## 1898                NH
## 1899              HOSP
## 1900           HOSP-EC
## 1901              CHHA
## 1902                  
## 1903               DTC
## 1904            DTC-EC
## 1905           HOSP-SB
## 1906               DTC
## 1907               DTC
## 1908               DTC
## 1909           HOSP-EC
## 1910            DTC-EC
## 1911                NH
## 1912           HOSP-EC
## 1913            DTC-EC
## 1914            DTC-EC
## 1915              HOSP
## 1916               DTC
## 1917           HOSP-EC
## 1918           HOSP-EC
## 1919           HOSP-EC
## 1920               DTC
## 1921           HOSP-EC
## 1922                NH
## 1923              CHHA
## 1924               DTC
## 1925           HOSP-EC
## 1926                  
## 1927           HOSP-EC
## 1928           HOSP-EC
## 1929            DTC-EC
## 1930               DTC
## 1931              CHHA
## 1932               DTC
## 1933            DTC-EC
## 1934                NH
## 1935           HOSP-EC
## 1936                  
## 1937           HOSP-EC
## 1938            DTC-EC
## 1939                NH
## 1940                NH
## 1941                NH
## 1942           HOSP-EC
## 1943                NH
## 1944           HOSP-EC
## 1945                NH
## 1946           HOSP-EC
## 1947           HOSP-EC
## 1948                NH
## 1949           HOSP-EC
## 1950                  
## 1951           HOSP-EC
## 1952                NH
## 1953              HOSP
## 1954                  
## 1955                NH
## 1956              HOSP
## 1957           HOSP-EC
## 1958            DTC-EC
## 1959              HOSP
## 1960               DTC
## 1961            DTC-EC
## 1962            DTC-EC
## 1963            DTC-EC
## 1964                  
## 1965              CHHA
## 1966           HOSP-EC
## 1967           HOSP-EC
## 1968                  
## 1969           HOSP-EC
## 1970                NH
## 1971            DTC-EC
## 1972                NH
## 1973              HOSP
## 1974                NH
## 1975               DTC
## 1976           HOSP-EC
## 1977                NH
## 1978                  
## 1979           HOSP-EC
## 1980              HOSP
## 1981                  
## 1982               DTC
## 1983             ADHCP
## 1984                NH
## 1985           HOSP-EC
## 1986            DTC-EC
## 1987           HOSP-EC
## 1988              HOSP
## 1989                NH
## 1990            DTC-EC
## 1991            DTC-EC
## 1992                  
## 1993              HOSP
## 1994              HOSP
## 1995           HOSP-EC
## 1996               DTC
## 1997           HOSP-EC
## 1998                NH
## 1999              HOSP
## 2000              CHHA
## 2001            LTHHCP
## 2002            DTC-EC
## 2003            DTC-EC
## 2004            DTC-EC
## 2005                NH
## 2006               DTC
## 2007               DTC
## 2008                  
## 2009           HOSP-EC
## 2010                NH
## 2011               DTC
## 2012              CHHA
## 2013                NH
## 2014           HOSP-EC
## 2015           HOSP-EC
## 2016                NH
## 2017               DTC
## 2018              HOSP
## 2019           HOSP-EC
## 2020           HOSP-EC
## 2021           HOSP-EC
## 2022           HOSP-SB
## 2023            DTC-EC
## 2024           HOSP-EC
## 2025               DTC
## 2026               DTC
## 2027                NH
## 2028            DTC-EC
## 2029               DTC
## 2030              CHHA
## 2031           HOSP-EC
## 2032                NH
## 2033           HOSP-EC
## 2034                NH
## 2035            DTC-EC
## 2036           HOSP-EC
## 2037           HOSP-EC
## 2038           HOSP-EC
## 2039                NH
## 2040            DTC-EC
## 2041              HSPC
## 2042             ADHCP
## 2043           HOSP-EC
## 2044            DTC-EC
## 2045               DTC
## 2046                  
## 2047               DTC
## 2048           HOSP-EC
## 2049           HOSP-EC
## 2050           HOSP-EC
## 2051           HOSP-EC
## 2052           HOSP-EC
## 2053            DTC-EC
## 2054              HOSP
## 2055           HOSP-EC
## 2056           HOSP-EC
## 2057               DTC
## 2058           HOSP-EC
## 2059                  
## 2060                  
## 2061            DTC-EC
## 2062           HOSP-EC
## 2063                  
## 2064           HOSP-EC
## 2065           HOSP-EC
## 2066           HOSP-EC
## 2067            DTC-EC
## 2068           HOSP-EC
## 2069            DTC-EC
## 2070              HOSP
## 2071                NH
## 2072                NH
## 2073               DTC
## 2074                NH
## 2075                NH
## 2076              HOSP
## 2077               DTC
## 2078           HOSP-EC
## 2079           HOSP-EC
## 2080           HOSP-EC
## 2081            DTC-EC
## 2082           HOSP-SB
## 2083                NH
## 2084            DTC-EC
## 2085              HOSP
## 2086           HOSP-EC
## 2087           HOSP-EC
## 2088           HOSP-EC
## 2089             ADHCP
## 2090               DTC
## 2091                  
## 2092                  
## 2093            DTC-EC
## 2094            DTC-EC
## 2095           HOSP-EC
## 2096            DTC-EC
## 2097              HSPC
## 2098                NH
## 2099              HOSP
## 2100           HOSP-EC
## 2101               DTC
## 2102                NH
## 2103                NH
## 2104                  
## 2105           HOSP-EC
## 2106                NH
## 2107           HOSP-EC
## 2108              HOSP
## 2109           HOSP-EC
## 2110           HOSP-SB
## 2111                NH
## 2112            DTC-EC
## 2113            DTC-EC
## 2114                  
## 2115                  
## 2116            DTC-EC
## 2117              HOSP
## 2118                NH
## 2119            LTHHCP
## 2120                NH
## 2121            DTC-EC
## 2122           HOSP-EC
## 2123                NH
## 2124            DTC-EC
## 2125                  
## 2126           HOSP-EC
## 2127           HOSP-EC
## 2128            DTC-EC
## 2129           HOSP-SB
## 2130           HOSP-EC
## 2131            DTC-EC
## 2132                  
## 2133                NH
## 2134              HOSP
## 2135           HOSP-EC
## 2136           HOSP-EC
## 2137            DTC-EC
## 2138            DTC-EC
## 2139              HOSP
## 2140                  
## 2141               DTC
## 2142                NH
## 2143            DTC-EC
## 2144           HOSP-EC
## 2145           HOSP-EC
## 2146           HOSP-EC
## 2147           HOSP-EC
## 2148                NH
## 2149            DTC-EC
## 2150              HOSP
## 2151              CHHA
## 2152                  
## 2153               DTC
## 2154                NH
## 2155           HOSP-EC
## 2156           HOSP-EC
## 2157           HOSP-EC
## 2158                NH
## 2159           HOSP-EC
## 2160           HOSP-EC
## 2161            DTC-EC
## 2162           HOSP-EC
## 2163           HOSP-EC
## 2164               DTC
## 2165               DTC
## 2166                NH
## 2167                NH
## 2168              CHHA
## 2169               DTC
## 2170                NH
## 2171           HOSP-EC
## 2172               DTC
## 2173            DTC-EC
## 2174            DTC-EC
## 2175           HOSP-EC
## 2176           HOSP-EC
## 2177           HOSP-EC
## 2178           HOSP-EC
## 2179           HOSP-SB
## 2180           HOSP-EC
## 2181              HOSP
## 2182            DTC-EC
## 2183            LTHHCP
## 2184            DTC-EC
## 2185                NH
## 2186           HOSP-EC
## 2187                  
## 2188            DTC-EC
## 2189           HOSP-EC
## 2190                NH
## 2191                NH
## 2192               DTC
## 2193           HOSP-SB
## 2194           HOSP-EC
## 2195           HOSP-EC
## 2196                NH
## 2197               DTC
## 2198            DTC-EC
## 2199              HOSP
## 2200                  
## 2201                  
## 2202               DTC
## 2203           HOSP-EC
## 2204            DTC-EC
## 2205                  
## 2206           HOSP-EC
## 2207            DTC-EC
## 2208            DTC-EC
## 2209           HOSP-EC
## 2210           HOSP-EC
## 2211                  
## 2212           HOSP-EC
## 2213              CHHA
## 2214              HSPC
## 2215            DTC-EC
## 2216                  
## 2217            DTC-EC
## 2218           HOSP-EC
## 2219                  
## 2220           HOSP-EC
## 2221                NH
## 2222            DTC-EC
## 2223               DTC
## 2224                NH
## 2225                NH
## 2226               DTC
## 2227              HOSP
## 2228                NH
## 2229            DTC-EC
## 2230               DTC
## 2231           HOSP-EC
## 2232              HOSP
## 2233              HSPC
## 2234            DTC-EC
## 2235               DTC
## 2236           HOSP-EC
## 2237             ADHCP
## 2238           HOSP-SB
## 2239              HOSP
## 2240               DTC
## 2241                NH
## 2242                NH
## 2243            DTC-EC
## 2244           HOSP-EC
## 2245               DTC
## 2246              CHHA
## 2247               DTC
## 2248           HOSP-EC
## 2249                NH
## 2250                NH
## 2251                NH
## 2252                NH
## 2253            DTC-EC
## 2254           HOSP-EC
## 2255           HOSP-EC
## 2256           HOSP-SB
## 2257               DTC
## 2258           HOSP-EC
## 2259           HOSP-EC
## 2260            DTC-EC
## 2261               DTC
## 2262           HOSP-SB
## 2263           HOSP-EC
## 2264           HOSP-SB
## 2265           HOSP-EC
## 2266               DTC
## 2267                NH
## 2268           HOSP-EC
## 2269           HOSP-EC
## 2270           HOSP-EC
## 2271               DTC
## 2272            DTC-EC
## 2273              HSPC
## 2274           HOSP-EC
## 2275                NH
## 2276               DTC
## 2277                NH
## 2278           HOSP-EC
## 2279            LTHHCP
## 2280                  
## 2281            DTC-EC
## 2282                  
## 2283             ADHCP
## 2284               DTC
## 2285            LTHHCP
## 2286            DTC-EC
## 2287               DTC
## 2288           HOSP-EC
## 2289           HOSP-EC
## 2290               DTC
## 2291                NH
## 2292            DTC-EC
## 2293                  
## 2294           HOSP-SB
## 2295           HOSP-SB
## 2296            DTC-EC
## 2297                NH
## 2298                NH
## 2299           HOSP-EC
## 2300               DTC
## 2301            DTC-EC
## 2302                NH
## 2303            DTC-EC
## 2304            DTC-EC
## 2305               DTC
## 2306               DTC
## 2307            LTHHCP
## 2308               DTC
## 2309           HOSP-SB
## 2310               DTC
## 2311            DTC-EC
## 2312           HOSP-SB
## 2313           HOSP-EC
## 2314            DTC-EC
## 2315           HOSP-EC
## 2316                NH
## 2317           HOSP-EC
## 2318           HOSP-EC
## 2319           HOSP-EC
## 2320               DTC
## 2321                NH
## 2322              HOSP
## 2323                NH
## 2324               DTC
## 2325           HOSP-EC
## 2326                  
## 2327            DTC-EC
## 2328                NH
## 2329           HOSP-EC
## 2330               DTC
## 2331            DTC-EC
## 2332            DTC-EC
## 2333               DTC
## 2334               DTC
## 2335                NH
## 2336            DTC-EC
## 2337                NH
## 2338           HOSP-EC
## 2339              CHHA
## 2340              HOSP
## 2341                NH
## 2342                NH
## 2343                  
## 2344           HOSP-EC
## 2345           HOSP-EC
## 2346           HOSP-EC
## 2347           HOSP-EC
## 2348                NH
## 2349                NH
## 2350               DTC
## 2351           HOSP-EC
## 2352            DTC-EC
## 2353              HOSP
## 2354           HOSP-EC
## 2355           HOSP-EC
## 2356           HOSP-EC
## 2357           HOSP-EC
## 2358                  
## 2359               DTC
## 2360           HOSP-EC
## 2361               DTC
## 2362                NH
## 2363           HOSP-EC
## 2364           HOSP-EC
## 2365           HOSP-EC
## 2366               DTC
## 2367            DTC-EC
## 2368            DTC-EC
## 2369              HSPC
## 2370              HOSP
## 2371           HOSP-EC
## 2372           HOSP-EC
## 2373                NH
## 2374              CHHA
## 2375            DTC-EC
## 2376           HOSP-EC
## 2377           HOSP-EC
## 2378           HOSP-EC
## 2379              HOSP
## 2380           HOSP-EC
## 2381                NH
## 2382           HOSP-EC
## 2383                NH
## 2384               DTC
## 2385                  
## 2386            DTC-EC
## 2387                NH
## 2388               DTC
## 2389           HOSP-SB
## 2390              HSPC
## 2391            DTC-EC
## 2392            DTC-EC
## 2393                  
## 2394              HOSP
## 2395           HOSP-EC
## 2396           HOSP-EC
## 2397           HOSP-EC
## 2398           HOSP-EC
## 2399               DTC
## 2400               DTC
## 2401                NH
## 2402            DTC-EC
## 2403            DTC-EC
## 2404           HOSP-SB
## 2405                NH
## 2406                  
## 2407                  
## 2408               DTC
## 2409           HOSP-EC
## 2410            DTC-EC
## 2411           HOSP-EC
## 2412                NH
## 2413               DTC
## 2414                NH
## 2415               DTC
## 2416             ADHCP
## 2417              HOSP
## 2418           HOSP-SB
## 2419               DTC
## 2420            DTC-EC
## 2421           HOSP-SB
## 2422                  
## 2423           HOSP-SB
## 2424           HOSP-EC
## 2425           HOSP-EC
## 2426            DTC-EC
## 2427                NH
## 2428                NH
## 2429              HOSP
## 2430                  
## 2431           HOSP-SB
## 2432               DTC
## 2433            DTC-EC
## 2434              HSPC
## 2435                NH
## 2436           HOSP-EC
## 2437              HOSP
## 2438            DTC-EC
## 2439                NH
## 2440           HOSP-EC
## 2441           HOSP-EC
## 2442               DTC
## 2443                NH
## 2444            DTC-EC
## 2445               DTC
## 2446               DTC
## 2447                NH
## 2448           HOSP-EC
## 2449                NH
## 2450                  
## 2451               DTC
## 2452               DTC
## 2453           HOSP-EC
## 2454           HOSP-EC
## 2455           HOSP-EC
## 2456           HOSP-EC
## 2457               DTC
## 2458           HOSP-EC
## 2459              CHHA
## 2460            DTC-EC
## 2461           HOSP-EC
## 2462            DTC-EC
## 2463            DTC-EC
## 2464            DTC-EC
## 2465            DTC-EC
## 2466              HOSP
## 2467                NH
## 2468           HOSP-EC
## 2469            DTC-EC
## 2470           HOSP-EC
## 2471             ADHCP
## 2472               DTC
## 2473             ADHCP
## 2474               DTC
## 2475           HOSP-EC
## 2476                  
## 2477           HOSP-EC
## 2478                NH
## 2479               DTC
## 2480               DTC
## 2481            DTC-EC
## 2482           HOSP-EC
## 2483            DTC-EC
## 2484                NH
## 2485                NH
## 2486                NH
## 2487           HOSP-EC
## 2488                NH
## 2489           HOSP-EC
## 2490                NH
## 2491           HOSP-EC
## 2492           HOSP-EC
## 2493              HOSP
## 2494                NH
## 2495           HOSP-EC
## 2496           HOSP-EC
## 2497           HOSP-EC
## 2498               DTC
## 2499                  
## 2500                NH
## 2501           HOSP-EC
## 2502            DTC-EC
## 2503           HOSP-EC
## 2504           HOSP-EC
## 2505           HOSP-EC
## 2506           HOSP-EC
## 2507            DTC-EC
## 2508                NH
## 2509               DTC
## 2510              HOSP
## 2511               DTC
## 2512                  
## 2513            LTHHCP
## 2514           HOSP-EC
## 2515            DTC-EC
## 2516            DTC-EC
## 2517             ADHCP
## 2518               DTC
## 2519            DTC-EC
## 2520              HOSP
## 2521           HOSP-EC
## 2522                NH
## 2523               DTC
## 2524           HOSP-EC
## 2525              HOSP
## 2526           HOSP-SB
## 2527           HOSP-EC
## 2528               DTC
## 2529           HOSP-EC
## 2530           HOSP-EC
## 2531                NH
## 2532            DTC-EC
## 2533           HOSP-EC
## 2534            DTC-EC
## 2535                  
## 2536            DTC-EC
## 2537               DTC
## 2538               DTC
## 2539               DTC
## 2540                  
## 2541           HOSP-SB
## 2542                NH
## 2543                  
## 2544            DTC-EC
## 2545           HOSP-EC
## 2546            DTC-EC
## 2547               DTC
## 2548                NH
## 2549           HOSP-EC
## 2550              HOSP
## 2551                NH
## 2552            DTC-EC
## 2553            LTHHCP
## 2554               DTC
## 2555           HOSP-EC
## 2556                  
## 2557               DTC
## 2558               DTC
## 2559               DTC
## 2560           HOSP-EC
## 2561                NH
## 2562           HOSP-EC
## 2563               DTC
## 2564           HOSP-EC
## 2565              HOSP
## 2566            DTC-EC
## 2567              CHHA
## 2568            DTC-EC
## 2569               DTC
## 2570               DTC
## 2571            DTC-EC
## 2572              HOSP
## 2573               DTC
## 2574                NH
## 2575                NH
## 2576                NH
## 2577           HOSP-EC
## 2578                NH
## 2579            DTC-EC
## 2580              HOSP
## 2581               DTC
## 2582           HOSP-EC
## 2583                NH
## 2584                  
## 2585               DTC
## 2586                  
## 2587           HOSP-EC
## 2588              HOSP
## 2589           HOSP-EC
## 2590            DTC-EC
## 2591           HOSP-EC
## 2592            DTC-EC
## 2593           HOSP-EC
## 2594           HOSP-SB
## 2595           HOSP-EC
## 2596           HOSP-EC
## 2597                  
## 2598           HOSP-EC
## 2599                NH
## 2600           HOSP-EC
## 2601            DTC-EC
## 2602           HOSP-EC
## 2603           HOSP-EC
## 2604            DTC-EC
## 2605           HOSP-EC
## 2606                NH
## 2607              HOSP
## 2608              HSPC
## 2609           HOSP-EC
## 2610           HOSP-EC
## 2611            DTC-EC
## 2612                NH
## 2613           HOSP-EC
## 2614           HOSP-EC
## 2615              HOSP
## 2616            DTC-EC
## 2617                NH
## 2618           HOSP-EC
## 2619              HSPC
## 2620                NH
## 2621           HOSP-EC
## 2622           HOSP-EC
## 2623           HOSP-SB
## 2624               DTC
## 2625           HOSP-EC
## 2626                NH
## 2627                NH
## 2628                NH
## 2629                NH
## 2630           HOSP-EC
## 2631                  
## 2632           HOSP-EC
## 2633            DTC-EC
## 2634                NH
## 2635           HOSP-EC
## 2636            DTC-EC
## 2637           HOSP-EC
## 2638              HOSP
## 2639           HOSP-EC
## 2640            DTC-EC
## 2641           HOSP-EC
## 2642                NH
## 2643           HOSP-EC
## 2644           HOSP-EC
## 2645            DTC-EC
## 2646              HSPC
## 2647               DTC
## 2648           HOSP-SB
## 2649                NH
## 2650            DTC-EC
## 2651           HOSP-EC
## 2652            DTC-EC
## 2653           HOSP-EC
## 2654           HOSP-EC
## 2655           HOSP-EC
## 2656                NH
## 2657               DTC
## 2658           HOSP-EC
## 2659              HSPC
## 2660            DTC-EC
## 2661               DTC
## 2662                NH
## 2663               DTC
## 2664           HOSP-EC
## 2665           HOSP-EC
## 2666           HOSP-EC
## 2667            DTC-EC
## 2668           HOSP-EC
## 2669                NH
## 2670            DTC-EC
## 2671            DTC-EC
## 2672               DTC
## 2673            DTC-EC
## 2674            DTC-EC
## 2675           HOSP-EC
## 2676                NH
## 2677            DTC-EC
## 2678           HOSP-SB
## 2679           HOSP-EC
## 2680               DTC
## 2681              HSPC
## 2682              CHHA
## 2683                NH
## 2684               DTC
## 2685           HOSP-SB
## 2686              HOSP
## 2687           HOSP-EC
## 2688            DTC-EC
## 2689           HOSP-EC
## 2690               DTC
## 2691                NH
## 2692               DTC
## 2693           HOSP-EC
## 2694            DTC-EC
## 2695                  
## 2696                NH
## 2697           HOSP-EC
## 2698            DTC-EC
## 2699           HOSP-EC
## 2700           HOSP-EC
## 2701                NH
## 2702           HOSP-EC
## 2703                  
## 2704                NH
## 2705           HOSP-SB
## 2706              CHHA
## 2707           HOSP-EC
## 2708                NH
## 2709           HOSP-EC
## 2710              HOSP
## 2711               DTC
## 2712           HOSP-EC
## 2713                  
## 2714            DTC-EC
## 2715            DTC-EC
## 2716           HOSP-EC
## 2717              CHHA
## 2718                NH
## 2719               DTC
## 2720            DTC-EC
## 2721                NH
## 2722           HOSP-EC
## 2723                NH
## 2724            DTC-EC
## 2725            DTC-EC
## 2726                NH
## 2727              HOSP
## 2728           HOSP-EC
## 2729            DTC-EC
## 2730           HOSP-EC
## 2731           HOSP-EC
## 2732           HOSP-EC
## 2733               DTC
## 2734               DTC
## 2735            DTC-EC
## 2736                  
## 2737           HOSP-EC
## 2738                NH
## 2739           HOSP-EC
## 2740            DTC-EC
## 2741               DTC
## 2742              HOSP
## 2743           HOSP-SB
## 2744           HOSP-EC
## 2745               DTC
## 2746           HOSP-EC
## 2747               DTC
## 2748           HOSP-EC
## 2749            DTC-EC
## 2750           HOSP-EC
## 2751            DTC-EC
## 2752           HOSP-EC
## 2753           HOSP-EC
## 2754              HOSP
## 2755                NH
## 2756            DTC-EC
## 2757              CHHA
## 2758            DTC-EC
## 2759                NH
## 2760           HOSP-EC
## 2761                NH
## 2762                NH
## 2763            LTHHCP
## 2764              HSPC
## 2765                NH
## 2766           HOSP-EC
## 2767              HOSP
## 2768            DTC-EC
## 2769            DTC-EC
## 2770            DTC-EC
## 2771                  
## 2772            DTC-EC
## 2773           HOSP-EC
## 2774               DTC
## 2775              HSPC
## 2776               DTC
## 2777                NH
##                                                                Description
## 1                                                                  Hospice
## 2                                   Residential Health Care Facility - SNF
## 3                                   Residential Health Care Facility - SNF
## 4                                   Residential Health Care Facility - SNF
## 5                                   Residential Health Care Facility - SNF
## 6                                   Residential Health Care Facility - SNF
## 7                                          Diagnostic and Treatment Center
## 8                                             Certified Home Health Agency
## 9                                                                  Hospice
## 10                                               Hospital Extension Clinic
## 11                                         Diagnostic and Treatment Center
## 12                                               Hospital Extension Clinic
## 13                                               Hospital Extension Clinic
## 14                                               Hospital Extension Clinic
## 15                                         Diagnostic and Treatment Center
## 16                                               Hospital Extension Clinic
## 17                                         Diagnostic and Treatment Center
## 18                                         Diagnostic and Treatment Center
## 19                                         Diagnostic and Treatment Center
## 20                                               Hospital Extension Clinic
## 21                                         Diagnostic and Treatment Center
## 22                                               Hospital Extension Clinic
## 23                                               Hospital Extension Clinic
## 24                                         Diagnostic and Treatment Center
## 25                                         Diagnostic and Treatment Center
## 26                                         Diagnostic and Treatment Center
## 27                                         Diagnostic and Treatment Center
## 28                                         Diagnostic and Treatment Center
## 29                                         Diagnostic and Treatment Center
## 30                                         Diagnostic and Treatment Center
## 31           School Based Diagnostic and Treatment Center Extension Clinic
## 32                                  Residential Health Care Facility - SNF
## 33                                            Certified Home Health Agency
## 34                                  Residential Health Care Facility - SNF
## 35                                         Diagnostic and Treatment Center
## 36                                               Hospital Extension Clinic
## 37                                               Hospital Extension Clinic
## 38                                         Diagnostic and Treatment Center
## 39                                               Hospital Extension Clinic
## 40                                         Diagnostic and Treatment Center
## 41                        Diagnostic and Treatment Center Extension Clinic
## 42                        Diagnostic and Treatment Center Extension Clinic
## 43                        Diagnostic and Treatment Center Extension Clinic
## 44                        Diagnostic and Treatment Center Extension Clinic
## 45                 Mobile Diagnostic and Treatment Center Extension Clinic
## 46                        Diagnostic and Treatment Center Extension Clinic
## 47                                         Diagnostic and Treatment Center
## 48                                               Hospital Extension Clinic
## 49                                         Diagnostic and Treatment Center
## 50                                  Residential Health Care Facility - SNF
## 51                                  School Based Hospital Extension Clinic
## 52                                                                Hospital
## 53                        Diagnostic and Treatment Center Extension Clinic
## 54                                  School Based Hospital Extension Clinic
## 55                                               Hospital Extension Clinic
## 56                        Diagnostic and Treatment Center Extension Clinic
## 57                                  Residential Health Care Facility - SNF
## 58           School Based Diagnostic and Treatment Center Extension Clinic
## 59                        Diagnostic and Treatment Center Extension Clinic
## 60                                  Residential Health Care Facility - SNF
## 61                        Diagnostic and Treatment Center Extension Clinic
## 62                                               Hospital Extension Clinic
## 63                                               Hospital Extension Clinic
## 64                                         Diagnostic and Treatment Center
## 65                                               Hospital Extension Clinic
## 66                                               Hospital Extension Clinic
## 67                                               Hospital Extension Clinic
## 68                                               Hospital Extension Clinic
## 69                                                                Hospital
## 70                                               Hospital Extension Clinic
## 71                                                                Hospital
## 72                                               Hospital Extension Clinic
## 73                                               Hospital Extension Clinic
## 74                        Diagnostic and Treatment Center Extension Clinic
## 75                        Diagnostic and Treatment Center Extension Clinic
## 76                                  School Based Hospital Extension Clinic
## 77                        Diagnostic and Treatment Center Extension Clinic
## 78       Primary Care Hospital - Critical Access Hospital Extension Clinic
## 79                                  Residential Health Care Facility - SNF
## 80                                               Hospital Extension Clinic
## 81                                         Diagnostic and Treatment Center
## 82                        Diagnostic and Treatment Center Extension Clinic
## 83                                  School Based Hospital Extension Clinic
## 84                                  School Based Hospital Extension Clinic
## 85                        Diagnostic and Treatment Center Extension Clinic
## 86                                         Diagnostic and Treatment Center
## 87                        Diagnostic and Treatment Center Extension Clinic
## 88                                                                Hospital
## 89                        Diagnostic and Treatment Center Extension Clinic
## 90                                               Hospital Extension Clinic
## 91                                  Residential Health Care Facility - SNF
## 92                                  Residential Health Care Facility - SNF
## 93                                               Hospital Extension Clinic
## 94                                         Diagnostic and Treatment Center
## 95                        Diagnostic and Treatment Center Extension Clinic
## 96                        Diagnostic and Treatment Center Extension Clinic
## 97                                            Certified Home Health Agency
## 98                                  Residential Health Care Facility - SNF
## 99                                            Certified Home Health Agency
## 100                                        Diagnostic and Treatment Center
## 101                                        Diagnostic and Treatment Center
## 102                       Diagnostic and Treatment Center Extension Clinic
## 103                                              Hospital Extension Clinic
## 104                                        Diagnostic and Treatment Center
## 105                                              Hospital Extension Clinic
## 106                                                               Hospital
## 107                                              Hospital Extension Clinic
## 108                                        Diagnostic and Treatment Center
## 109                                        Diagnostic and Treatment Center
## 110                                           Certified Home Health Agency
## 111                                Adult Day Health Care Program - Offsite
## 112                                 School Based Hospital Extension Clinic
## 113                                        Diagnostic and Treatment Center
## 114                                              Hospital Extension Clinic
## 115                       Diagnostic and Treatment Center Extension Clinic
## 116                                        Diagnostic and Treatment Center
## 117                                              Hospital Extension Clinic
## 118                                                               Hospital
## 119          School Based Diagnostic and Treatment Center Extension Clinic
## 120                                              Hospital Extension Clinic
## 121          School Based Diagnostic and Treatment Center Extension Clinic
## 122                                              Hospital Extension Clinic
## 123                                              Hospital Extension Clinic
## 124                                              Hospital Extension Clinic
## 125                       Diagnostic and Treatment Center Extension Clinic
## 126                                        Diagnostic and Treatment Center
## 127                                                               Hospital
## 128                                        Diagnostic and Treatment Center
## 129                       Diagnostic and Treatment Center Extension Clinic
## 130                       Diagnostic and Treatment Center Extension Clinic
## 131                                 Residential Health Care Facility - SNF
## 132                                              Hospital Extension Clinic
## 133                                                               Hospital
## 134                                       Mobile Hospital Extension Clinic
## 135                       Diagnostic and Treatment Center Extension Clinic
## 136                                              Hospital Extension Clinic
## 137                                        Diagnostic and Treatment Center
## 138                                              Hospital Extension Clinic
## 139                                        Diagnostic and Treatment Center
## 140                                 Residential Health Care Facility - SNF
## 141                       Diagnostic and Treatment Center Extension Clinic
## 142                                              Hospital Extension Clinic
## 143                                        Diagnostic and Treatment Center
## 144                                              Hospital Extension Clinic
## 145                                 Residential Health Care Facility - SNF
## 146                                           Certified Home Health Agency
## 147                                              Hospital Extension Clinic
## 148                       Diagnostic and Treatment Center Extension Clinic
## 149                                              Hospital Extension Clinic
## 150                                              Hospital Extension Clinic
## 151                                              Hospital Extension Clinic
## 152                                 Residential Health Care Facility - SNF
## 153                                 Residential Health Care Facility - SNF
## 154                                              Hospital Extension Clinic
## 155                       Diagnostic and Treatment Center Extension Clinic
## 156                       Diagnostic and Treatment Center Extension Clinic
## 157                       Diagnostic and Treatment Center Extension Clinic
## 158                                        Diagnostic and Treatment Center
## 159                                        Diagnostic and Treatment Center
## 160                       Diagnostic and Treatment Center Extension Clinic
## 161                                              Hospital Extension Clinic
## 162                                 School Based Hospital Extension Clinic
## 163                                 Residential Health Care Facility - SNF
## 164                       Diagnostic and Treatment Center Extension Clinic
## 165                                                               Hospital
## 166                       Diagnostic and Treatment Center Extension Clinic
## 167                                              Hospital Extension Clinic
## 168                                                               Hospital
## 169                                              Hospital Extension Clinic
## 170                                 School Based Hospital Extension Clinic
## 171                       Diagnostic and Treatment Center Extension Clinic
## 172                                 Residential Health Care Facility - SNF
## 173                                              Hospital Extension Clinic
## 174                                                               Hospital
## 175                                        Diagnostic and Treatment Center
## 176                       Diagnostic and Treatment Center Extension Clinic
## 177                                           Certified Home Health Agency
## 178                                              Hospital Extension Clinic
## 179                                           Certified Home Health Agency
## 180                                              Hospital Extension Clinic
## 181                                           Certified Home Health Agency
## 182                                 School Based Hospital Extension Clinic
## 183                                 Residential Health Care Facility - SNF
## 184                                           Certified Home Health Agency
## 185                                           Certified Home Health Agency
## 186                                                               Hospital
## 187                                 Residential Health Care Facility - SNF
## 188                                 Residential Health Care Facility - SNF
## 189                                              Hospital Extension Clinic
## 190                                 Residential Health Care Facility - SNF
## 191                                                               Hospital
## 192          School Based Diagnostic and Treatment Center Extension Clinic
## 193                       Diagnostic and Treatment Center Extension Clinic
## 194                                 Residential Health Care Facility - SNF
## 195                                              Hospital Extension Clinic
## 196                Mobile Diagnostic and Treatment Center Extension Clinic
## 197      Primary Care Hospital - Critical Access Hospital Extension Clinic
## 198                                              Hospital Extension Clinic
## 199          School Based Diagnostic and Treatment Center Extension Clinic
## 200                                 School Based Hospital Extension Clinic
## 201                       Diagnostic and Treatment Center Extension Clinic
## 202                                              Hospital Extension Clinic
## 203                                           Certified Home Health Agency
## 204                                              Hospital Extension Clinic
## 205                                              Hospital Extension Clinic
## 206      Primary Care Hospital - Critical Access Hospital Extension Clinic
## 207                                              Hospital Extension Clinic
## 208                                              Hospital Extension Clinic
## 209                                        Diagnostic and Treatment Center
## 210                       Diagnostic and Treatment Center Extension Clinic
## 211                       Diagnostic and Treatment Center Extension Clinic
## 212                                        Diagnostic and Treatment Center
## 213                                              Hospital Extension Clinic
## 214                                              Hospital Extension Clinic
## 215                                              Hospital Extension Clinic
## 216                                     Long Term Home Health Care Program
## 217                       Diagnostic and Treatment Center Extension Clinic
## 218                                                               Hospital
## 219                       Diagnostic and Treatment Center Extension Clinic
## 220                                        Diagnostic and Treatment Center
## 221                       Diagnostic and Treatment Center Extension Clinic
## 222                                              Hospital Extension Clinic
## 223                                 School Based Hospital Extension Clinic
## 224                                              Hospital Extension Clinic
## 225                                 School Based Hospital Extension Clinic
## 226                       Diagnostic and Treatment Center Extension Clinic
## 227                                        Diagnostic and Treatment Center
## 228                                              Hospital Extension Clinic
## 229                                              Hospital Extension Clinic
## 230                                              Hospital Extension Clinic
## 231          School Based Diagnostic and Treatment Center Extension Clinic
## 232                       Diagnostic and Treatment Center Extension Clinic
## 233                                              Hospital Extension Clinic
## 234                                                               Hospital
## 235                                 Residential Health Care Facility - SNF
## 236                                 Residential Health Care Facility - SNF
## 237                       Diagnostic and Treatment Center Extension Clinic
## 238                                              Hospital Extension Clinic
## 239                       Diagnostic and Treatment Center Extension Clinic
## 240                                              Hospital Extension Clinic
## 241                                                               Hospital
## 242                                     Long Term Home Health Care Program
## 243                       Diagnostic and Treatment Center Extension Clinic
## 244                                 Residential Health Care Facility - SNF
## 245                                              Hospital Extension Clinic
## 246                                 Residential Health Care Facility - SNF
## 247                                 Residential Health Care Facility - SNF
## 248                                                               Hospital
## 249                       Diagnostic and Treatment Center Extension Clinic
## 250          School Based Diagnostic and Treatment Center Extension Clinic
## 251                                                               Hospital
## 252                       Diagnostic and Treatment Center Extension Clinic
## 253                                        Diagnostic and Treatment Center
## 254                                 Residential Health Care Facility - SNF
## 255                       Diagnostic and Treatment Center Extension Clinic
## 256                                 Residential Health Care Facility - SNF
## 257                                           Certified Home Health Agency
## 258                                           Certified Home Health Agency
## 259                                 Residential Health Care Facility - SNF
## 260                                 Residential Health Care Facility - SNF
## 261                       Diagnostic and Treatment Center Extension Clinic
## 262                       Diagnostic and Treatment Center Extension Clinic
## 263                       Diagnostic and Treatment Center Extension Clinic
## 264                       Diagnostic and Treatment Center Extension Clinic
## 265                                              Hospital Extension Clinic
## 266                                 School Based Hospital Extension Clinic
## 267                                              Hospital Extension Clinic
## 268                                              Hospital Extension Clinic
## 269                                 Residential Health Care Facility - SNF
## 270                       Diagnostic and Treatment Center Extension Clinic
## 271                                 Residential Health Care Facility - SNF
## 272                                 Residential Health Care Facility - SNF
## 273                                Adult Day Health Care Program - Offsite
## 274                                                               Hospital
## 275                                 Residential Health Care Facility - SNF
## 276                                 School Based Hospital Extension Clinic
## 277                                     Long Term Home Health Care Program
## 278                                 Residential Health Care Facility - SNF
## 279                                        Diagnostic and Treatment Center
## 280                                              Hospital Extension Clinic
## 281                                 School Based Hospital Extension Clinic
## 282                       Diagnostic and Treatment Center Extension Clinic
## 283                                              Hospital Extension Clinic
## 284                                                               Hospital
## 285                                              Hospital Extension Clinic
## 286                                                                Hospice
## 287                                        Diagnostic and Treatment Center
## 288                                     Long Term Home Health Care Program
## 289                                              Hospital Extension Clinic
## 290          School Based Diagnostic and Treatment Center Extension Clinic
## 291                       Diagnostic and Treatment Center Extension Clinic
## 292                                              Hospital Extension Clinic
## 293                                 Residential Health Care Facility - SNF
## 294                       Diagnostic and Treatment Center Extension Clinic
## 295                                        Diagnostic and Treatment Center
## 296                       Diagnostic and Treatment Center Extension Clinic
## 297                                        Diagnostic and Treatment Center
## 298                                        Diagnostic and Treatment Center
## 299                                                               Hospital
## 300                                 Residential Health Care Facility - SNF
## 301                Mobile Diagnostic and Treatment Center Extension Clinic
## 302                                              Hospital Extension Clinic
## 303                                              Hospital Extension Clinic
## 304                                       Mobile Hospital Extension Clinic
## 305                                                                Hospice
## 306                                              Hospital Extension Clinic
## 307                                        Diagnostic and Treatment Center
## 308                                 Residential Health Care Facility - SNF
## 309                                              Hospital Extension Clinic
## 310                                                               Hospital
## 311                                        Diagnostic and Treatment Center
## 312                                              Hospital Extension Clinic
## 313                                        Diagnostic and Treatment Center
## 314                                 Residential Health Care Facility - SNF
## 315                                              Hospital Extension Clinic
## 316                       Diagnostic and Treatment Center Extension Clinic
## 317                Mobile Diagnostic and Treatment Center Extension Clinic
## 318                                              Hospital Extension Clinic
## 319                                 Residential Health Care Facility - SNF
## 320                       Diagnostic and Treatment Center Extension Clinic
## 321                                              Hospital Extension Clinic
## 322                                 Residential Health Care Facility - SNF
## 323                                              Hospital Extension Clinic
## 324                                              Hospital Extension Clinic
## 325                                              Hospital Extension Clinic
## 326                                        Diagnostic and Treatment Center
## 327                                 Residential Health Care Facility - SNF
## 328                                        Diagnostic and Treatment Center
## 329                                                               Hospital
## 330                                              Hospital Extension Clinic
## 331                                              Hospital Extension Clinic
## 332                                                               Hospital
## 333                                              Hospital Extension Clinic
## 334                                              Hospital Extension Clinic
## 335                                 Residential Health Care Facility - SNF
## 336                                              Hospital Extension Clinic
## 337                       Diagnostic and Treatment Center Extension Clinic
## 338                                        Diagnostic and Treatment Center
## 339                                              Hospital Extension Clinic
## 340                                              Hospital Extension Clinic
## 341          School Based Diagnostic and Treatment Center Extension Clinic
## 342                       Diagnostic and Treatment Center Extension Clinic
## 343                                              Hospital Extension Clinic
## 344                       Diagnostic and Treatment Center Extension Clinic
## 345                       Diagnostic and Treatment Center Extension Clinic
## 346                                                                Hospice
## 347                                              Hospital Extension Clinic
## 348                                 Residential Health Care Facility - SNF
## 349                                              Hospital Extension Clinic
## 350          School Based Diagnostic and Treatment Center Extension Clinic
## 351                                              Hospital Extension Clinic
## 352                                              Hospital Extension Clinic
## 353          School Based Diagnostic and Treatment Center Extension Clinic
## 354      Primary Care Hospital - Critical Access Hospital Extension Clinic
## 355                                        Diagnostic and Treatment Center
## 356                       Diagnostic and Treatment Center Extension Clinic
## 357                                              Hospital Extension Clinic
## 358          School Based Diagnostic and Treatment Center Extension Clinic
## 359                                              Hospital Extension Clinic
## 360                                              Hospital Extension Clinic
## 361                                       Mobile Hospital Extension Clinic
## 362                                 Residential Health Care Facility - SNF
## 363                                              Hospital Extension Clinic
## 364                       Diagnostic and Treatment Center Extension Clinic
## 365                                                               Hospital
## 366                                 Residential Health Care Facility - SNF
## 367                Mobile Diagnostic and Treatment Center Extension Clinic
## 368                       Diagnostic and Treatment Center Extension Clinic
## 369                                              Hospital Extension Clinic
## 370                       Diagnostic and Treatment Center Extension Clinic
## 371                                              Hospital Extension Clinic
## 372                                              Hospital Extension Clinic
## 373                       Diagnostic and Treatment Center Extension Clinic
## 374                                 Residential Health Care Facility - SNF
## 375                                              Hospital Extension Clinic
## 376                                Adult Day Health Care Program - Offsite
## 377                       Diagnostic and Treatment Center Extension Clinic
## 378                                 Residential Health Care Facility - SNF
## 379                                              Hospital Extension Clinic
## 380                                                               Hospital
## 381                                              Hospital Extension Clinic
## 382                                              Hospital Extension Clinic
## 383                       Diagnostic and Treatment Center Extension Clinic
## 384                                        Diagnostic and Treatment Center
## 385                                        Diagnostic and Treatment Center
## 386                                 School Based Hospital Extension Clinic
## 387                                 Residential Health Care Facility - SNF
## 388                                              Hospital Extension Clinic
## 389                                 School Based Hospital Extension Clinic
## 390                                 Residential Health Care Facility - SNF
## 391                                       Mobile Hospital Extension Clinic
## 392                                        Diagnostic and Treatment Center
## 393                       Diagnostic and Treatment Center Extension Clinic
## 394                                                               Hospital
## 395                       Diagnostic and Treatment Center Extension Clinic
## 396                                                                Hospice
## 397                                              Hospital Extension Clinic
## 398                                              Hospital Extension Clinic
## 399                                           Certified Home Health Agency
## 400                       Primary Care Hospital - Critical Access Hospital
## 401                                 Residential Health Care Facility - SNF
## 402                                        Diagnostic and Treatment Center
## 403                                              Hospital Extension Clinic
## 404                                              Hospital Extension Clinic
## 405                                              Hospital Extension Clinic
## 406                                              Hospital Extension Clinic
## 407                                           Certified Home Health Agency
## 408                       Diagnostic and Treatment Center Extension Clinic
## 409                       Diagnostic and Treatment Center Extension Clinic
## 410                       Diagnostic and Treatment Center Extension Clinic
## 411                                        Diagnostic and Treatment Center
## 412                       Diagnostic and Treatment Center Extension Clinic
## 413                       Diagnostic and Treatment Center Extension Clinic
## 414                                        Diagnostic and Treatment Center
## 415                                 School Based Hospital Extension Clinic
## 416                                              Hospital Extension Clinic
## 417                                              Hospital Extension Clinic
## 418                                              Hospital Extension Clinic
## 419                                     Long Term Home Health Care Program
## 420                                              Hospital Extension Clinic
## 421                       Diagnostic and Treatment Center Extension Clinic
## 422                                              Hospital Extension Clinic
## 423                                              Hospital Extension Clinic
## 424                                              Hospital Extension Clinic
## 425                                        Diagnostic and Treatment Center
## 426                                        Diagnostic and Treatment Center
## 427                                 Residential Health Care Facility - SNF
## 428                                 School Based Hospital Extension Clinic
## 429                                 Residential Health Care Facility - SNF
## 430                                              Hospital Extension Clinic
## 431                                 Residential Health Care Facility - SNF
## 432                                              Hospital Extension Clinic
## 433                                 Residential Health Care Facility - SNF
## 434                                        Diagnostic and Treatment Center
## 435                                                               Hospital
## 436                                 Residential Health Care Facility - SNF
## 437                       Diagnostic and Treatment Center Extension Clinic
## 438                                           Certified Home Health Agency
## 439                                              Hospital Extension Clinic
## 440                                 School Based Hospital Extension Clinic
## 441                                           Certified Home Health Agency
## 442                                 Residential Health Care Facility - SNF
## 443                                 Residential Health Care Facility - SNF
## 444                                           Certified Home Health Agency
## 445          School Based Diagnostic and Treatment Center Extension Clinic
## 446                                        Diagnostic and Treatment Center
## 447                                 School Based Hospital Extension Clinic
## 448                                              Hospital Extension Clinic
## 449                                              Hospital Extension Clinic
## 450                                              Hospital Extension Clinic
## 451                                 Residential Health Care Facility - SNF
## 452                                 School Based Hospital Extension Clinic
## 453                                              Hospital Extension Clinic
## 454                       Diagnostic and Treatment Center Extension Clinic
## 455                                              Hospital Extension Clinic
## 456                                        Diagnostic and Treatment Center
## 457                       Diagnostic and Treatment Center Extension Clinic
## 458                                              Hospital Extension Clinic
## 459                                 Residential Health Care Facility - SNF
## 460                                              Hospital Extension Clinic
## 461                                        Diagnostic and Treatment Center
## 462                       Diagnostic and Treatment Center Extension Clinic
## 463                       Diagnostic and Treatment Center Extension Clinic
## 464                                 Residential Health Care Facility - SNF
## 465                                 Residential Health Care Facility - SNF
## 466  School Based Primary Care Hospital - Critical Access Extension Clinic
## 467                                              Hospital Extension Clinic
## 468                                        Diagnostic and Treatment Center
## 469                                              Hospital Extension Clinic
## 470                                              Hospital Extension Clinic
## 471                                              Hospital Extension Clinic
## 472                                              Hospital Extension Clinic
## 473                       Diagnostic and Treatment Center Extension Clinic
## 474                                              Hospital Extension Clinic
## 475          School Based Diagnostic and Treatment Center Extension Clinic
## 476                                              Hospital Extension Clinic
## 477                       Diagnostic and Treatment Center Extension Clinic
## 478                       Primary Care Hospital - Critical Access Hospital
## 479                                              Hospital Extension Clinic
## 480                       Diagnostic and Treatment Center Extension Clinic
## 481                Mobile Diagnostic and Treatment Center Extension Clinic
## 482                                        Diagnostic and Treatment Center
## 483                                 Residential Health Care Facility - SNF
## 484                                              Hospital Extension Clinic
## 485                                 Residential Health Care Facility - SNF
## 486                                              Hospital Extension Clinic
## 487                                Adult Day Health Care Program - Offsite
## 488                                              Hospital Extension Clinic
## 489                                              Hospital Extension Clinic
## 490                                           Certified Home Health Agency
## 491                                              Hospital Extension Clinic
## 492                                        Diagnostic and Treatment Center
## 493                                              Hospital Extension Clinic
## 494                                                               Hospital
## 495                       Diagnostic and Treatment Center Extension Clinic
## 496                                        Diagnostic and Treatment Center
## 497                                              Hospital Extension Clinic
## 498                                        Diagnostic and Treatment Center
## 499                                 Residential Health Care Facility - SNF
## 500          School Based Diagnostic and Treatment Center Extension Clinic
## 501                                 Residential Health Care Facility - SNF
## 502                       Diagnostic and Treatment Center Extension Clinic
## 503                Mobile Diagnostic and Treatment Center Extension Clinic
## 504                                Adult Day Health Care Program - Offsite
## 505                       Diagnostic and Treatment Center Extension Clinic
## 506                                        Diagnostic and Treatment Center
## 507                                              Hospital Extension Clinic
## 508                                 School Based Hospital Extension Clinic
## 509                                 Residential Health Care Facility - SNF
## 510                                              Hospital Extension Clinic
## 511                                 School Based Hospital Extension Clinic
## 512                                 Residential Health Care Facility - SNF
## 513                                              Hospital Extension Clinic
## 514                                              Hospital Extension Clinic
## 515                                        Diagnostic and Treatment Center
## 516                                        Diagnostic and Treatment Center
## 517          School Based Diagnostic and Treatment Center Extension Clinic
## 518                                 Residential Health Care Facility - SNF
## 519                       Diagnostic and Treatment Center Extension Clinic
## 520                       Diagnostic and Treatment Center Extension Clinic
## 521                                              Hospital Extension Clinic
## 522                                        Diagnostic and Treatment Center
## 523                       Diagnostic and Treatment Center Extension Clinic
## 524                                           Certified Home Health Agency
## 525                       Diagnostic and Treatment Center Extension Clinic
## 526                                 Residential Health Care Facility - SNF
## 527                       Diagnostic and Treatment Center Extension Clinic
## 528                                              Hospital Extension Clinic
## 529                                        Diagnostic and Treatment Center
## 530                       Diagnostic and Treatment Center Extension Clinic
## 531                                              Hospital Extension Clinic
## 532                                 School Based Hospital Extension Clinic
## 533                                 Residential Health Care Facility - SNF
## 534                                              Hospital Extension Clinic
## 535                                              Hospital Extension Clinic
## 536                                 Residential Health Care Facility - SNF
## 537                                 School Based Hospital Extension Clinic
## 538                                              Hospital Extension Clinic
## 539                                              Hospital Extension Clinic
## 540                                              Hospital Extension Clinic
## 541                                              Hospital Extension Clinic
## 542                       Diagnostic and Treatment Center Extension Clinic
## 543                                              Hospital Extension Clinic
## 544                       Diagnostic and Treatment Center Extension Clinic
## 545                                              Hospital Extension Clinic
## 546                                 Residential Health Care Facility - SNF
## 547                                        Diagnostic and Treatment Center
## 548                       Diagnostic and Treatment Center Extension Clinic
## 549          School Based Diagnostic and Treatment Center Extension Clinic
## 550          School Based Diagnostic and Treatment Center Extension Clinic
## 551                       Diagnostic and Treatment Center Extension Clinic
## 552                                              Hospital Extension Clinic
## 553                                        Diagnostic and Treatment Center
## 554                       Diagnostic and Treatment Center Extension Clinic
## 555                                 Residential Health Care Facility - SNF
## 556                       Diagnostic and Treatment Center Extension Clinic
## 557                                              Hospital Extension Clinic
## 558                                 Residential Health Care Facility - SNF
## 559                                              Hospital Extension Clinic
## 560                                        Diagnostic and Treatment Center
## 561                                 School Based Hospital Extension Clinic
## 562                                        Diagnostic and Treatment Center
## 563                Mobile Diagnostic and Treatment Center Extension Clinic
## 564                                                                Hospice
## 565                                              Hospital Extension Clinic
## 566                                 School Based Hospital Extension Clinic
## 567                                                                Hospice
## 568                                 Residential Health Care Facility - SNF
## 569                                              Hospital Extension Clinic
## 570                                 Residential Health Care Facility - SNF
## 571                                 Residential Health Care Facility - SNF
## 572                                        Diagnostic and Treatment Center
## 573                                              Hospital Extension Clinic
## 574                                 Residential Health Care Facility - SNF
## 575                                 Residential Health Care Facility - SNF
## 576                                              Hospital Extension Clinic
## 577          School Based Diagnostic and Treatment Center Extension Clinic
## 578                                              Hospital Extension Clinic
## 579                       Diagnostic and Treatment Center Extension Clinic
## 580                       Diagnostic and Treatment Center Extension Clinic
## 581                                Adult Day Health Care Program - Offsite
## 582                                                               Hospital
## 583                                        Diagnostic and Treatment Center
## 584                       Diagnostic and Treatment Center Extension Clinic
## 585                                 School Based Hospital Extension Clinic
## 586                                        Diagnostic and Treatment Center
## 587                                              Hospital Extension Clinic
## 588                       Diagnostic and Treatment Center Extension Clinic
## 589                       Diagnostic and Treatment Center Extension Clinic
## 590                                        Diagnostic and Treatment Center
## 591                                              Hospital Extension Clinic
## 592                       Diagnostic and Treatment Center Extension Clinic
## 593                       Diagnostic and Treatment Center Extension Clinic
## 594                                              Hospital Extension Clinic
## 595                                 School Based Hospital Extension Clinic
## 596                       Diagnostic and Treatment Center Extension Clinic
## 597                       Diagnostic and Treatment Center Extension Clinic
## 598                                        Diagnostic and Treatment Center
## 599                                 School Based Hospital Extension Clinic
## 600                                              Hospital Extension Clinic
## 601                                              Hospital Extension Clinic
## 602                                              Hospital Extension Clinic
## 603                       Diagnostic and Treatment Center Extension Clinic
## 604                                              Hospital Extension Clinic
## 605                                 Residential Health Care Facility - SNF
## 606                       Diagnostic and Treatment Center Extension Clinic
## 607                                              Hospital Extension Clinic
## 608                                              Hospital Extension Clinic
## 609                       Diagnostic and Treatment Center Extension Clinic
## 610                                              Hospital Extension Clinic
## 611                                        Diagnostic and Treatment Center
## 612                                        Diagnostic and Treatment Center
## 613                                              Hospital Extension Clinic
## 614                                 Residential Health Care Facility - SNF
## 615                                     Long Term Home Health Care Program
## 616                                              Hospital Extension Clinic
## 617          School Based Diagnostic and Treatment Center Extension Clinic
## 618                                     Long Term Home Health Care Program
## 619                       Diagnostic and Treatment Center Extension Clinic
## 620                                              Hospital Extension Clinic
## 621                                 Residential Health Care Facility - SNF
## 622                       Primary Care Hospital - Critical Access Hospital
## 623                                              Hospital Extension Clinic
## 624                                 School Based Hospital Extension Clinic
## 625                                           Certified Home Health Agency
## 626                                              Hospital Extension Clinic
## 627                                              Hospital Extension Clinic
## 628                                 Residential Health Care Facility - SNF
## 629                                        Diagnostic and Treatment Center
## 630                                           Certified Home Health Agency
## 631                                        Diagnostic and Treatment Center
## 632                                              Hospital Extension Clinic
## 633                                              Hospital Extension Clinic
## 634                                              Hospital Extension Clinic
## 635                                        Diagnostic and Treatment Center
## 636                                        Diagnostic and Treatment Center
## 637                                 Residential Health Care Facility - SNF
## 638                       Diagnostic and Treatment Center Extension Clinic
## 639                                              Hospital Extension Clinic
## 640                                        Diagnostic and Treatment Center
## 641                                        Diagnostic and Treatment Center
## 642                                 School Based Hospital Extension Clinic
## 643                       Diagnostic and Treatment Center Extension Clinic
## 644                       Diagnostic and Treatment Center Extension Clinic
## 645          School Based Diagnostic and Treatment Center Extension Clinic
## 646                                 School Based Hospital Extension Clinic
## 647          School Based Diagnostic and Treatment Center Extension Clinic
## 648                                 Residential Health Care Facility - SNF
## 649                                 Residential Health Care Facility - SNF
## 650                                 Residential Health Care Facility - SNF
## 651                       Diagnostic and Treatment Center Extension Clinic
## 652                                        Diagnostic and Treatment Center
## 653                                              Hospital Extension Clinic
## 654                                              Hospital Extension Clinic
## 655                                 Residential Health Care Facility - SNF
## 656                                              Hospital Extension Clinic
## 657                                 Residential Health Care Facility - SNF
## 658                                 Residential Health Care Facility - SNF
## 659                                 School Based Hospital Extension Clinic
## 660                       Diagnostic and Treatment Center Extension Clinic
## 661                       Diagnostic and Treatment Center Extension Clinic
## 662                                                               Hospital
## 663                                                                Hospice
## 664                                              Hospital Extension Clinic
## 665                       Diagnostic and Treatment Center Extension Clinic
## 666                                                                Hospice
## 667                                              Hospital Extension Clinic
## 668                                 Residential Health Care Facility - SNF
## 669                                              Hospital Extension Clinic
## 670                       Diagnostic and Treatment Center Extension Clinic
## 671                                              Hospital Extension Clinic
## 672                                                               Hospital
## 673                                 School Based Hospital Extension Clinic
## 674                                 Residential Health Care Facility - SNF
## 675                                        Diagnostic and Treatment Center
## 676                                              Hospital Extension Clinic
## 677                                        Diagnostic and Treatment Center
## 678                                           Certified Home Health Agency
## 679                                              Hospital Extension Clinic
## 680                                 Residential Health Care Facility - SNF
## 681                                              Hospital Extension Clinic
## 682                                     Long Term Home Health Care Program
## 683                                              Hospital Extension Clinic
## 684                       Diagnostic and Treatment Center Extension Clinic
## 685                       Diagnostic and Treatment Center Extension Clinic
## 686                                                               Hospital
## 687                                              Hospital Extension Clinic
## 688                                 School Based Hospital Extension Clinic
## 689          School Based Diagnostic and Treatment Center Extension Clinic
## 690                                 Residential Health Care Facility - SNF
## 691                       Diagnostic and Treatment Center Extension Clinic
## 692                       Diagnostic and Treatment Center Extension Clinic
## 693                                 Residential Health Care Facility - SNF
## 694                                 School Based Hospital Extension Clinic
## 695                       Diagnostic and Treatment Center Extension Clinic
## 696                                 Residential Health Care Facility - SNF
## 697                                              Hospital Extension Clinic
## 698                                              Hospital Extension Clinic
## 699                                              Hospital Extension Clinic
## 700                                        Diagnostic and Treatment Center
## 701                                 Residential Health Care Facility - SNF
## 702                                 Residential Health Care Facility - SNF
## 703                                              Hospital Extension Clinic
## 704                       Diagnostic and Treatment Center Extension Clinic
## 705                       Diagnostic and Treatment Center Extension Clinic
## 706                                              Hospital Extension Clinic
## 707                                        Diagnostic and Treatment Center
## 708                                                               Hospital
## 709                       Diagnostic and Treatment Center Extension Clinic
## 710                                                               Hospital
## 711          School Based Diagnostic and Treatment Center Extension Clinic
## 712                                              Hospital Extension Clinic
## 713                       Diagnostic and Treatment Center Extension Clinic
## 714                                 Residential Health Care Facility - SNF
## 715                                        Diagnostic and Treatment Center
## 716                                Adult Day Health Care Program - Offsite
## 717                                              Hospital Extension Clinic
## 718                                              Hospital Extension Clinic
## 719          School Based Diagnostic and Treatment Center Extension Clinic
## 720                       Diagnostic and Treatment Center Extension Clinic
## 721                       Diagnostic and Treatment Center Extension Clinic
## 722                                        Diagnostic and Treatment Center
## 723                                        Diagnostic and Treatment Center
## 724                                 Residential Health Care Facility - SNF
## 725                       Diagnostic and Treatment Center Extension Clinic
## 726                                              Hospital Extension Clinic
## 727          School Based Diagnostic and Treatment Center Extension Clinic
## 728                                        Diagnostic and Treatment Center
## 729                                        Diagnostic and Treatment Center
## 730                                              Hospital Extension Clinic
## 731                       Diagnostic and Treatment Center Extension Clinic
## 732                                              Hospital Extension Clinic
## 733                                              Hospital Extension Clinic
## 734                                              Hospital Extension Clinic
## 735                                        Diagnostic and Treatment Center
## 736                                 Residential Health Care Facility - SNF
## 737                                        Diagnostic and Treatment Center
## 738                                              Hospital Extension Clinic
## 739          School Based Diagnostic and Treatment Center Extension Clinic
## 740                                 School Based Hospital Extension Clinic
## 741                                 Residential Health Care Facility - SNF
## 742                                 Residential Health Care Facility - SNF
## 743                                              Hospital Extension Clinic
## 744                                              Hospital Extension Clinic
## 745                                        Diagnostic and Treatment Center
## 746                                 Residential Health Care Facility - SNF
## 747                                 Residential Health Care Facility - SNF
## 748                                           Certified Home Health Agency
## 749                       Diagnostic and Treatment Center Extension Clinic
## 750                                        Diagnostic and Treatment Center
## 751                       Diagnostic and Treatment Center Extension Clinic
## 752                                                               Hospital
## 753                                              Hospital Extension Clinic
## 754                                              Hospital Extension Clinic
## 755                                              Hospital Extension Clinic
## 756      Primary Care Hospital - Critical Access Hospital Extension Clinic
## 757                                        Diagnostic and Treatment Center
## 758                                              Hospital Extension Clinic
## 759                                Adult Day Health Care Program - Offsite
## 760                       Diagnostic and Treatment Center Extension Clinic
## 761                                              Hospital Extension Clinic
## 762                Mobile Diagnostic and Treatment Center Extension Clinic
## 763                                        Diagnostic and Treatment Center
## 764                       Diagnostic and Treatment Center Extension Clinic
## 765                                              Hospital Extension Clinic
## 766                                        Diagnostic and Treatment Center
## 767                                              Hospital Extension Clinic
## 768                       Diagnostic and Treatment Center Extension Clinic
## 769                                 Residential Health Care Facility - SNF
## 770                                           Certified Home Health Agency
## 771                                              Hospital Extension Clinic
## 772                       Diagnostic and Treatment Center Extension Clinic
## 773                                                               Hospital
## 774                                              Hospital Extension Clinic
## 775                       Diagnostic and Treatment Center Extension Clinic
## 776                                              Hospital Extension Clinic
## 777                                              Hospital Extension Clinic
## 778                                              Hospital Extension Clinic
## 779                                        Diagnostic and Treatment Center
## 780                                              Hospital Extension Clinic
## 781                                              Hospital Extension Clinic
## 782                                              Hospital Extension Clinic
## 783                                 Residential Health Care Facility - SNF
## 784                                              Hospital Extension Clinic
## 785                                 School Based Hospital Extension Clinic
## 786                                                               Hospital
## 787                       Diagnostic and Treatment Center Extension Clinic
## 788                                 Residential Health Care Facility - SNF
## 789          School Based Diagnostic and Treatment Center Extension Clinic
## 790                                 School Based Hospital Extension Clinic
## 791                                              Hospital Extension Clinic
## 792                       Diagnostic and Treatment Center Extension Clinic
## 793                       Diagnostic and Treatment Center Extension Clinic
## 794                                                               Hospital
## 795                                              Hospital Extension Clinic
## 796                                        Diagnostic and Treatment Center
## 797                                              Hospital Extension Clinic
## 798                                 Residential Health Care Facility - SNF
## 799                                              Hospital Extension Clinic
## 800                                        Diagnostic and Treatment Center
## 801                                 Residential Health Care Facility - SNF
## 802                                              Hospital Extension Clinic
## 803                                 School Based Hospital Extension Clinic
## 804                                 Residential Health Care Facility - SNF
## 805                       Diagnostic and Treatment Center Extension Clinic
## 806                                 Residential Health Care Facility - SNF
## 807          School Based Diagnostic and Treatment Center Extension Clinic
## 808                                              Hospital Extension Clinic
## 809                       Diagnostic and Treatment Center Extension Clinic
## 810                       Diagnostic and Treatment Center Extension Clinic
## 811                                              Hospital Extension Clinic
## 812                                 Residential Health Care Facility - SNF
## 813                                 Residential Health Care Facility - SNF
## 814                                        Diagnostic and Treatment Center
## 815                       Diagnostic and Treatment Center Extension Clinic
## 816                       Diagnostic and Treatment Center Extension Clinic
## 817                                              Hospital Extension Clinic
## 818                                              Hospital Extension Clinic
## 819                                 Residential Health Care Facility - SNF
## 820                                 Residential Health Care Facility - SNF
## 821                       Diagnostic and Treatment Center Extension Clinic
## 822                                              Hospital Extension Clinic
## 823                                     Long Term Home Health Care Program
## 824                                              Hospital Extension Clinic
## 825                                 Residential Health Care Facility - SNF
## 826                                           Certified Home Health Agency
## 827                                 Residential Health Care Facility - SNF
## 828                                        Diagnostic and Treatment Center
## 829                Mobile Diagnostic and Treatment Center Extension Clinic
## 830                                        Diagnostic and Treatment Center
## 831                                              Hospital Extension Clinic
## 832                                              Hospital Extension Clinic
## 833                                 School Based Hospital Extension Clinic
## 834          School Based Diagnostic and Treatment Center Extension Clinic
## 835                       Diagnostic and Treatment Center Extension Clinic
## 836                                           Certified Home Health Agency
## 837                                                               Hospital
## 838                                        Diagnostic and Treatment Center
## 839                                              Hospital Extension Clinic
## 840                                        Diagnostic and Treatment Center
## 841                                              Hospital Extension Clinic
## 842                                 Residential Health Care Facility - SNF
## 843                                              Hospital Extension Clinic
## 844                                     Long Term Home Health Care Program
## 845                                              Hospital Extension Clinic
## 846          School Based Diagnostic and Treatment Center Extension Clinic
## 847                                           Certified Home Health Agency
## 848                                              Hospital Extension Clinic
## 849                       Diagnostic and Treatment Center Extension Clinic
## 850                                        Diagnostic and Treatment Center
## 851                                        Diagnostic and Treatment Center
## 852                                 Residential Health Care Facility - SNF
## 853                                              Hospital Extension Clinic
## 854                                 Residential Health Care Facility - SNF
## 855                                           Certified Home Health Agency
## 856                                                               Hospital
## 857                       Diagnostic and Treatment Center Extension Clinic
## 858                                 Residential Health Care Facility - SNF
## 859                                              Hospital Extension Clinic
## 860                                              Hospital Extension Clinic
## 861                                        Diagnostic and Treatment Center
## 862                                 School Based Hospital Extension Clinic
## 863                                 Residential Health Care Facility - SNF
## 864                       Diagnostic and Treatment Center Extension Clinic
## 865                       Diagnostic and Treatment Center Extension Clinic
## 866                       Diagnostic and Treatment Center Extension Clinic
## 867                       Diagnostic and Treatment Center Extension Clinic
## 868                                 Residential Health Care Facility - SNF
## 869                                                               Hospital
## 870                                              Hospital Extension Clinic
## 871                       Diagnostic and Treatment Center Extension Clinic
## 872                       Diagnostic and Treatment Center Extension Clinic
## 873          School Based Diagnostic and Treatment Center Extension Clinic
## 874                                              Hospital Extension Clinic
## 875                                              Hospital Extension Clinic
## 876                       Diagnostic and Treatment Center Extension Clinic
## 877                                              Hospital Extension Clinic
## 878                                           Certified Home Health Agency
## 879                                              Hospital Extension Clinic
## 880                                        Diagnostic and Treatment Center
## 881                                              Hospital Extension Clinic
## 882                                              Hospital Extension Clinic
## 883                                                               Hospital
## 884                                              Hospital Extension Clinic
## 885                                        Diagnostic and Treatment Center
## 886                                 Residential Health Care Facility - SNF
## 887                                                               Hospital
## 888                       Diagnostic and Treatment Center Extension Clinic
## 889                                              Hospital Extension Clinic
## 890                                 Residential Health Care Facility - SNF
## 891                       Diagnostic and Treatment Center Extension Clinic
## 892                                              Hospital Extension Clinic
## 893          School Based Diagnostic and Treatment Center Extension Clinic
## 894                                              Hospital Extension Clinic
## 895                                                               Hospital
## 896                       Diagnostic and Treatment Center Extension Clinic
## 897                       Diagnostic and Treatment Center Extension Clinic
## 898                                        Diagnostic and Treatment Center
## 899                                                               Hospital
## 900                                        Diagnostic and Treatment Center
## 901                                              Hospital Extension Clinic
## 902                       Diagnostic and Treatment Center Extension Clinic
## 903                                        Diagnostic and Treatment Center
## 904                                              Hospital Extension Clinic
## 905                                     Long Term Home Health Care Program
## 906                                        Diagnostic and Treatment Center
## 907                                              Hospital Extension Clinic
## 908                                        Diagnostic and Treatment Center
## 909                                              Hospital Extension Clinic
## 910                                 Residential Health Care Facility - SNF
## 911                                              Hospital Extension Clinic
## 912          School Based Diagnostic and Treatment Center Extension Clinic
## 913                       Diagnostic and Treatment Center Extension Clinic
## 914                       Diagnostic and Treatment Center Extension Clinic
## 915                       Diagnostic and Treatment Center Extension Clinic
## 916                       Diagnostic and Treatment Center Extension Clinic
## 917                       Diagnostic and Treatment Center Extension Clinic
## 918                       Diagnostic and Treatment Center Extension Clinic
## 919                                                               Hospital
## 920                                              Hospital Extension Clinic
## 921                                              Hospital Extension Clinic
## 922          School Based Diagnostic and Treatment Center Extension Clinic
## 923                                                               Hospital
## 924                                              Hospital Extension Clinic
## 925                                 Residential Health Care Facility - SNF
## 926                                 Residential Health Care Facility - SNF
## 927                                 School Based Hospital Extension Clinic
## 928                                 Residential Health Care Facility - SNF
## 929                       Diagnostic and Treatment Center Extension Clinic
## 930                                              Hospital Extension Clinic
## 931                                 School Based Hospital Extension Clinic
## 932                                 School Based Hospital Extension Clinic
## 933                                              Hospital Extension Clinic
## 934                       Diagnostic and Treatment Center Extension Clinic
## 935                                              Hospital Extension Clinic
## 936                       Diagnostic and Treatment Center Extension Clinic
## 937                                        Diagnostic and Treatment Center
## 938                       Diagnostic and Treatment Center Extension Clinic
## 939                                        Diagnostic and Treatment Center
## 940                                           Certified Home Health Agency
## 941                                              Hospital Extension Clinic
## 942                                        Diagnostic and Treatment Center
## 943                                              Hospital Extension Clinic
## 944                                 Residential Health Care Facility - SNF
## 945                                 School Based Hospital Extension Clinic
## 946                                              Hospital Extension Clinic
## 947                                              Hospital Extension Clinic
## 948                                 Residential Health Care Facility - SNF
## 949                                        Diagnostic and Treatment Center
## 950                                              Hospital Extension Clinic
## 951                                              Hospital Extension Clinic
## 952                                              Hospital Extension Clinic
## 953                                                               Hospital
## 954                       Diagnostic and Treatment Center Extension Clinic
## 955                       Diagnostic and Treatment Center Extension Clinic
## 956                       Diagnostic and Treatment Center Extension Clinic
## 957                                 Residential Health Care Facility - SNF
## 958                                              Hospital Extension Clinic
## 959                                 Residential Health Care Facility - SNF
## 960                                        Diagnostic and Treatment Center
## 961                       Diagnostic and Treatment Center Extension Clinic
## 962                                 Residential Health Care Facility - SNF
## 963                                        Diagnostic and Treatment Center
## 964                                        Diagnostic and Treatment Center
## 965                       Diagnostic and Treatment Center Extension Clinic
## 966                                        Diagnostic and Treatment Center
## 967                                              Hospital Extension Clinic
## 968                                 Residential Health Care Facility - SNF
## 969                                 Residential Health Care Facility - SNF
## 970                                 Residential Health Care Facility - SNF
## 971                                 Residential Health Care Facility - SNF
## 972                                              Hospital Extension Clinic
## 973                                              Hospital Extension Clinic
## 974                       Diagnostic and Treatment Center Extension Clinic
## 975                                              Hospital Extension Clinic
## 976                                 School Based Hospital Extension Clinic
## 977                                           Certified Home Health Agency
## 978                                                               Hospital
## 979                                              Hospital Extension Clinic
## 980                                              Hospital Extension Clinic
## 981                                              Hospital Extension Clinic
## 982                                              Hospital Extension Clinic
## 983                                        Diagnostic and Treatment Center
## 984          School Based Diagnostic and Treatment Center Extension Clinic
## 985                                        Diagnostic and Treatment Center
## 986                                              Hospital Extension Clinic
## 987                                        Diagnostic and Treatment Center
## 988                                        Diagnostic and Treatment Center
## 989                                              Hospital Extension Clinic
## 990                       Diagnostic and Treatment Center Extension Clinic
## 991                       Diagnostic and Treatment Center Extension Clinic
## 992                       Diagnostic and Treatment Center Extension Clinic
## 993          School Based Diagnostic and Treatment Center Extension Clinic
## 994                                              Hospital Extension Clinic
## 995                                        Diagnostic and Treatment Center
## 996          School Based Diagnostic and Treatment Center Extension Clinic
## 997                                              Hospital Extension Clinic
## 998                                        Diagnostic and Treatment Center
## 999                                              Hospital Extension Clinic
## 1000                                School Based Hospital Extension Clinic
## 1001                                                              Hospital
## 1002                                       Diagnostic and Treatment Center
## 1003                                             Hospital Extension Clinic
## 1004                                Residential Health Care Facility - SNF
## 1005                                Residential Health Care Facility - SNF
## 1006                                Residential Health Care Facility - SNF
## 1007                                       Diagnostic and Treatment Center
## 1008                      Diagnostic and Treatment Center Extension Clinic
## 1009                                Residential Health Care Facility - SNF
## 1010                                             Hospital Extension Clinic
## 1011                                       Diagnostic and Treatment Center
## 1012                      Primary Care Hospital - Critical Access Hospital
## 1013                      Diagnostic and Treatment Center Extension Clinic
## 1014                                             Hospital Extension Clinic
## 1015                                             Hospital Extension Clinic
## 1016                                                              Hospital
## 1017                                       Diagnostic and Treatment Center
## 1018                                             Hospital Extension Clinic
## 1019                                Residential Health Care Facility - SNF
## 1020                      Diagnostic and Treatment Center Extension Clinic
## 1021                                             Hospital Extension Clinic
## 1022                                             Hospital Extension Clinic
## 1023                                             Hospital Extension Clinic
## 1024                                       Diagnostic and Treatment Center
## 1025                                Residential Health Care Facility - SNF
## 1026                      Diagnostic and Treatment Center Extension Clinic
## 1027                                Residential Health Care Facility - SNF
## 1028                                Residential Health Care Facility - SNF
## 1029                                             Hospital Extension Clinic
## 1030                                       Diagnostic and Treatment Center
## 1031         School Based Diagnostic and Treatment Center Extension Clinic
## 1032                      Diagnostic and Treatment Center Extension Clinic
## 1033                                             Hospital Extension Clinic
## 1034                                Residential Health Care Facility - SNF
## 1035                                       Diagnostic and Treatment Center
## 1036                                Residential Health Care Facility - SNF
## 1037         School Based Diagnostic and Treatment Center Extension Clinic
## 1038                                             Hospital Extension Clinic
## 1039                      Diagnostic and Treatment Center Extension Clinic
## 1040         School Based Diagnostic and Treatment Center Extension Clinic
## 1041                                Residential Health Care Facility - SNF
## 1042                                             Hospital Extension Clinic
## 1043                                Residential Health Care Facility - SNF
## 1044                                    Long Term Home Health Care Program
## 1045                                Residential Health Care Facility - SNF
## 1046                               Adult Day Health Care Program - Offsite
## 1047                      Diagnostic and Treatment Center Extension Clinic
## 1048                                School Based Hospital Extension Clinic
## 1049                                             Hospital Extension Clinic
## 1050         School Based Diagnostic and Treatment Center Extension Clinic
## 1051                                    Long Term Home Health Care Program
## 1052                                                              Hospital
## 1053                                       Diagnostic and Treatment Center
## 1054     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1055                      Diagnostic and Treatment Center Extension Clinic
## 1056                                             Hospital Extension Clinic
## 1057                                Residential Health Care Facility - SNF
## 1058                                       Diagnostic and Treatment Center
## 1059                                             Hospital Extension Clinic
## 1060                                          Certified Home Health Agency
## 1061                      Diagnostic and Treatment Center Extension Clinic
## 1062                                             Hospital Extension Clinic
## 1063                                             Hospital Extension Clinic
## 1064                                Residential Health Care Facility - SNF
## 1065                                Residential Health Care Facility - SNF
## 1066                                       Diagnostic and Treatment Center
## 1067                                Residential Health Care Facility - SNF
## 1068                                                              Hospital
## 1069                                      Mobile Hospital Extension Clinic
## 1070                                             Hospital Extension Clinic
## 1071                                             Hospital Extension Clinic
## 1072                                School Based Hospital Extension Clinic
## 1073                                             Hospital Extension Clinic
## 1074                                School Based Hospital Extension Clinic
## 1075                                                              Hospital
## 1076                                             Hospital Extension Clinic
## 1077                                       Diagnostic and Treatment Center
## 1078                                    Long Term Home Health Care Program
## 1079                      Diagnostic and Treatment Center Extension Clinic
## 1080                                      Mobile Hospital Extension Clinic
## 1081         School Based Diagnostic and Treatment Center Extension Clinic
## 1082                                       Diagnostic and Treatment Center
## 1083                                             Hospital Extension Clinic
## 1084                                Residential Health Care Facility - SNF
## 1085                                Residential Health Care Facility - SNF
## 1086                                             Hospital Extension Clinic
## 1087                                             Hospital Extension Clinic
## 1088                                       Diagnostic and Treatment Center
## 1089                                       Diagnostic and Treatment Center
## 1090         School Based Diagnostic and Treatment Center Extension Clinic
## 1091                                Residential Health Care Facility - SNF
## 1092                                             Hospital Extension Clinic
## 1093                      Diagnostic and Treatment Center Extension Clinic
## 1094                                Residential Health Care Facility - SNF
## 1095                                                              Hospital
## 1096                      Diagnostic and Treatment Center Extension Clinic
## 1097                      Diagnostic and Treatment Center Extension Clinic
## 1098                      Diagnostic and Treatment Center Extension Clinic
## 1099                                       Diagnostic and Treatment Center
## 1100                                             Hospital Extension Clinic
## 1101                                             Hospital Extension Clinic
## 1102                                             Hospital Extension Clinic
## 1103                                             Hospital Extension Clinic
## 1104                                Residential Health Care Facility - SNF
## 1105                      Diagnostic and Treatment Center Extension Clinic
## 1106                                             Hospital Extension Clinic
## 1107                                School Based Hospital Extension Clinic
## 1108                                Residential Health Care Facility - SNF
## 1109                                             Hospital Extension Clinic
## 1110                      Diagnostic and Treatment Center Extension Clinic
## 1111                                             Hospital Extension Clinic
## 1112                                          Certified Home Health Agency
## 1113                                          Certified Home Health Agency
## 1114                      Diagnostic and Treatment Center Extension Clinic
## 1115                                             Hospital Extension Clinic
## 1116                                          Certified Home Health Agency
## 1117                      Diagnostic and Treatment Center Extension Clinic
## 1118                                             Hospital Extension Clinic
## 1119                                       Diagnostic and Treatment Center
## 1120                      Diagnostic and Treatment Center Extension Clinic
## 1121         School Based Diagnostic and Treatment Center Extension Clinic
## 1122                      Diagnostic and Treatment Center Extension Clinic
## 1123                               Adult Day Health Care Program - Offsite
## 1124                                Residential Health Care Facility - SNF
## 1125                                             Hospital Extension Clinic
## 1126                                       Diagnostic and Treatment Center
## 1127                                             Hospital Extension Clinic
## 1128                      Diagnostic and Treatment Center Extension Clinic
## 1129                                             Hospital Extension Clinic
## 1130                                             Hospital Extension Clinic
## 1131                                School Based Hospital Extension Clinic
## 1132                                             Hospital Extension Clinic
## 1133                                          Certified Home Health Agency
## 1134                                             Hospital Extension Clinic
## 1135                                       Diagnostic and Treatment Center
## 1136                      Diagnostic and Treatment Center Extension Clinic
## 1137                                             Hospital Extension Clinic
## 1138                                             Hospital Extension Clinic
## 1139                                             Hospital Extension Clinic
## 1140                                             Hospital Extension Clinic
## 1141                                       Diagnostic and Treatment Center
## 1142                                Residential Health Care Facility - SNF
## 1143                                                              Hospital
## 1144                                Residential Health Care Facility - SNF
## 1145                                             Hospital Extension Clinic
## 1146                                                              Hospital
## 1147                                Residential Health Care Facility - SNF
## 1148                                             Hospital Extension Clinic
## 1149                      Diagnostic and Treatment Center Extension Clinic
## 1150                                                              Hospital
## 1151                      Diagnostic and Treatment Center Extension Clinic
## 1152                                       Diagnostic and Treatment Center
## 1153                                Residential Health Care Facility - SNF
## 1154                                Residential Health Care Facility - SNF
## 1155                                Residential Health Care Facility - SNF
## 1156                                Residential Health Care Facility - SNF
## 1157                                                              Hospital
## 1158                                             Hospital Extension Clinic
## 1159                                Residential Health Care Facility - SNF
## 1160                                             Hospital Extension Clinic
## 1161                                Residential Health Care Facility - SNF
## 1162                                Residential Health Care Facility - SNF
## 1163                      Diagnostic and Treatment Center Extension Clinic
## 1164                                       Diagnostic and Treatment Center
## 1165                      Diagnostic and Treatment Center Extension Clinic
## 1166                                             Hospital Extension Clinic
## 1167                                Residential Health Care Facility - SNF
## 1168                                Residential Health Care Facility - SNF
## 1169                      Diagnostic and Treatment Center Extension Clinic
## 1170 School Based Primary Care Hospital - Critical Access Extension Clinic
## 1171                                School Based Hospital Extension Clinic
## 1172                      Diagnostic and Treatment Center Extension Clinic
## 1173                                             Hospital Extension Clinic
## 1174                               Adult Day Health Care Program - Offsite
## 1175                                       Diagnostic and Treatment Center
## 1176                                       Diagnostic and Treatment Center
## 1177                                Residential Health Care Facility - SNF
## 1178                                                              Hospital
## 1179                                                              Hospital
## 1180                                             Hospital Extension Clinic
## 1181                                                              Hospital
## 1182                                             Hospital Extension Clinic
## 1183                                             Hospital Extension Clinic
## 1184                      Diagnostic and Treatment Center Extension Clinic
## 1185                                Residential Health Care Facility - SNF
## 1186                      Diagnostic and Treatment Center Extension Clinic
## 1187                                                              Hospital
## 1188                      Diagnostic and Treatment Center Extension Clinic
## 1189                                Residential Health Care Facility - SNF
## 1190                                             Hospital Extension Clinic
## 1191                                Residential Health Care Facility - SNF
## 1192                                             Hospital Extension Clinic
## 1193                                             Hospital Extension Clinic
## 1194                      Diagnostic and Treatment Center Extension Clinic
## 1195                                Residential Health Care Facility - SNF
## 1196                                Residential Health Care Facility - SNF
## 1197                                       Diagnostic and Treatment Center
## 1198                      Diagnostic and Treatment Center Extension Clinic
## 1199                      Diagnostic and Treatment Center Extension Clinic
## 1200                                             Hospital Extension Clinic
## 1201                                Residential Health Care Facility - SNF
## 1202                                             Hospital Extension Clinic
## 1203                                Residential Health Care Facility - SNF
## 1204                                       Diagnostic and Treatment Center
## 1205                                             Hospital Extension Clinic
## 1206                      Diagnostic and Treatment Center Extension Clinic
## 1207                                       Diagnostic and Treatment Center
## 1208                      Diagnostic and Treatment Center Extension Clinic
## 1209                      Diagnostic and Treatment Center Extension Clinic
## 1210                                       Diagnostic and Treatment Center
## 1211                                Residential Health Care Facility - SNF
## 1212                      Diagnostic and Treatment Center Extension Clinic
## 1213                      Diagnostic and Treatment Center Extension Clinic
## 1214                                             Hospital Extension Clinic
## 1215                                School Based Hospital Extension Clinic
## 1216                                             Hospital Extension Clinic
## 1217                      Diagnostic and Treatment Center Extension Clinic
## 1218                      Diagnostic and Treatment Center Extension Clinic
## 1219                                       Diagnostic and Treatment Center
## 1220                                Residential Health Care Facility - SNF
## 1221                                             Hospital Extension Clinic
## 1222                                             Hospital Extension Clinic
## 1223                                             Hospital Extension Clinic
## 1224                                             Hospital Extension Clinic
## 1225                                School Based Hospital Extension Clinic
## 1226                                Residential Health Care Facility - SNF
## 1227                                School Based Hospital Extension Clinic
## 1228                                School Based Hospital Extension Clinic
## 1229                                       Diagnostic and Treatment Center
## 1230                                       Diagnostic and Treatment Center
## 1231                                             Hospital Extension Clinic
## 1232                                Residential Health Care Facility - SNF
## 1233                                       Diagnostic and Treatment Center
## 1234                      Diagnostic and Treatment Center Extension Clinic
## 1235                                             Hospital Extension Clinic
## 1236                      Diagnostic and Treatment Center Extension Clinic
## 1237                                             Hospital Extension Clinic
## 1238                                             Hospital Extension Clinic
## 1239                                Residential Health Care Facility - SNF
## 1240                                Residential Health Care Facility - SNF
## 1241                                             Hospital Extension Clinic
## 1242                                Residential Health Care Facility - SNF
## 1243                      Diagnostic and Treatment Center Extension Clinic
## 1244                                             Hospital Extension Clinic
## 1245                                             Hospital Extension Clinic
## 1246                                             Hospital Extension Clinic
## 1247                                Residential Health Care Facility - SNF
## 1248                                             Hospital Extension Clinic
## 1249         School Based Diagnostic and Treatment Center Extension Clinic
## 1250                                Residential Health Care Facility - SNF
## 1251                      Diagnostic and Treatment Center Extension Clinic
## 1252                                                              Hospital
## 1253                                             Hospital Extension Clinic
## 1254                      Diagnostic and Treatment Center Extension Clinic
## 1255                                                              Hospital
## 1256                                                              Hospital
## 1257                      Diagnostic and Treatment Center Extension Clinic
## 1258                                       Diagnostic and Treatment Center
## 1259                                                              Hospital
## 1260                                School Based Hospital Extension Clinic
## 1261                                             Hospital Extension Clinic
## 1262                                             Hospital Extension Clinic
## 1263                                             Hospital Extension Clinic
## 1264                                             Hospital Extension Clinic
## 1265                                             Hospital Extension Clinic
## 1266                      Diagnostic and Treatment Center Extension Clinic
## 1267                                          Certified Home Health Agency
## 1268                                                              Hospital
## 1269                      Diagnostic and Treatment Center Extension Clinic
## 1270                                       Diagnostic and Treatment Center
## 1271                      Diagnostic and Treatment Center Extension Clinic
## 1272                                             Hospital Extension Clinic
## 1273                                                              Hospital
## 1274                                       Diagnostic and Treatment Center
## 1275                                       Diagnostic and Treatment Center
## 1276               Mobile Diagnostic and Treatment Center Extension Clinic
## 1277                                             Hospital Extension Clinic
## 1278                                             Hospital Extension Clinic
## 1279                                             Hospital Extension Clinic
## 1280                                             Hospital Extension Clinic
## 1281         School Based Diagnostic and Treatment Center Extension Clinic
## 1282                      Diagnostic and Treatment Center Extension Clinic
## 1283                      Primary Care Hospital - Critical Access Hospital
## 1284                                School Based Hospital Extension Clinic
## 1285                                Residential Health Care Facility - SNF
## 1286                                       Diagnostic and Treatment Center
## 1287                      Diagnostic and Treatment Center Extension Clinic
## 1288                                             Hospital Extension Clinic
## 1289                      Diagnostic and Treatment Center Extension Clinic
## 1290                                       Diagnostic and Treatment Center
## 1291                                             Hospital Extension Clinic
## 1292                                Residential Health Care Facility - SNF
## 1293                                             Hospital Extension Clinic
## 1294               Mobile Diagnostic and Treatment Center Extension Clinic
## 1295                                Residential Health Care Facility - SNF
## 1296                                School Based Hospital Extension Clinic
## 1297                                       Diagnostic and Treatment Center
## 1298                                             Hospital Extension Clinic
## 1299                                Residential Health Care Facility - SNF
## 1300                      Diagnostic and Treatment Center Extension Clinic
## 1301                                                              Hospital
## 1302                      Diagnostic and Treatment Center Extension Clinic
## 1303                               Adult Day Health Care Program - Offsite
## 1304                                Residential Health Care Facility - SNF
## 1305                                Residential Health Care Facility - SNF
## 1306                                          Certified Home Health Agency
## 1307                                             Hospital Extension Clinic
## 1308                                             Hospital Extension Clinic
## 1309                                             Hospital Extension Clinic
## 1310                                          Certified Home Health Agency
## 1311                                Residential Health Care Facility - SNF
## 1312                      Diagnostic and Treatment Center Extension Clinic
## 1313                      Diagnostic and Treatment Center Extension Clinic
## 1314                                             Hospital Extension Clinic
## 1315                      Diagnostic and Treatment Center Extension Clinic
## 1316                                Residential Health Care Facility - SNF
## 1317                                                               Hospice
## 1318                      Diagnostic and Treatment Center Extension Clinic
## 1319                      Diagnostic and Treatment Center Extension Clinic
## 1320                                    Long Term Home Health Care Program
## 1321                                             Hospital Extension Clinic
## 1322                                             Hospital Extension Clinic
## 1323                                                              Hospital
## 1324                      Diagnostic and Treatment Center Extension Clinic
## 1325         School Based Diagnostic and Treatment Center Extension Clinic
## 1326                                             Hospital Extension Clinic
## 1327         School Based Diagnostic and Treatment Center Extension Clinic
## 1328                                                              Hospital
## 1329                                                               Hospice
## 1330                                             Hospital Extension Clinic
## 1331                                School Based Hospital Extension Clinic
## 1332                                       Diagnostic and Treatment Center
## 1333     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1334                                             Hospital Extension Clinic
## 1335         School Based Diagnostic and Treatment Center Extension Clinic
## 1336         School Based Diagnostic and Treatment Center Extension Clinic
## 1337                                                              Hospital
## 1338                                       Diagnostic and Treatment Center
## 1339                                             Hospital Extension Clinic
## 1340               Mobile Diagnostic and Treatment Center Extension Clinic
## 1341                      Diagnostic and Treatment Center Extension Clinic
## 1342                                             Hospital Extension Clinic
## 1343                                             Hospital Extension Clinic
## 1344                                Residential Health Care Facility - SNF
## 1345                                             Hospital Extension Clinic
## 1346                                             Hospital Extension Clinic
## 1347     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1348                      Diagnostic and Treatment Center Extension Clinic
## 1349                                                               Hospice
## 1350                                Residential Health Care Facility - SNF
## 1351                      Diagnostic and Treatment Center Extension Clinic
## 1352               Mobile Diagnostic and Treatment Center Extension Clinic
## 1353                                       Diagnostic and Treatment Center
## 1354                                       Diagnostic and Treatment Center
## 1355                                             Hospital Extension Clinic
## 1356                      Diagnostic and Treatment Center Extension Clinic
## 1357                                Residential Health Care Facility - SNF
## 1358                                                              Hospital
## 1359                               Adult Day Health Care Program - Offsite
## 1360                      Diagnostic and Treatment Center Extension Clinic
## 1361                      Diagnostic and Treatment Center Extension Clinic
## 1362                      Diagnostic and Treatment Center Extension Clinic
## 1363                      Diagnostic and Treatment Center Extension Clinic
## 1364                      Diagnostic and Treatment Center Extension Clinic
## 1365                                    Long Term Home Health Care Program
## 1366                                       Diagnostic and Treatment Center
## 1367                                Residential Health Care Facility - SNF
## 1368                                Residential Health Care Facility - SNF
## 1369     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1370                                School Based Hospital Extension Clinic
## 1371                      Diagnostic and Treatment Center Extension Clinic
## 1372     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1373                                             Hospital Extension Clinic
## 1374                      Diagnostic and Treatment Center Extension Clinic
## 1375                                             Hospital Extension Clinic
## 1376                                             Hospital Extension Clinic
## 1377                                Residential Health Care Facility - SNF
## 1378     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1379               Mobile Diagnostic and Treatment Center Extension Clinic
## 1380                                             Hospital Extension Clinic
## 1381                      Diagnostic and Treatment Center Extension Clinic
## 1382                                                              Hospital
## 1383                                             Hospital Extension Clinic
## 1384                      Diagnostic and Treatment Center Extension Clinic
## 1385                                Residential Health Care Facility - SNF
## 1386                                                              Hospital
## 1387                                    Long Term Home Health Care Program
## 1388         School Based Diagnostic and Treatment Center Extension Clinic
## 1389                                             Hospital Extension Clinic
## 1390                                             Hospital Extension Clinic
## 1391                                             Hospital Extension Clinic
## 1392                                             Hospital Extension Clinic
## 1393     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1394                                       Diagnostic and Treatment Center
## 1395                                       Diagnostic and Treatment Center
## 1396                      Diagnostic and Treatment Center Extension Clinic
## 1397                                Residential Health Care Facility - SNF
## 1398                                             Hospital Extension Clinic
## 1399                                             Hospital Extension Clinic
## 1400                      Diagnostic and Treatment Center Extension Clinic
## 1401                                       Diagnostic and Treatment Center
## 1402                                             Hospital Extension Clinic
## 1403                                School Based Hospital Extension Clinic
## 1404                                             Hospital Extension Clinic
## 1405                                             Hospital Extension Clinic
## 1406                                             Hospital Extension Clinic
## 1407                                School Based Hospital Extension Clinic
## 1408                                             Hospital Extension Clinic
## 1409         School Based Diagnostic and Treatment Center Extension Clinic
## 1410                                             Hospital Extension Clinic
## 1411                      Diagnostic and Treatment Center Extension Clinic
## 1412                                             Hospital Extension Clinic
## 1413                      Diagnostic and Treatment Center Extension Clinic
## 1414                                             Hospital Extension Clinic
## 1415                                Residential Health Care Facility - SNF
## 1416                      Diagnostic and Treatment Center Extension Clinic
## 1417                                Residential Health Care Facility - SNF
## 1418                                             Hospital Extension Clinic
## 1419                                             Hospital Extension Clinic
## 1420                      Diagnostic and Treatment Center Extension Clinic
## 1421                                             Hospital Extension Clinic
## 1422                                             Hospital Extension Clinic
## 1423                                             Hospital Extension Clinic
## 1424                      Diagnostic and Treatment Center Extension Clinic
## 1425                                             Hospital Extension Clinic
## 1426                                Residential Health Care Facility - SNF
## 1427                      Primary Care Hospital - Critical Access Hospital
## 1428                                       Diagnostic and Treatment Center
## 1429                                             Hospital Extension Clinic
## 1430                                             Hospital Extension Clinic
## 1431                                    Long Term Home Health Care Program
## 1432                                             Hospital Extension Clinic
## 1433                                             Hospital Extension Clinic
## 1434                                      Mobile Hospital Extension Clinic
## 1435                      Diagnostic and Treatment Center Extension Clinic
## 1436                      Diagnostic and Treatment Center Extension Clinic
## 1437                                             Hospital Extension Clinic
## 1438                                             Hospital Extension Clinic
## 1439                      Diagnostic and Treatment Center Extension Clinic
## 1440                                             Hospital Extension Clinic
## 1441                                             Hospital Extension Clinic
## 1442                                          Certified Home Health Agency
## 1443         School Based Diagnostic and Treatment Center Extension Clinic
## 1444                                       Diagnostic and Treatment Center
## 1445                                Residential Health Care Facility - SNF
## 1446                                             Hospital Extension Clinic
## 1447                                                              Hospital
## 1448                                             Hospital Extension Clinic
## 1449                      Diagnostic and Treatment Center Extension Clinic
## 1450                                       Diagnostic and Treatment Center
## 1451                      Diagnostic and Treatment Center Extension Clinic
## 1452                                       Diagnostic and Treatment Center
## 1453                                School Based Hospital Extension Clinic
## 1454                                Residential Health Care Facility - SNF
## 1455                      Primary Care Hospital - Critical Access Hospital
## 1456                                             Hospital Extension Clinic
## 1457                                                              Hospital
## 1458                      Diagnostic and Treatment Center Extension Clinic
## 1459                                             Hospital Extension Clinic
## 1460     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1461                      Diagnostic and Treatment Center Extension Clinic
## 1462                                             Hospital Extension Clinic
## 1463                                             Hospital Extension Clinic
## 1464                                Residential Health Care Facility - SNF
## 1465                                Residential Health Care Facility - SNF
## 1466                                       Diagnostic and Treatment Center
## 1467                                             Hospital Extension Clinic
## 1468                                             Hospital Extension Clinic
## 1469                      Diagnostic and Treatment Center Extension Clinic
## 1470                      Diagnostic and Treatment Center Extension Clinic
## 1471                                       Diagnostic and Treatment Center
## 1472                                             Hospital Extension Clinic
## 1473                               Adult Day Health Care Program - Offsite
## 1474                                Residential Health Care Facility - SNF
## 1475                      Diagnostic and Treatment Center Extension Clinic
## 1476                                Residential Health Care Facility - SNF
## 1477                      Diagnostic and Treatment Center Extension Clinic
## 1478         School Based Diagnostic and Treatment Center Extension Clinic
## 1479                                             Hospital Extension Clinic
## 1480                                                              Hospital
## 1481                                       Diagnostic and Treatment Center
## 1482                                                              Hospital
## 1483                                Residential Health Care Facility - SNF
## 1484                                      Mobile Hospital Extension Clinic
## 1485                                       Diagnostic and Treatment Center
## 1486                                Residential Health Care Facility - SNF
## 1487                      Diagnostic and Treatment Center Extension Clinic
## 1488                      Diagnostic and Treatment Center Extension Clinic
## 1489                                Residential Health Care Facility - SNF
## 1490                      Diagnostic and Treatment Center Extension Clinic
## 1491                                Residential Health Care Facility - SNF
## 1492                                             Hospital Extension Clinic
## 1493         School Based Diagnostic and Treatment Center Extension Clinic
## 1494                                             Hospital Extension Clinic
## 1495               Mobile Diagnostic and Treatment Center Extension Clinic
## 1496                                Residential Health Care Facility - SNF
## 1497                      Diagnostic and Treatment Center Extension Clinic
## 1498                                       Diagnostic and Treatment Center
## 1499                                             Hospital Extension Clinic
## 1500                                             Hospital Extension Clinic
## 1501                      Diagnostic and Treatment Center Extension Clinic
## 1502                                      Mobile Hospital Extension Clinic
## 1503                      Diagnostic and Treatment Center Extension Clinic
## 1504                                Residential Health Care Facility - SNF
## 1505                                                              Hospital
## 1506                                Residential Health Care Facility - SNF
## 1507                                       Diagnostic and Treatment Center
## 1508                                Residential Health Care Facility - SNF
## 1509                                Residential Health Care Facility - SNF
## 1510                      Diagnostic and Treatment Center Extension Clinic
## 1511                                             Hospital Extension Clinic
## 1512         School Based Diagnostic and Treatment Center Extension Clinic
## 1513         School Based Diagnostic and Treatment Center Extension Clinic
## 1514                                             Hospital Extension Clinic
## 1515                                          Certified Home Health Agency
## 1516                                             Hospital Extension Clinic
## 1517     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1518                                School Based Hospital Extension Clinic
## 1519                      Diagnostic and Treatment Center Extension Clinic
## 1520                      Diagnostic and Treatment Center Extension Clinic
## 1521                                             Hospital Extension Clinic
## 1522                                             Hospital Extension Clinic
## 1523                                       Diagnostic and Treatment Center
## 1524                                Residential Health Care Facility - SNF
## 1525                      Diagnostic and Treatment Center Extension Clinic
## 1526                                             Hospital Extension Clinic
## 1527                                             Hospital Extension Clinic
## 1528                                Residential Health Care Facility - SNF
## 1529                                          Certified Home Health Agency
## 1530                                       Diagnostic and Treatment Center
## 1531         School Based Diagnostic and Treatment Center Extension Clinic
## 1532                                             Hospital Extension Clinic
## 1533                                Residential Health Care Facility - SNF
## 1534                                School Based Hospital Extension Clinic
## 1535         School Based Diagnostic and Treatment Center Extension Clinic
## 1536                                             Hospital Extension Clinic
## 1537                      Diagnostic and Treatment Center Extension Clinic
## 1538                                             Hospital Extension Clinic
## 1539                                Residential Health Care Facility - SNF
## 1540                                             Hospital Extension Clinic
## 1541                                       Diagnostic and Treatment Center
## 1542                                             Hospital Extension Clinic
## 1543                                Residential Health Care Facility - SNF
## 1544                      Diagnostic and Treatment Center Extension Clinic
## 1545                                       Diagnostic and Treatment Center
## 1546                                Residential Health Care Facility - SNF
## 1547                                                              Hospital
## 1548                                             Hospital Extension Clinic
## 1549         School Based Diagnostic and Treatment Center Extension Clinic
## 1550                      Diagnostic and Treatment Center Extension Clinic
## 1551                                Residential Health Care Facility - SNF
## 1552                                             Hospital Extension Clinic
## 1553     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1554                                Residential Health Care Facility - SNF
## 1555                                School Based Hospital Extension Clinic
## 1556                                Residential Health Care Facility - SNF
## 1557                                       Diagnostic and Treatment Center
## 1558                                Residential Health Care Facility - SNF
## 1559                                             Hospital Extension Clinic
## 1560                                             Hospital Extension Clinic
## 1561                                       Diagnostic and Treatment Center
## 1562                                          Certified Home Health Agency
## 1563                                                              Hospital
## 1564                                       Diagnostic and Treatment Center
## 1565                                    Long Term Home Health Care Program
## 1566                                                              Hospital
## 1567                                School Based Hospital Extension Clinic
## 1568                                       Diagnostic and Treatment Center
## 1569         School Based Diagnostic and Treatment Center Extension Clinic
## 1570                                             Hospital Extension Clinic
## 1571                                             Hospital Extension Clinic
## 1572                                       Diagnostic and Treatment Center
## 1573                                Residential Health Care Facility - SNF
## 1574                                School Based Hospital Extension Clinic
## 1575                                             Hospital Extension Clinic
## 1576                                       Diagnostic and Treatment Center
## 1577                                             Hospital Extension Clinic
## 1578                      Diagnostic and Treatment Center Extension Clinic
## 1579                                       Diagnostic and Treatment Center
## 1580                                       Diagnostic and Treatment Center
## 1581                                             Hospital Extension Clinic
## 1582                      Diagnostic and Treatment Center Extension Clinic
## 1583                                                              Hospital
## 1584                                Residential Health Care Facility - SNF
## 1585                                             Hospital Extension Clinic
## 1586                                             Hospital Extension Clinic
## 1587                                             Hospital Extension Clinic
## 1588                                             Hospital Extension Clinic
## 1589                                             Hospital Extension Clinic
## 1590                                             Hospital Extension Clinic
## 1591                                          Certified Home Health Agency
## 1592                      Diagnostic and Treatment Center Extension Clinic
## 1593                                       Diagnostic and Treatment Center
## 1594                      Diagnostic and Treatment Center Extension Clinic
## 1595                                             Hospital Extension Clinic
## 1596         School Based Diagnostic and Treatment Center Extension Clinic
## 1597                                             Hospital Extension Clinic
## 1598                                Residential Health Care Facility - SNF
## 1599                                          Certified Home Health Agency
## 1600                                Residential Health Care Facility - SNF
## 1601                                School Based Hospital Extension Clinic
## 1602                                             Hospital Extension Clinic
## 1603                                       Diagnostic and Treatment Center
## 1604                      Diagnostic and Treatment Center Extension Clinic
## 1605                                             Hospital Extension Clinic
## 1606                                       Diagnostic and Treatment Center
## 1607                                             Hospital Extension Clinic
## 1608                                       Diagnostic and Treatment Center
## 1609                                             Hospital Extension Clinic
## 1610                      Diagnostic and Treatment Center Extension Clinic
## 1611                      Diagnostic and Treatment Center Extension Clinic
## 1612         School Based Diagnostic and Treatment Center Extension Clinic
## 1613                                Residential Health Care Facility - SNF
## 1614                      Diagnostic and Treatment Center Extension Clinic
## 1615                      Diagnostic and Treatment Center Extension Clinic
## 1616                                School Based Hospital Extension Clinic
## 1617                                             Hospital Extension Clinic
## 1618                                    Long Term Home Health Care Program
## 1619                                Residential Health Care Facility - SNF
## 1620                                             Hospital Extension Clinic
## 1621         School Based Diagnostic and Treatment Center Extension Clinic
## 1622                                       Diagnostic and Treatment Center
## 1623                                Residential Health Care Facility - SNF
## 1624                      Diagnostic and Treatment Center Extension Clinic
## 1625                      Diagnostic and Treatment Center Extension Clinic
## 1626                      Primary Care Hospital - Critical Access Hospital
## 1627                                School Based Hospital Extension Clinic
## 1628                                                              Hospital
## 1629                                Residential Health Care Facility - SNF
## 1630                      Diagnostic and Treatment Center Extension Clinic
## 1631                                             Hospital Extension Clinic
## 1632                      Diagnostic and Treatment Center Extension Clinic
## 1633         School Based Diagnostic and Treatment Center Extension Clinic
## 1634                                Residential Health Care Facility - SNF
## 1635                                       Diagnostic and Treatment Center
## 1636                                Residential Health Care Facility - SNF
## 1637                                       Diagnostic and Treatment Center
## 1638                                Residential Health Care Facility - SNF
## 1639                                             Hospital Extension Clinic
## 1640                                Residential Health Care Facility - SNF
## 1641                      Diagnostic and Treatment Center Extension Clinic
## 1642                                       Diagnostic and Treatment Center
## 1643                                             Hospital Extension Clinic
## 1644                      Diagnostic and Treatment Center Extension Clinic
## 1645                                             Hospital Extension Clinic
## 1646               Mobile Diagnostic and Treatment Center Extension Clinic
## 1647                      Diagnostic and Treatment Center Extension Clinic
## 1648         School Based Diagnostic and Treatment Center Extension Clinic
## 1649                      Diagnostic and Treatment Center Extension Clinic
## 1650                                Residential Health Care Facility - SNF
## 1651                      Diagnostic and Treatment Center Extension Clinic
## 1652                                       Diagnostic and Treatment Center
## 1653                      Primary Care Hospital - Critical Access Hospital
## 1654                      Diagnostic and Treatment Center Extension Clinic
## 1655                                             Hospital Extension Clinic
## 1656                                          Certified Home Health Agency
## 1657                                             Hospital Extension Clinic
## 1658                      Diagnostic and Treatment Center Extension Clinic
## 1659                                             Hospital Extension Clinic
## 1660                                             Hospital Extension Clinic
## 1661                      Diagnostic and Treatment Center Extension Clinic
## 1662                                             Hospital Extension Clinic
## 1663                                             Hospital Extension Clinic
## 1664                      Diagnostic and Treatment Center Extension Clinic
## 1665                                             Hospital Extension Clinic
## 1666                                             Hospital Extension Clinic
## 1667         School Based Diagnostic and Treatment Center Extension Clinic
## 1668                                Residential Health Care Facility - SNF
## 1669                                Residential Health Care Facility - SNF
## 1670                                School Based Hospital Extension Clinic
## 1671                               Adult Day Health Care Program - Offsite
## 1672                                             Hospital Extension Clinic
## 1673                                             Hospital Extension Clinic
## 1674                                             Hospital Extension Clinic
## 1675         School Based Diagnostic and Treatment Center Extension Clinic
## 1676                      Diagnostic and Treatment Center Extension Clinic
## 1677                                             Hospital Extension Clinic
## 1678                      Diagnostic and Treatment Center Extension Clinic
## 1679                                             Hospital Extension Clinic
## 1680                                       Diagnostic and Treatment Center
## 1681                                             Hospital Extension Clinic
## 1682                                                              Hospital
## 1683                                             Hospital Extension Clinic
## 1684                                Residential Health Care Facility - SNF
## 1685                      Diagnostic and Treatment Center Extension Clinic
## 1686                                             Hospital Extension Clinic
## 1687                                             Hospital Extension Clinic
## 1688                                             Hospital Extension Clinic
## 1689                                             Hospital Extension Clinic
## 1690                                             Hospital Extension Clinic
## 1691         School Based Diagnostic and Treatment Center Extension Clinic
## 1692                                Residential Health Care Facility - SNF
## 1693                                          Certified Home Health Agency
## 1694         School Based Diagnostic and Treatment Center Extension Clinic
## 1695                      Diagnostic and Treatment Center Extension Clinic
## 1696                                             Hospital Extension Clinic
## 1697                                Residential Health Care Facility - SNF
## 1698                                             Hospital Extension Clinic
## 1699                                       Diagnostic and Treatment Center
## 1700                      Diagnostic and Treatment Center Extension Clinic
## 1701                                Residential Health Care Facility - SNF
## 1702                      Diagnostic and Treatment Center Extension Clinic
## 1703                               Adult Day Health Care Program - Offsite
## 1704                                                              Hospital
## 1705                                             Hospital Extension Clinic
## 1706         School Based Diagnostic and Treatment Center Extension Clinic
## 1707                      Diagnostic and Treatment Center Extension Clinic
## 1708                                                               Hospice
## 1709                                       Diagnostic and Treatment Center
## 1710                                Residential Health Care Facility - SNF
## 1711                                             Hospital Extension Clinic
## 1712                                             Hospital Extension Clinic
## 1713                                Residential Health Care Facility - SNF
## 1714                      Diagnostic and Treatment Center Extension Clinic
## 1715                                       Diagnostic and Treatment Center
## 1716                                Residential Health Care Facility - SNF
## 1717                                             Hospital Extension Clinic
## 1718                                       Diagnostic and Treatment Center
## 1719                                       Diagnostic and Treatment Center
## 1720                                School Based Hospital Extension Clinic
## 1721                      Diagnostic and Treatment Center Extension Clinic
## 1722     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1723                                       Diagnostic and Treatment Center
## 1724         School Based Diagnostic and Treatment Center Extension Clinic
## 1725                                Residential Health Care Facility - SNF
## 1726         School Based Diagnostic and Treatment Center Extension Clinic
## 1727     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1728                                School Based Hospital Extension Clinic
## 1729                                             Hospital Extension Clinic
## 1730                                             Hospital Extension Clinic
## 1731                                       Diagnostic and Treatment Center
## 1732                                             Hospital Extension Clinic
## 1733                                             Hospital Extension Clinic
## 1734                                             Hospital Extension Clinic
## 1735                                          Certified Home Health Agency
## 1736                                             Hospital Extension Clinic
## 1737                                    Long Term Home Health Care Program
## 1738                                             Hospital Extension Clinic
## 1739                                          Certified Home Health Agency
## 1740                                             Hospital Extension Clinic
## 1741                                       Diagnostic and Treatment Center
## 1742                      Diagnostic and Treatment Center Extension Clinic
## 1743                      Diagnostic and Treatment Center Extension Clinic
## 1744                                       Diagnostic and Treatment Center
## 1745                                       Diagnostic and Treatment Center
## 1746                                             Hospital Extension Clinic
## 1747                                             Hospital Extension Clinic
## 1748     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1749         School Based Diagnostic and Treatment Center Extension Clinic
## 1750                      Diagnostic and Treatment Center Extension Clinic
## 1751                                             Hospital Extension Clinic
## 1752                                Residential Health Care Facility - SNF
## 1753                      Diagnostic and Treatment Center Extension Clinic
## 1754                                             Hospital Extension Clinic
## 1755                                       Diagnostic and Treatment Center
## 1756                      Diagnostic and Treatment Center Extension Clinic
## 1757                                                              Hospital
## 1758                                       Diagnostic and Treatment Center
## 1759         School Based Diagnostic and Treatment Center Extension Clinic
## 1760                                Residential Health Care Facility - SNF
## 1761                                             Hospital Extension Clinic
## 1762                      Diagnostic and Treatment Center Extension Clinic
## 1763                                School Based Hospital Extension Clinic
## 1764                      Diagnostic and Treatment Center Extension Clinic
## 1765                                    Long Term Home Health Care Program
## 1766                                             Hospital Extension Clinic
## 1767                                             Hospital Extension Clinic
## 1768                                                              Hospital
## 1769                                             Hospital Extension Clinic
## 1770                                             Hospital Extension Clinic
## 1771                                             Hospital Extension Clinic
## 1772                                    Long Term Home Health Care Program
## 1773                                             Hospital Extension Clinic
## 1774                                             Hospital Extension Clinic
## 1775                                       Diagnostic and Treatment Center
## 1776                                       Diagnostic and Treatment Center
## 1777                                             Hospital Extension Clinic
## 1778                                Residential Health Care Facility - SNF
## 1779                                       Diagnostic and Treatment Center
## 1780                                                              Hospital
## 1781                                       Diagnostic and Treatment Center
## 1782                                             Hospital Extension Clinic
## 1783                                       Diagnostic and Treatment Center
## 1784                                          Certified Home Health Agency
## 1785                      Diagnostic and Treatment Center Extension Clinic
## 1786                                Residential Health Care Facility - SNF
## 1787                                Residential Health Care Facility - SNF
## 1788                      Diagnostic and Treatment Center Extension Clinic
## 1789                                Residential Health Care Facility - SNF
## 1790                                Residential Health Care Facility - SNF
## 1791                                                              Hospital
## 1792                                             Hospital Extension Clinic
## 1793                                             Hospital Extension Clinic
## 1794                                             Hospital Extension Clinic
## 1795                                             Hospital Extension Clinic
## 1796         School Based Diagnostic and Treatment Center Extension Clinic
## 1797                                       Diagnostic and Treatment Center
## 1798                                                              Hospital
## 1799     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1800                                             Hospital Extension Clinic
## 1801                                       Diagnostic and Treatment Center
## 1802                                       Diagnostic and Treatment Center
## 1803                                       Diagnostic and Treatment Center
## 1804                                             Hospital Extension Clinic
## 1805                                Residential Health Care Facility - SNF
## 1806               Mobile Diagnostic and Treatment Center Extension Clinic
## 1807                                                              Hospital
## 1808                                                              Hospital
## 1809                                             Hospital Extension Clinic
## 1810                                Residential Health Care Facility - SNF
## 1811                                             Hospital Extension Clinic
## 1812                               Adult Day Health Care Program - Offsite
## 1813                                             Hospital Extension Clinic
## 1814                                                              Hospital
## 1815                                School Based Hospital Extension Clinic
## 1816                      Diagnostic and Treatment Center Extension Clinic
## 1817                                          Certified Home Health Agency
## 1818                                Residential Health Care Facility - SNF
## 1819                      Diagnostic and Treatment Center Extension Clinic
## 1820                                                              Hospital
## 1821                                          Certified Home Health Agency
## 1822                                Residential Health Care Facility - SNF
## 1823                      Diagnostic and Treatment Center Extension Clinic
## 1824                                       Diagnostic and Treatment Center
## 1825                                             Hospital Extension Clinic
## 1826                                             Hospital Extension Clinic
## 1827                      Diagnostic and Treatment Center Extension Clinic
## 1828                                       Diagnostic and Treatment Center
## 1829                                             Hospital Extension Clinic
## 1830                      Diagnostic and Treatment Center Extension Clinic
## 1831                                             Hospital Extension Clinic
## 1832                                       Diagnostic and Treatment Center
## 1833                                             Hospital Extension Clinic
## 1834                                             Hospital Extension Clinic
## 1835                                             Hospital Extension Clinic
## 1836                                                              Hospital
## 1837                                             Hospital Extension Clinic
## 1838                                             Hospital Extension Clinic
## 1839                      Diagnostic and Treatment Center Extension Clinic
## 1840                                                              Hospital
## 1841                                          Certified Home Health Agency
## 1842                                Residential Health Care Facility - SNF
## 1843                                             Hospital Extension Clinic
## 1844                      Diagnostic and Treatment Center Extension Clinic
## 1845                                Residential Health Care Facility - SNF
## 1846                                             Hospital Extension Clinic
## 1847                                             Hospital Extension Clinic
## 1848                               Adult Day Health Care Program - Offsite
## 1849         School Based Diagnostic and Treatment Center Extension Clinic
## 1850                                             Hospital Extension Clinic
## 1851                                          Certified Home Health Agency
## 1852                                             Hospital Extension Clinic
## 1853                                          Certified Home Health Agency
## 1854                                             Hospital Extension Clinic
## 1855                      Diagnostic and Treatment Center Extension Clinic
## 1856                                             Hospital Extension Clinic
## 1857                                             Hospital Extension Clinic
## 1858                      Diagnostic and Treatment Center Extension Clinic
## 1859                                School Based Hospital Extension Clinic
## 1860                                       Diagnostic and Treatment Center
## 1861                                             Hospital Extension Clinic
## 1862         School Based Diagnostic and Treatment Center Extension Clinic
## 1863                                             Hospital Extension Clinic
## 1864                      Diagnostic and Treatment Center Extension Clinic
## 1865                                             Hospital Extension Clinic
## 1866                                       Diagnostic and Treatment Center
## 1867                                       Diagnostic and Treatment Center
## 1868                               Adult Day Health Care Program - Offsite
## 1869                                       Diagnostic and Treatment Center
## 1870                                Residential Health Care Facility - SNF
## 1871                      Diagnostic and Treatment Center Extension Clinic
## 1872                                             Hospital Extension Clinic
## 1873                                             Hospital Extension Clinic
## 1874                                       Diagnostic and Treatment Center
## 1875                                                              Hospital
## 1876                                Residential Health Care Facility - SNF
## 1877                      Diagnostic and Treatment Center Extension Clinic
## 1878                                Residential Health Care Facility - SNF
## 1879                                          Certified Home Health Agency
## 1880                                School Based Hospital Extension Clinic
## 1881                                             Hospital Extension Clinic
## 1882                                             Hospital Extension Clinic
## 1883                                             Hospital Extension Clinic
## 1884                      Diagnostic and Treatment Center Extension Clinic
## 1885     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 1886                                             Hospital Extension Clinic
## 1887                                          Certified Home Health Agency
## 1888                                       Diagnostic and Treatment Center
## 1889                                School Based Hospital Extension Clinic
## 1890                                Residential Health Care Facility - SNF
## 1891                                             Hospital Extension Clinic
## 1892                                             Hospital Extension Clinic
## 1893                                             Hospital Extension Clinic
## 1894                                             Hospital Extension Clinic
## 1895                                Residential Health Care Facility - SNF
## 1896                                             Hospital Extension Clinic
## 1897         School Based Diagnostic and Treatment Center Extension Clinic
## 1898                                Residential Health Care Facility - SNF
## 1899                                                              Hospital
## 1900                                             Hospital Extension Clinic
## 1901                                          Certified Home Health Agency
## 1902         School Based Diagnostic and Treatment Center Extension Clinic
## 1903                                       Diagnostic and Treatment Center
## 1904                      Diagnostic and Treatment Center Extension Clinic
## 1905                                School Based Hospital Extension Clinic
## 1906                                       Diagnostic and Treatment Center
## 1907                                       Diagnostic and Treatment Center
## 1908                                       Diagnostic and Treatment Center
## 1909                                             Hospital Extension Clinic
## 1910                      Diagnostic and Treatment Center Extension Clinic
## 1911                                Residential Health Care Facility - SNF
## 1912                                             Hospital Extension Clinic
## 1913                      Diagnostic and Treatment Center Extension Clinic
## 1914                      Diagnostic and Treatment Center Extension Clinic
## 1915                                                              Hospital
## 1916                                       Diagnostic and Treatment Center
## 1917                                             Hospital Extension Clinic
## 1918                                             Hospital Extension Clinic
## 1919                                             Hospital Extension Clinic
## 1920                                       Diagnostic and Treatment Center
## 1921                                             Hospital Extension Clinic
## 1922                                Residential Health Care Facility - SNF
## 1923                                          Certified Home Health Agency
## 1924                                       Diagnostic and Treatment Center
## 1925                                             Hospital Extension Clinic
## 1926         School Based Diagnostic and Treatment Center Extension Clinic
## 1927                                             Hospital Extension Clinic
## 1928                                             Hospital Extension Clinic
## 1929                      Diagnostic and Treatment Center Extension Clinic
## 1930                                       Diagnostic and Treatment Center
## 1931                                          Certified Home Health Agency
## 1932                                       Diagnostic and Treatment Center
## 1933                      Diagnostic and Treatment Center Extension Clinic
## 1934                                Residential Health Care Facility - SNF
## 1935                                             Hospital Extension Clinic
## 1936                                      Mobile Hospital Extension Clinic
## 1937                                             Hospital Extension Clinic
## 1938                      Diagnostic and Treatment Center Extension Clinic
## 1939                                Residential Health Care Facility - SNF
## 1940                                Residential Health Care Facility - SNF
## 1941                                Residential Health Care Facility - SNF
## 1942                                             Hospital Extension Clinic
## 1943                                Residential Health Care Facility - SNF
## 1944                                             Hospital Extension Clinic
## 1945                                Residential Health Care Facility - SNF
## 1946                                             Hospital Extension Clinic
## 1947                                             Hospital Extension Clinic
## 1948                                Residential Health Care Facility - SNF
## 1949                                             Hospital Extension Clinic
## 1950         School Based Diagnostic and Treatment Center Extension Clinic
## 1951                                             Hospital Extension Clinic
## 1952                                Residential Health Care Facility - SNF
## 1953                                                              Hospital
## 1954         School Based Diagnostic and Treatment Center Extension Clinic
## 1955                                Residential Health Care Facility - SNF
## 1956                                                              Hospital
## 1957                                             Hospital Extension Clinic
## 1958                      Diagnostic and Treatment Center Extension Clinic
## 1959                                                              Hospital
## 1960                                       Diagnostic and Treatment Center
## 1961                      Diagnostic and Treatment Center Extension Clinic
## 1962                      Diagnostic and Treatment Center Extension Clinic
## 1963                      Diagnostic and Treatment Center Extension Clinic
## 1964               Mobile Diagnostic and Treatment Center Extension Clinic
## 1965                                          Certified Home Health Agency
## 1966                                             Hospital Extension Clinic
## 1967                                             Hospital Extension Clinic
## 1968         School Based Diagnostic and Treatment Center Extension Clinic
## 1969                                             Hospital Extension Clinic
## 1970                                Residential Health Care Facility - SNF
## 1971                      Diagnostic and Treatment Center Extension Clinic
## 1972                                Residential Health Care Facility - SNF
## 1973                                                              Hospital
## 1974                                Residential Health Care Facility - SNF
## 1975                                       Diagnostic and Treatment Center
## 1976                                             Hospital Extension Clinic
## 1977                                Residential Health Care Facility - SNF
## 1978               Mobile Diagnostic and Treatment Center Extension Clinic
## 1979                                             Hospital Extension Clinic
## 1980                                                              Hospital
## 1981               Mobile Diagnostic and Treatment Center Extension Clinic
## 1982                                       Diagnostic and Treatment Center
## 1983                               Adult Day Health Care Program - Offsite
## 1984                                Residential Health Care Facility - SNF
## 1985                                             Hospital Extension Clinic
## 1986                      Diagnostic and Treatment Center Extension Clinic
## 1987                                             Hospital Extension Clinic
## 1988                                                              Hospital
## 1989                                Residential Health Care Facility - SNF
## 1990                      Diagnostic and Treatment Center Extension Clinic
## 1991                      Diagnostic and Treatment Center Extension Clinic
## 1992         School Based Diagnostic and Treatment Center Extension Clinic
## 1993                                                              Hospital
## 1994                                                              Hospital
## 1995                                             Hospital Extension Clinic
## 1996                                       Diagnostic and Treatment Center
## 1997                                             Hospital Extension Clinic
## 1998                                Residential Health Care Facility - SNF
## 1999                                                              Hospital
## 2000                                          Certified Home Health Agency
## 2001                                    Long Term Home Health Care Program
## 2002                      Diagnostic and Treatment Center Extension Clinic
## 2003                      Diagnostic and Treatment Center Extension Clinic
## 2004                      Diagnostic and Treatment Center Extension Clinic
## 2005                                Residential Health Care Facility - SNF
## 2006                                       Diagnostic and Treatment Center
## 2007                                       Diagnostic and Treatment Center
## 2008     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2009                                             Hospital Extension Clinic
## 2010                                Residential Health Care Facility - SNF
## 2011                                       Diagnostic and Treatment Center
## 2012                                          Certified Home Health Agency
## 2013                                Residential Health Care Facility - SNF
## 2014                                             Hospital Extension Clinic
## 2015                                             Hospital Extension Clinic
## 2016                                Residential Health Care Facility - SNF
## 2017                                       Diagnostic and Treatment Center
## 2018                                                              Hospital
## 2019                                             Hospital Extension Clinic
## 2020                                             Hospital Extension Clinic
## 2021                                             Hospital Extension Clinic
## 2022                                School Based Hospital Extension Clinic
## 2023                      Diagnostic and Treatment Center Extension Clinic
## 2024                                             Hospital Extension Clinic
## 2025                                       Diagnostic and Treatment Center
## 2026                                       Diagnostic and Treatment Center
## 2027                                Residential Health Care Facility - SNF
## 2028                      Diagnostic and Treatment Center Extension Clinic
## 2029                                       Diagnostic and Treatment Center
## 2030                                          Certified Home Health Agency
## 2031                                             Hospital Extension Clinic
## 2032                                Residential Health Care Facility - SNF
## 2033                                             Hospital Extension Clinic
## 2034                                Residential Health Care Facility - SNF
## 2035                      Diagnostic and Treatment Center Extension Clinic
## 2036                                             Hospital Extension Clinic
## 2037                                             Hospital Extension Clinic
## 2038                                             Hospital Extension Clinic
## 2039                                Residential Health Care Facility - SNF
## 2040                      Diagnostic and Treatment Center Extension Clinic
## 2041                                                               Hospice
## 2042                               Adult Day Health Care Program - Offsite
## 2043                                             Hospital Extension Clinic
## 2044                      Diagnostic and Treatment Center Extension Clinic
## 2045                                       Diagnostic and Treatment Center
## 2046         School Based Diagnostic and Treatment Center Extension Clinic
## 2047                                       Diagnostic and Treatment Center
## 2048                                             Hospital Extension Clinic
## 2049                                             Hospital Extension Clinic
## 2050                                             Hospital Extension Clinic
## 2051                                             Hospital Extension Clinic
## 2052                                             Hospital Extension Clinic
## 2053                      Diagnostic and Treatment Center Extension Clinic
## 2054                                                              Hospital
## 2055                                             Hospital Extension Clinic
## 2056                                             Hospital Extension Clinic
## 2057                                       Diagnostic and Treatment Center
## 2058                                             Hospital Extension Clinic
## 2059         School Based Diagnostic and Treatment Center Extension Clinic
## 2060         School Based Diagnostic and Treatment Center Extension Clinic
## 2061                      Diagnostic and Treatment Center Extension Clinic
## 2062                                             Hospital Extension Clinic
## 2063         School Based Diagnostic and Treatment Center Extension Clinic
## 2064                                             Hospital Extension Clinic
## 2065                                             Hospital Extension Clinic
## 2066                                             Hospital Extension Clinic
## 2067                      Diagnostic and Treatment Center Extension Clinic
## 2068                                             Hospital Extension Clinic
## 2069                      Diagnostic and Treatment Center Extension Clinic
## 2070                                                              Hospital
## 2071                                Residential Health Care Facility - SNF
## 2072                                Residential Health Care Facility - SNF
## 2073                                       Diagnostic and Treatment Center
## 2074                                Residential Health Care Facility - SNF
## 2075                                Residential Health Care Facility - SNF
## 2076                                                              Hospital
## 2077                                       Diagnostic and Treatment Center
## 2078                                             Hospital Extension Clinic
## 2079                                             Hospital Extension Clinic
## 2080                                             Hospital Extension Clinic
## 2081                      Diagnostic and Treatment Center Extension Clinic
## 2082                                School Based Hospital Extension Clinic
## 2083                                Residential Health Care Facility - SNF
## 2084                      Diagnostic and Treatment Center Extension Clinic
## 2085                                                              Hospital
## 2086                                             Hospital Extension Clinic
## 2087                                             Hospital Extension Clinic
## 2088                                             Hospital Extension Clinic
## 2089                               Adult Day Health Care Program - Offsite
## 2090                                       Diagnostic and Treatment Center
## 2091         School Based Diagnostic and Treatment Center Extension Clinic
## 2092         School Based Diagnostic and Treatment Center Extension Clinic
## 2093                      Diagnostic and Treatment Center Extension Clinic
## 2094                      Diagnostic and Treatment Center Extension Clinic
## 2095                                             Hospital Extension Clinic
## 2096                      Diagnostic and Treatment Center Extension Clinic
## 2097                                                               Hospice
## 2098                                Residential Health Care Facility - SNF
## 2099                                                              Hospital
## 2100                                             Hospital Extension Clinic
## 2101                                       Diagnostic and Treatment Center
## 2102                                Residential Health Care Facility - SNF
## 2103                                Residential Health Care Facility - SNF
## 2104     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2105                                             Hospital Extension Clinic
## 2106                                Residential Health Care Facility - SNF
## 2107                                             Hospital Extension Clinic
## 2108                                                              Hospital
## 2109                                             Hospital Extension Clinic
## 2110                                School Based Hospital Extension Clinic
## 2111                                Residential Health Care Facility - SNF
## 2112                      Diagnostic and Treatment Center Extension Clinic
## 2113                      Diagnostic and Treatment Center Extension Clinic
## 2114         School Based Diagnostic and Treatment Center Extension Clinic
## 2115         School Based Diagnostic and Treatment Center Extension Clinic
## 2116                      Diagnostic and Treatment Center Extension Clinic
## 2117                                                              Hospital
## 2118                                Residential Health Care Facility - SNF
## 2119                                    Long Term Home Health Care Program
## 2120                                Residential Health Care Facility - SNF
## 2121                      Diagnostic and Treatment Center Extension Clinic
## 2122                                             Hospital Extension Clinic
## 2123                                Residential Health Care Facility - SNF
## 2124                      Diagnostic and Treatment Center Extension Clinic
## 2125         School Based Diagnostic and Treatment Center Extension Clinic
## 2126                                             Hospital Extension Clinic
## 2127                                             Hospital Extension Clinic
## 2128                      Diagnostic and Treatment Center Extension Clinic
## 2129                                School Based Hospital Extension Clinic
## 2130                                             Hospital Extension Clinic
## 2131                      Diagnostic and Treatment Center Extension Clinic
## 2132         School Based Diagnostic and Treatment Center Extension Clinic
## 2133                                Residential Health Care Facility - SNF
## 2134                                                              Hospital
## 2135                                             Hospital Extension Clinic
## 2136                                             Hospital Extension Clinic
## 2137                      Diagnostic and Treatment Center Extension Clinic
## 2138                      Diagnostic and Treatment Center Extension Clinic
## 2139                                                              Hospital
## 2140     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2141                                       Diagnostic and Treatment Center
## 2142                                Residential Health Care Facility - SNF
## 2143                      Diagnostic and Treatment Center Extension Clinic
## 2144                                             Hospital Extension Clinic
## 2145                                             Hospital Extension Clinic
## 2146                                             Hospital Extension Clinic
## 2147                                             Hospital Extension Clinic
## 2148                                Residential Health Care Facility - SNF
## 2149                      Diagnostic and Treatment Center Extension Clinic
## 2150                                                              Hospital
## 2151                                          Certified Home Health Agency
## 2152               Mobile Diagnostic and Treatment Center Extension Clinic
## 2153                                       Diagnostic and Treatment Center
## 2154                                Residential Health Care Facility - SNF
## 2155                                             Hospital Extension Clinic
## 2156                                             Hospital Extension Clinic
## 2157                                             Hospital Extension Clinic
## 2158                                Residential Health Care Facility - SNF
## 2159                                             Hospital Extension Clinic
## 2160                                             Hospital Extension Clinic
## 2161                      Diagnostic and Treatment Center Extension Clinic
## 2162                                             Hospital Extension Clinic
## 2163                                             Hospital Extension Clinic
## 2164                                       Diagnostic and Treatment Center
## 2165                                       Diagnostic and Treatment Center
## 2166                                Residential Health Care Facility - SNF
## 2167                                Residential Health Care Facility - SNF
## 2168                                          Certified Home Health Agency
## 2169                                       Diagnostic and Treatment Center
## 2170                                Residential Health Care Facility - SNF
## 2171                                             Hospital Extension Clinic
## 2172                                       Diagnostic and Treatment Center
## 2173                      Diagnostic and Treatment Center Extension Clinic
## 2174                      Diagnostic and Treatment Center Extension Clinic
## 2175                                             Hospital Extension Clinic
## 2176                                             Hospital Extension Clinic
## 2177                                             Hospital Extension Clinic
## 2178                                             Hospital Extension Clinic
## 2179                                School Based Hospital Extension Clinic
## 2180                                             Hospital Extension Clinic
## 2181                                                              Hospital
## 2182                      Diagnostic and Treatment Center Extension Clinic
## 2183                                    Long Term Home Health Care Program
## 2184                      Diagnostic and Treatment Center Extension Clinic
## 2185                                Residential Health Care Facility - SNF
## 2186                                             Hospital Extension Clinic
## 2187               Mobile Diagnostic and Treatment Center Extension Clinic
## 2188                      Diagnostic and Treatment Center Extension Clinic
## 2189                                             Hospital Extension Clinic
## 2190                                Residential Health Care Facility - SNF
## 2191                                Residential Health Care Facility - SNF
## 2192                                       Diagnostic and Treatment Center
## 2193                                School Based Hospital Extension Clinic
## 2194                                             Hospital Extension Clinic
## 2195                                             Hospital Extension Clinic
## 2196                                Residential Health Care Facility - SNF
## 2197                                       Diagnostic and Treatment Center
## 2198                      Diagnostic and Treatment Center Extension Clinic
## 2199                                                              Hospital
## 2200                      Primary Care Hospital - Critical Access Hospital
## 2201         School Based Diagnostic and Treatment Center Extension Clinic
## 2202                                       Diagnostic and Treatment Center
## 2203                                             Hospital Extension Clinic
## 2204                      Diagnostic and Treatment Center Extension Clinic
## 2205                                      Mobile Hospital Extension Clinic
## 2206                                             Hospital Extension Clinic
## 2207                      Diagnostic and Treatment Center Extension Clinic
## 2208                      Diagnostic and Treatment Center Extension Clinic
## 2209                                             Hospital Extension Clinic
## 2210                                             Hospital Extension Clinic
## 2211     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2212                                             Hospital Extension Clinic
## 2213                                          Certified Home Health Agency
## 2214                                                               Hospice
## 2215                      Diagnostic and Treatment Center Extension Clinic
## 2216         School Based Diagnostic and Treatment Center Extension Clinic
## 2217                      Diagnostic and Treatment Center Extension Clinic
## 2218                                             Hospital Extension Clinic
## 2219         School Based Diagnostic and Treatment Center Extension Clinic
## 2220                                             Hospital Extension Clinic
## 2221                                Residential Health Care Facility - SNF
## 2222                      Diagnostic and Treatment Center Extension Clinic
## 2223                                       Diagnostic and Treatment Center
## 2224                                Residential Health Care Facility - SNF
## 2225                                Residential Health Care Facility - SNF
## 2226                                       Diagnostic and Treatment Center
## 2227                                                              Hospital
## 2228                                Residential Health Care Facility - SNF
## 2229                      Diagnostic and Treatment Center Extension Clinic
## 2230                                       Diagnostic and Treatment Center
## 2231                                             Hospital Extension Clinic
## 2232                                                              Hospital
## 2233                                                               Hospice
## 2234                      Diagnostic and Treatment Center Extension Clinic
## 2235                                       Diagnostic and Treatment Center
## 2236                                             Hospital Extension Clinic
## 2237                               Adult Day Health Care Program - Offsite
## 2238                                School Based Hospital Extension Clinic
## 2239                                                              Hospital
## 2240                                       Diagnostic and Treatment Center
## 2241                                Residential Health Care Facility - SNF
## 2242                                Residential Health Care Facility - SNF
## 2243                      Diagnostic and Treatment Center Extension Clinic
## 2244                                             Hospital Extension Clinic
## 2245                                       Diagnostic and Treatment Center
## 2246                                          Certified Home Health Agency
## 2247                                       Diagnostic and Treatment Center
## 2248                                             Hospital Extension Clinic
## 2249                                Residential Health Care Facility - SNF
## 2250                                Residential Health Care Facility - SNF
## 2251                                Residential Health Care Facility - SNF
## 2252                                Residential Health Care Facility - SNF
## 2253                      Diagnostic and Treatment Center Extension Clinic
## 2254                                             Hospital Extension Clinic
## 2255                                             Hospital Extension Clinic
## 2256                                School Based Hospital Extension Clinic
## 2257                                       Diagnostic and Treatment Center
## 2258                                             Hospital Extension Clinic
## 2259                                             Hospital Extension Clinic
## 2260                      Diagnostic and Treatment Center Extension Clinic
## 2261                                       Diagnostic and Treatment Center
## 2262                                School Based Hospital Extension Clinic
## 2263                                             Hospital Extension Clinic
## 2264                                School Based Hospital Extension Clinic
## 2265                                             Hospital Extension Clinic
## 2266                                       Diagnostic and Treatment Center
## 2267                                Residential Health Care Facility - SNF
## 2268                                             Hospital Extension Clinic
## 2269                                             Hospital Extension Clinic
## 2270                                             Hospital Extension Clinic
## 2271                                       Diagnostic and Treatment Center
## 2272                      Diagnostic and Treatment Center Extension Clinic
## 2273                                                               Hospice
## 2274                                             Hospital Extension Clinic
## 2275                                Residential Health Care Facility - SNF
## 2276                                       Diagnostic and Treatment Center
## 2277                                Residential Health Care Facility - SNF
## 2278                                             Hospital Extension Clinic
## 2279                                    Long Term Home Health Care Program
## 2280         School Based Diagnostic and Treatment Center Extension Clinic
## 2281                      Diagnostic and Treatment Center Extension Clinic
## 2282     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2283                               Adult Day Health Care Program - Offsite
## 2284                                       Diagnostic and Treatment Center
## 2285                                    Long Term Home Health Care Program
## 2286                      Diagnostic and Treatment Center Extension Clinic
## 2287                                       Diagnostic and Treatment Center
## 2288                                             Hospital Extension Clinic
## 2289                                             Hospital Extension Clinic
## 2290                                       Diagnostic and Treatment Center
## 2291                                Residential Health Care Facility - SNF
## 2292                      Diagnostic and Treatment Center Extension Clinic
## 2293               Mobile Diagnostic and Treatment Center Extension Clinic
## 2294                                School Based Hospital Extension Clinic
## 2295                                School Based Hospital Extension Clinic
## 2296                      Diagnostic and Treatment Center Extension Clinic
## 2297                                Residential Health Care Facility - SNF
## 2298                                Residential Health Care Facility - SNF
## 2299                                             Hospital Extension Clinic
## 2300                                       Diagnostic and Treatment Center
## 2301                      Diagnostic and Treatment Center Extension Clinic
## 2302                                Residential Health Care Facility - SNF
## 2303                      Diagnostic and Treatment Center Extension Clinic
## 2304                      Diagnostic and Treatment Center Extension Clinic
## 2305                                       Diagnostic and Treatment Center
## 2306                                       Diagnostic and Treatment Center
## 2307                                    Long Term Home Health Care Program
## 2308                                       Diagnostic and Treatment Center
## 2309                                School Based Hospital Extension Clinic
## 2310                                       Diagnostic and Treatment Center
## 2311                      Diagnostic and Treatment Center Extension Clinic
## 2312                                School Based Hospital Extension Clinic
## 2313                                             Hospital Extension Clinic
## 2314                      Diagnostic and Treatment Center Extension Clinic
## 2315                                             Hospital Extension Clinic
## 2316                                Residential Health Care Facility - SNF
## 2317                                             Hospital Extension Clinic
## 2318                                             Hospital Extension Clinic
## 2319                                             Hospital Extension Clinic
## 2320                                       Diagnostic and Treatment Center
## 2321                                Residential Health Care Facility - SNF
## 2322                                                              Hospital
## 2323                                Residential Health Care Facility - SNF
## 2324                                       Diagnostic and Treatment Center
## 2325                                             Hospital Extension Clinic
## 2326         School Based Diagnostic and Treatment Center Extension Clinic
## 2327                      Diagnostic and Treatment Center Extension Clinic
## 2328                                Residential Health Care Facility - SNF
## 2329                                             Hospital Extension Clinic
## 2330                                       Diagnostic and Treatment Center
## 2331                      Diagnostic and Treatment Center Extension Clinic
## 2332                      Diagnostic and Treatment Center Extension Clinic
## 2333                                       Diagnostic and Treatment Center
## 2334                                       Diagnostic and Treatment Center
## 2335                                Residential Health Care Facility - SNF
## 2336                      Diagnostic and Treatment Center Extension Clinic
## 2337                                Residential Health Care Facility - SNF
## 2338                                             Hospital Extension Clinic
## 2339                                          Certified Home Health Agency
## 2340                                                              Hospital
## 2341                                Residential Health Care Facility - SNF
## 2342                                Residential Health Care Facility - SNF
## 2343                      Primary Care Hospital - Critical Access Hospital
## 2344                                             Hospital Extension Clinic
## 2345                                             Hospital Extension Clinic
## 2346                                             Hospital Extension Clinic
## 2347                                             Hospital Extension Clinic
## 2348                                Residential Health Care Facility - SNF
## 2349                                Residential Health Care Facility - SNF
## 2350                                       Diagnostic and Treatment Center
## 2351                                             Hospital Extension Clinic
## 2352                      Diagnostic and Treatment Center Extension Clinic
## 2353                                                              Hospital
## 2354                                             Hospital Extension Clinic
## 2355                                             Hospital Extension Clinic
## 2356                                             Hospital Extension Clinic
## 2357                                             Hospital Extension Clinic
## 2358               Mobile Diagnostic and Treatment Center Extension Clinic
## 2359                                       Diagnostic and Treatment Center
## 2360                                             Hospital Extension Clinic
## 2361                                       Diagnostic and Treatment Center
## 2362                                Residential Health Care Facility - SNF
## 2363                                             Hospital Extension Clinic
## 2364                                             Hospital Extension Clinic
## 2365                                             Hospital Extension Clinic
## 2366                                       Diagnostic and Treatment Center
## 2367                      Diagnostic and Treatment Center Extension Clinic
## 2368                      Diagnostic and Treatment Center Extension Clinic
## 2369                                                               Hospice
## 2370                                                              Hospital
## 2371                                             Hospital Extension Clinic
## 2372                                             Hospital Extension Clinic
## 2373                                Residential Health Care Facility - SNF
## 2374                                          Certified Home Health Agency
## 2375                      Diagnostic and Treatment Center Extension Clinic
## 2376                                             Hospital Extension Clinic
## 2377                                             Hospital Extension Clinic
## 2378                                             Hospital Extension Clinic
## 2379                                                              Hospital
## 2380                                             Hospital Extension Clinic
## 2381                                Residential Health Care Facility - SNF
## 2382                                             Hospital Extension Clinic
## 2383                                Residential Health Care Facility - SNF
## 2384                                       Diagnostic and Treatment Center
## 2385         School Based Diagnostic and Treatment Center Extension Clinic
## 2386                      Diagnostic and Treatment Center Extension Clinic
## 2387                                Residential Health Care Facility - SNF
## 2388                                       Diagnostic and Treatment Center
## 2389                                School Based Hospital Extension Clinic
## 2390                                                               Hospice
## 2391                      Diagnostic and Treatment Center Extension Clinic
## 2392                      Diagnostic and Treatment Center Extension Clinic
## 2393                                      Mobile Hospital Extension Clinic
## 2394                                                              Hospital
## 2395                                             Hospital Extension Clinic
## 2396                                             Hospital Extension Clinic
## 2397                                             Hospital Extension Clinic
## 2398                                             Hospital Extension Clinic
## 2399                                       Diagnostic and Treatment Center
## 2400                                       Diagnostic and Treatment Center
## 2401                                Residential Health Care Facility - SNF
## 2402                      Diagnostic and Treatment Center Extension Clinic
## 2403                      Diagnostic and Treatment Center Extension Clinic
## 2404                                School Based Hospital Extension Clinic
## 2405                                Residential Health Care Facility - SNF
## 2406         School Based Diagnostic and Treatment Center Extension Clinic
## 2407         School Based Diagnostic and Treatment Center Extension Clinic
## 2408                                       Diagnostic and Treatment Center
## 2409                                             Hospital Extension Clinic
## 2410                      Diagnostic and Treatment Center Extension Clinic
## 2411                                             Hospital Extension Clinic
## 2412                                Residential Health Care Facility - SNF
## 2413                                       Diagnostic and Treatment Center
## 2414                                Residential Health Care Facility - SNF
## 2415                                       Diagnostic and Treatment Center
## 2416                               Adult Day Health Care Program - Offsite
## 2417                                                              Hospital
## 2418                                School Based Hospital Extension Clinic
## 2419                                       Diagnostic and Treatment Center
## 2420                      Diagnostic and Treatment Center Extension Clinic
## 2421                                School Based Hospital Extension Clinic
## 2422         School Based Diagnostic and Treatment Center Extension Clinic
## 2423                                School Based Hospital Extension Clinic
## 2424                                             Hospital Extension Clinic
## 2425                                             Hospital Extension Clinic
## 2426                      Diagnostic and Treatment Center Extension Clinic
## 2427                                Residential Health Care Facility - SNF
## 2428                                Residential Health Care Facility - SNF
## 2429                                                              Hospital
## 2430         School Based Diagnostic and Treatment Center Extension Clinic
## 2431                                School Based Hospital Extension Clinic
## 2432                                       Diagnostic and Treatment Center
## 2433                      Diagnostic and Treatment Center Extension Clinic
## 2434                                                               Hospice
## 2435                                Residential Health Care Facility - SNF
## 2436                                             Hospital Extension Clinic
## 2437                                                              Hospital
## 2438                      Diagnostic and Treatment Center Extension Clinic
## 2439                                Residential Health Care Facility - SNF
## 2440                                             Hospital Extension Clinic
## 2441                                             Hospital Extension Clinic
## 2442                                       Diagnostic and Treatment Center
## 2443                                Residential Health Care Facility - SNF
## 2444                      Diagnostic and Treatment Center Extension Clinic
## 2445                                       Diagnostic and Treatment Center
## 2446                                       Diagnostic and Treatment Center
## 2447                                Residential Health Care Facility - SNF
## 2448                                             Hospital Extension Clinic
## 2449                                Residential Health Care Facility - SNF
## 2450                                      Mobile Hospital Extension Clinic
## 2451                                       Diagnostic and Treatment Center
## 2452                                       Diagnostic and Treatment Center
## 2453                                             Hospital Extension Clinic
## 2454                                             Hospital Extension Clinic
## 2455                                             Hospital Extension Clinic
## 2456                                             Hospital Extension Clinic
## 2457                                       Diagnostic and Treatment Center
## 2458                                             Hospital Extension Clinic
## 2459                                          Certified Home Health Agency
## 2460                      Diagnostic and Treatment Center Extension Clinic
## 2461                                             Hospital Extension Clinic
## 2462                      Diagnostic and Treatment Center Extension Clinic
## 2463                      Diagnostic and Treatment Center Extension Clinic
## 2464                      Diagnostic and Treatment Center Extension Clinic
## 2465                      Diagnostic and Treatment Center Extension Clinic
## 2466                                                              Hospital
## 2467                                Residential Health Care Facility - SNF
## 2468                                             Hospital Extension Clinic
## 2469                      Diagnostic and Treatment Center Extension Clinic
## 2470                                             Hospital Extension Clinic
## 2471                               Adult Day Health Care Program - Offsite
## 2472                                       Diagnostic and Treatment Center
## 2473                               Adult Day Health Care Program - Offsite
## 2474                                       Diagnostic and Treatment Center
## 2475                                             Hospital Extension Clinic
## 2476         School Based Diagnostic and Treatment Center Extension Clinic
## 2477                                             Hospital Extension Clinic
## 2478                                Residential Health Care Facility - SNF
## 2479                                       Diagnostic and Treatment Center
## 2480                                       Diagnostic and Treatment Center
## 2481                      Diagnostic and Treatment Center Extension Clinic
## 2482                                             Hospital Extension Clinic
## 2483                      Diagnostic and Treatment Center Extension Clinic
## 2484                                Residential Health Care Facility - SNF
## 2485                                Residential Health Care Facility - SNF
## 2486                                Residential Health Care Facility - SNF
## 2487                                             Hospital Extension Clinic
## 2488                                Residential Health Care Facility - SNF
## 2489                                             Hospital Extension Clinic
## 2490                                Residential Health Care Facility - SNF
## 2491                                             Hospital Extension Clinic
## 2492                                             Hospital Extension Clinic
## 2493                                                              Hospital
## 2494                                Residential Health Care Facility - SNF
## 2495                                             Hospital Extension Clinic
## 2496                                             Hospital Extension Clinic
## 2497                                             Hospital Extension Clinic
## 2498                                       Diagnostic and Treatment Center
## 2499     Primary Care Hospital - Critical Access Hospital Extension Clinic
## 2500                                Residential Health Care Facility - SNF
## 2501                                             Hospital Extension Clinic
## 2502                      Diagnostic and Treatment Center Extension Clinic
## 2503                                             Hospital Extension Clinic
## 2504                                             Hospital Extension Clinic
## 2505                                             Hospital Extension Clinic
## 2506                                             Hospital Extension Clinic
## 2507                      Diagnostic and Treatment Center Extension Clinic
## 2508                                Residential Health Care Facility - SNF
## 2509                                       Diagnostic and Treatment Center
## 2510                                                              Hospital
## 2511                                       Diagnostic and Treatment Center
## 2512         School Based Diagnostic and Treatment Center Extension Clinic
## 2513                                    Long Term Home Health Care Program
## 2514                                             Hospital Extension Clinic
## 2515                      Diagnostic and Treatment Center Extension Clinic
## 2516                      Diagnostic and Treatment Center Extension Clinic
## 2517                               Adult Day Health Care Program - Offsite
## 2518                                       Diagnostic and Treatment Center
## 2519                      Diagnostic and Treatment Center Extension Clinic
## 2520                                                              Hospital
## 2521                                             Hospital Extension Clinic
## 2522                                Residential Health Care Facility - SNF
## 2523                                       Diagnostic and Treatment Center
## 2524                                             Hospital Extension Clinic
## 2525                                                              Hospital
## 2526                                School Based Hospital Extension Clinic
## 2527                                             Hospital Extension Clinic
## 2528                                       Diagnostic and Treatment Center
## 2529                                             Hospital Extension Clinic
## 2530                                             Hospital Extension Clinic
## 2531                                Residential Health Care Facility - SNF
## 2532                      Diagnostic and Treatment Center Extension Clinic
## 2533                                             Hospital Extension Clinic
## 2534                      Diagnostic and Treatment Center Extension Clinic
## 2535         School Based Diagnostic and Treatment Center Extension Clinic
## 2536                      Diagnostic and Treatment Center Extension Clinic
## 2537                                       Diagnostic and Treatment Center
## 2538                                       Diagnostic and Treatment Center
## 2539                                       Diagnostic and Treatment Center
## 2540         School Based Diagnostic and Treatment Center Extension Clinic
## 2541                                School Based Hospital Extension Clinic
## 2542                                Residential Health Care Facility - SNF
## 2543                                      Mobile Hospital Extension Clinic
## 2544                      Diagnostic and Treatment Center Extension Clinic
## 2545                                             Hospital Extension Clinic
## 2546                      Diagnostic and Treatment Center Extension Clinic
## 2547                                       Diagnostic and Treatment Center
## 2548                                Residential Health Care Facility - SNF
## 2549                                             Hospital Extension Clinic
## 2550                                                              Hospital
## 2551                                Residential Health Care Facility - SNF
## 2552                      Diagnostic and Treatment Center Extension Clinic
## 2553                                    Long Term Home Health Care Program
## 2554                                       Diagnostic and Treatment Center
## 2555                                             Hospital Extension Clinic
## 2556         School Based Diagnostic and Treatment Center Extension Clinic
## 2557                                       Diagnostic and Treatment Center
## 2558                                       Diagnostic and Treatment Center
## 2559                                       Diagnostic and Treatment Center
## 2560                                             Hospital Extension Clinic
## 2561                                Residential Health Care Facility - SNF
## 2562                                             Hospital Extension Clinic
## 2563                                       Diagnostic and Treatment Center
## 2564                                             Hospital Extension Clinic
## 2565                                                              Hospital
## 2566                      Diagnostic and Treatment Center Extension Clinic
## 2567                                          Certified Home Health Agency
## 2568                      Diagnostic and Treatment Center Extension Clinic
## 2569                                       Diagnostic and Treatment Center
## 2570                                       Diagnostic and Treatment Center
## 2571                      Diagnostic and Treatment Center Extension Clinic
## 2572                                                              Hospital
## 2573                                       Diagnostic and Treatment Center
## 2574                                Residential Health Care Facility - SNF
## 2575                                Residential Health Care Facility - SNF
## 2576                                Residential Health Care Facility - SNF
## 2577                                             Hospital Extension Clinic
## 2578                                Residential Health Care Facility - SNF
## 2579                      Diagnostic and Treatment Center Extension Clinic
## 2580                                                              Hospital
## 2581                                       Diagnostic and Treatment Center
## 2582                                             Hospital Extension Clinic
## 2583                                Residential Health Care Facility - SNF
## 2584         School Based Diagnostic and Treatment Center Extension Clinic
## 2585                                       Diagnostic and Treatment Center
## 2586         School Based Diagnostic and Treatment Center Extension Clinic
## 2587                                             Hospital Extension Clinic
## 2588                                                              Hospital
## 2589                                             Hospital Extension Clinic
## 2590                      Diagnostic and Treatment Center Extension Clinic
## 2591                                             Hospital Extension Clinic
## 2592                      Diagnostic and Treatment Center Extension Clinic
## 2593                                             Hospital Extension Clinic
## 2594                                School Based Hospital Extension Clinic
## 2595                                             Hospital Extension Clinic
## 2596                                             Hospital Extension Clinic
## 2597         School Based Diagnostic and Treatment Center Extension Clinic
## 2598                                             Hospital Extension Clinic
## 2599                                Residential Health Care Facility - SNF
## 2600                                             Hospital Extension Clinic
## 2601                      Diagnostic and Treatment Center Extension Clinic
## 2602                                             Hospital Extension Clinic
## 2603                                             Hospital Extension Clinic
## 2604                      Diagnostic and Treatment Center Extension Clinic
## 2605                                             Hospital Extension Clinic
## 2606                                Residential Health Care Facility - SNF
## 2607                                                              Hospital
## 2608                                                               Hospice
## 2609                                             Hospital Extension Clinic
## 2610                                             Hospital Extension Clinic
## 2611                      Diagnostic and Treatment Center Extension Clinic
## 2612                                Residential Health Care Facility - SNF
## 2613                                             Hospital Extension Clinic
## 2614                                             Hospital Extension Clinic
## 2615                                                              Hospital
## 2616                      Diagnostic and Treatment Center Extension Clinic
## 2617                                Residential Health Care Facility - SNF
## 2618                                             Hospital Extension Clinic
## 2619                                                               Hospice
## 2620                                Residential Health Care Facility - SNF
## 2621                                             Hospital Extension Clinic
## 2622                                             Hospital Extension Clinic
## 2623                                School Based Hospital Extension Clinic
## 2624                                       Diagnostic and Treatment Center
## 2625                                             Hospital Extension Clinic
## 2626                                Residential Health Care Facility - SNF
## 2627                                Residential Health Care Facility - SNF
## 2628                                Residential Health Care Facility - SNF
## 2629                                Residential Health Care Facility - SNF
## 2630                                             Hospital Extension Clinic
## 2631               Mobile Diagnostic and Treatment Center Extension Clinic
## 2632                                             Hospital Extension Clinic
## 2633                      Diagnostic and Treatment Center Extension Clinic
## 2634                                Residential Health Care Facility - SNF
## 2635                                             Hospital Extension Clinic
## 2636                      Diagnostic and Treatment Center Extension Clinic
## 2637                                             Hospital Extension Clinic
## 2638                                                              Hospital
## 2639                                             Hospital Extension Clinic
## 2640                      Diagnostic and Treatment Center Extension Clinic
## 2641                                             Hospital Extension Clinic
## 2642                                Residential Health Care Facility - SNF
## 2643                                             Hospital Extension Clinic
## 2644                                             Hospital Extension Clinic
## 2645                      Diagnostic and Treatment Center Extension Clinic
## 2646                                                               Hospice
## 2647                                       Diagnostic and Treatment Center
## 2648                                School Based Hospital Extension Clinic
## 2649                                Residential Health Care Facility - SNF
## 2650                      Diagnostic and Treatment Center Extension Clinic
## 2651                                             Hospital Extension Clinic
## 2652                      Diagnostic and Treatment Center Extension Clinic
## 2653                                             Hospital Extension Clinic
## 2654                                             Hospital Extension Clinic
## 2655                                             Hospital Extension Clinic
## 2656                                Residential Health Care Facility - SNF
## 2657                                       Diagnostic and Treatment Center
## 2658                                             Hospital Extension Clinic
## 2659                                                               Hospice
## 2660                      Diagnostic and Treatment Center Extension Clinic
## 2661                                       Diagnostic and Treatment Center
## 2662                                Residential Health Care Facility - SNF
## 2663                                       Diagnostic and Treatment Center
## 2664                                             Hospital Extension Clinic
## 2665                                             Hospital Extension Clinic
## 2666                                             Hospital Extension Clinic
## 2667                      Diagnostic and Treatment Center Extension Clinic
## 2668                                             Hospital Extension Clinic
## 2669                                Residential Health Care Facility - SNF
## 2670                      Diagnostic and Treatment Center Extension Clinic
## 2671                      Diagnostic and Treatment Center Extension Clinic
## 2672                                       Diagnostic and Treatment Center
## 2673                      Diagnostic and Treatment Center Extension Clinic
## 2674                      Diagnostic and Treatment Center Extension Clinic
## 2675                                             Hospital Extension Clinic
## 2676                                Residential Health Care Facility - SNF
## 2677                      Diagnostic and Treatment Center Extension Clinic
## 2678                                School Based Hospital Extension Clinic
## 2679                                             Hospital Extension Clinic
## 2680                                       Diagnostic and Treatment Center
## 2681                                                               Hospice
## 2682                                          Certified Home Health Agency
## 2683                                Residential Health Care Facility - SNF
## 2684                                       Diagnostic and Treatment Center
## 2685                                School Based Hospital Extension Clinic
## 2686                                                              Hospital
## 2687                                             Hospital Extension Clinic
## 2688                      Diagnostic and Treatment Center Extension Clinic
## 2689                                             Hospital Extension Clinic
## 2690                                       Diagnostic and Treatment Center
## 2691                                Residential Health Care Facility - SNF
## 2692                                       Diagnostic and Treatment Center
## 2693                                             Hospital Extension Clinic
## 2694                      Diagnostic and Treatment Center Extension Clinic
## 2695         School Based Diagnostic and Treatment Center Extension Clinic
## 2696                                Residential Health Care Facility - SNF
## 2697                                             Hospital Extension Clinic
## 2698                      Diagnostic and Treatment Center Extension Clinic
## 2699                                             Hospital Extension Clinic
## 2700                                             Hospital Extension Clinic
## 2701                                Residential Health Care Facility - SNF
## 2702                                             Hospital Extension Clinic
## 2703 School Based Primary Care Hospital - Critical Access Extension Clinic
## 2704                                Residential Health Care Facility - SNF
## 2705                                School Based Hospital Extension Clinic
## 2706                                          Certified Home Health Agency
## 2707                                             Hospital Extension Clinic
## 2708                                Residential Health Care Facility - SNF
## 2709                                             Hospital Extension Clinic
## 2710                                                              Hospital
## 2711                                       Diagnostic and Treatment Center
## 2712                                             Hospital Extension Clinic
## 2713         School Based Diagnostic and Treatment Center Extension Clinic
## 2714                      Diagnostic and Treatment Center Extension Clinic
## 2715                      Diagnostic and Treatment Center Extension Clinic
## 2716                                             Hospital Extension Clinic
## 2717                                          Certified Home Health Agency
## 2718                                Residential Health Care Facility - SNF
## 2719                                       Diagnostic and Treatment Center
## 2720                      Diagnostic and Treatment Center Extension Clinic
## 2721                                Residential Health Care Facility - SNF
## 2722                                             Hospital Extension Clinic
## 2723                                Residential Health Care Facility - SNF
## 2724                      Diagnostic and Treatment Center Extension Clinic
## 2725                      Diagnostic and Treatment Center Extension Clinic
## 2726                                Residential Health Care Facility - SNF
## 2727                                                              Hospital
## 2728                                             Hospital Extension Clinic
## 2729                      Diagnostic and Treatment Center Extension Clinic
## 2730                                             Hospital Extension Clinic
## 2731                                             Hospital Extension Clinic
## 2732                                             Hospital Extension Clinic
## 2733                                       Diagnostic and Treatment Center
## 2734                                       Diagnostic and Treatment Center
## 2735                      Diagnostic and Treatment Center Extension Clinic
## 2736         School Based Diagnostic and Treatment Center Extension Clinic
## 2737                                             Hospital Extension Clinic
## 2738                                Residential Health Care Facility - SNF
## 2739                                             Hospital Extension Clinic
## 2740                      Diagnostic and Treatment Center Extension Clinic
## 2741                                       Diagnostic and Treatment Center
## 2742                                                              Hospital
## 2743                                School Based Hospital Extension Clinic
## 2744                                             Hospital Extension Clinic
## 2745                                       Diagnostic and Treatment Center
## 2746                                             Hospital Extension Clinic
## 2747                                       Diagnostic and Treatment Center
## 2748                                             Hospital Extension Clinic
## 2749                      Diagnostic and Treatment Center Extension Clinic
## 2750                                             Hospital Extension Clinic
## 2751                      Diagnostic and Treatment Center Extension Clinic
## 2752                                             Hospital Extension Clinic
## 2753                                             Hospital Extension Clinic
## 2754                                                              Hospital
## 2755                                Residential Health Care Facility - SNF
## 2756                      Diagnostic and Treatment Center Extension Clinic
## 2757                                          Certified Home Health Agency
## 2758                      Diagnostic and Treatment Center Extension Clinic
## 2759                                Residential Health Care Facility - SNF
## 2760                                             Hospital Extension Clinic
## 2761                                Residential Health Care Facility - SNF
## 2762                                Residential Health Care Facility - SNF
## 2763                                    Long Term Home Health Care Program
## 2764                                                               Hospice
## 2765                                Residential Health Care Facility - SNF
## 2766                                             Hospital Extension Clinic
## 2767                                                              Hospital
## 2768                      Diagnostic and Treatment Center Extension Clinic
## 2769                      Diagnostic and Treatment Center Extension Clinic
## 2770                      Diagnostic and Treatment Center Extension Clinic
## 2771         School Based Diagnostic and Treatment Center Extension Clinic
## 2772                      Diagnostic and Treatment Center Extension Clinic
## 2773                                             Hospital Extension Clinic
## 2774                                       Diagnostic and Treatment Center
## 2775                                                               Hospice
## 2776                                       Diagnostic and Treatment Center
## 2777                                Residential Health Care Facility - SNF
##      Facility.Open.Date                                 Facility.Address.1
## 1            06/01/1985                               4102 Old Vestal Road
## 2            02/01/1989                                 2050 Tilden Avenue
## 3            02/01/1989                        116 Martin Luther King East
## 4            08/01/1979                                     62 Prospect St
## 5            02/01/1989                                 4192A Bolivar Road
## 6            04/08/1992                                  2699 Wehrle Drive
## 7            04/07/2008                                      400 Endo Blvd
## 8            05/15/1990                                346 Delaware Avenue
## 9            09/01/2002                 110 Bi-County Boulevard, Suite 114
## 10           01/01/2006                                     305 Second Ave
## 11           01/20/2003                                 711 Stewart Avenue
## 12           02/23/2006                                   139 Fields Drive
## 13           07/08/1997                                    6317 4th Avenue
## 14           02/01/1998                                    415 Main Street
## 15           11/01/1998                                     790 Ridge Road
## 16           04/15/1999                                   46520 North Road
## 17           02/23/2000                                  34 Benwood Avenue
## 18           05/14/2008                                 344 West 51 Street
## 19           10/01/2010                                   19 Laurel Avenue
## 20           09/01/2010                                     7 Stetson Road
## 21           01/03/2012                                    105 Dart Circle
## 22           01/03/2012                             2666 West State Street
## 23           07/01/2011                                     80 West Avenue
## 24           12/05/2013                                 91 Plaza Boulevard
## 25           10/02/2014                                   14 DeKalb Avenue
## 26           06/30/2015                                   65 Ashburton Ave
## 27           10/31/2016                       800 Second Avenue, 6th Floor
## 28           07/01/2017                                200 Carleton Avenue
## 29           12/04/2017                            2200 Northern Boulevard
## 30           01/25/2018                          207 Troy-Schenectady Road
## 31           11/24/2004                              Lark and Arbor Drives
## 32           01/01/1901                        66 Van Cortlandt Park South
## 33           09/18/2007                                 3125 Emmons Avenue
## 34           02/01/1989                                  48 Colonial Drive
## 35           06/26/1990                              545 East 142nd Street
## 36           09/22/1995                           264 West Dominick Street
## 37           10/18/1991                                    125 Main Street
## 38           04/19/2010                                95 Crystal Run Road
## 39           06/16/2006                                      21 Fox Street
## 40           04/29/2019                               1808 Crotona Parkway
## 41           08/11/1998                      295 Flatbush Avenue Extension
## 42           10/04/2002                                 3018 Military Road
## 43           07/01/2006                 118-01,05,07A Guy Brewer Boulevard
## 44           09/27/1979                           34-33 Junction Boulevard
## 45           12/17/2019                                 175 Tarrytown Road
## 46           07/06/2000                                7785 North State St
## 47           02/07/1991                                    135 Main Street
## 48           03/29/1996                              79 Vandenburgh Avenue
## 49           06/02/2004                                  148 Wilson Avenue
## 50           11/14/2019                                  120 Church Street
## 51           07/01/1992                                    309 47th Street
## 52           08/01/1979                            2475 St. Raymond Avenue
## 53           05/30/2019                                  203 West Route 59
## 54           11/01/1999                                        544 7th Ave
## 55           09/19/1983                                 777 Seaview Avenue
## 56           10/01/2006                              550 Orchard Park Road
## 57           01/01/1901                          3062 County Complex Drive
## 58           04/07/2008                                  350 Gerard Avenue
## 59           11/01/2000                            1325 Morris Park Avenue
## 60           01/01/1901                                   147 Reist Street
## 61           09/21/2010                                1 Murray Hill Drive
## 62           12/01/1999                                  91 Perimeter Road
## 63           11/23/1987                                  12 Schumann Court
## 64           03/04/1987                          100 North Portland Avenue
## 65           08/31/2005                                     15 Park Avenue
## 66           05/26/2005                                   64 Davison Court
## 67           08/03/2012                              165 East Union Street
## 68           09/11/2014                                 711 Stewart Avenue
## 69           01/01/1901                              1111 Amsterdam Avenue
## 70           02/11/1997                              159 Jefferson Heights
## 71           01/01/1901                                     45 Reade Place
## 72           01/27/1997                                   2985 Navajo Road
## 73           04/27/2009                               510 S. Fourth Street
## 74           08/30/2004                                   9864 Lucky Drive
## 75           03/25/2005                                 325 Cedarwood Hall
## 76           07/01/1992                                  465 New Dorp Lane
## 77           08/15/2017                                520 Ellicott Street
## 78           04/23/2003                       66 Park Street, P.O. Box 277
## 79           06/27/1995                               One Greenwich Street
## 80           08/07/2009                                 180 Sawgrass Drive
## 81           11/28/2003                                       260 Avenue X
## 82           07/19/2017                              300 Cadman Plaza West
## 83           07/23/2008                             3750 Baychester Avenue
## 84           03/16/2015                               101-01 Rockaway Blvd
## 85           09/23/2002                                 158 Orchard Street
## 86           02/27/2007                                  1200 Waters Place
## 87           09/16/2019                     1240 Ulster Avenue, Suite 1004
## 88           01/01/1901                              75 North Country Road
## 89           10/20/2018                                      1601 Avenue S
## 90           06/10/1994                                 1430 Second Avenue
## 91           11/15/1991                                110 Beaver Dam Road
## 92           01/01/1901                                  4101 E Genesee St
## 93           04/02/1996                              103 Rensselaer Street
## 94           08/05/2013                             475 New Hempstead Road
## 95           02/25/1998                              1616 Bronxdale Avenue
## 96           11/24/2010                                     48 East Street
## 97           09/28/1988                                   56 Market Street
## 98           06/01/1987                              61-35 Dry Harbor Road
## 99           01/01/1901                               1650 Champlin Avenue
## 100          07/28/2011                               340 Arnett Boulevard
## 101          12/08/2015                                    498 French Road
## 102          09/28/2017                              413 East 120th Street
## 103          09/27/1979                              411 West 114th Street
## 104          01/17/2020                              240 North Main Street
## 105          11/25/1991                          35 South Riverside Avenue
## 106          01/01/1901                                427 Guy Park Avenue
## 107          02/04/1998                             1895 Walt Whitman Road
## 108          03/18/2015                                 2522 Hughes Avenue
## 109          09/05/2001                                      645 Tenth Ave
## 110          09/27/1979          115 East Stevens Avenue, Suites 104 & 105
## 111          08/07/2000                                      2753 Route 20
## 112          08/05/2016                              2950 West 25th Street
## 113          08/27/1990                                  1049 Fifth Avenue
## 114          04/05/2019                            1101 Hempstead Turnpike
## 115          10/25/2018                        120 East Sandford Boulevard
## 116          10/01/2009                                   15 Laurel Avenue
## 117          02/02/1998                 2067 Fairport Nine Mile Point Road
## 118          01/01/1901              68 Harris-Bushville Road P.O. Box 800
## 119          03/01/2000                                     120 E 184th St
## 120          06/23/1998                                181 Belle Mead Road
## 121          02/24/1997                                2581 Seventh Avenue
## 122          02/02/1999                          4208 Medical Center Drive
## 123          08/12/2019                         385 Watervliet Shaker Road
## 124          02/11/1985                                 1316 Fulton Avenue
## 125          10/01/2004                             35 West William Street
## 126          09/12/2002                                  445 Kings Highway
## 127          01/01/1901                                7571 State Route 54
## 128          07/06/1999                         1072 Troy Schenectady Road
## 129          07/01/2015                                 220 Steuben Street
## 130          10/15/1980                                   46 East Broadway
## 131          04/15/1999                                   100-17 23 Avenue
## 132          01/01/1901                                220-22 Hillside Ave
## 133          01/01/1901                             43 New Scotland Avenue
## 134          09/03/2019                                     100 Woods Road
## 135          03/04/2001                                   100 Broad Street
## 136          06/19/1996                                 5856 Scenic Avenue
## 137          01/01/1901                           25-15 Queens Plaza North
## 138          09/22/2016                            226 Middle Country Road
## 139          09/27/1979                                      1519 Nye Road
## 140          02/01/1980                                3525 Baychester Ave
## 141          10/01/2004                             755 East Church Street
## 142          11/15/2004                                5100 West Taft Road
## 143          05/15/2002                   1375 Washington Avenue-Suite 201
## 144          10/01/2001                                     37 Main Street
## 145          02/01/1989                                       2781 Route 9
## 146          04/11/1994                 11849 East Corning Road, Suite 108
## 147          01/01/2006                                    449 Main Street
## 148          08/01/1994                               855 West Main Street
## 149          02/06/1991                     1445 Portland Avenue Suite 175
## 150          08/21/2013                               1650 Champlin Avenue
## 151          08/30/1995                                 165 Coleman Avenue
## 152          03/31/1987                               150 Dark Hollow Road
## 153          01/01/1901                                       813 Fay Road
## 154          11/13/2006                               301 East 55th Street
## 155          06/19/1997                          743-749 East Ninth Street
## 156          12/06/2000                                      10 Benton Ave
## 157          09/28/2017                                   1170 Main Street
## 158          01/20/1988                              1101 Pelham Parkway N
## 159          02/25/2004                                 3007 Farragut Road
## 160          08/28/2015                    3525 White Plains Road, Suite A
## 161          06/19/1996                          4939 Brittonfield Parkway
## 162          08/27/2013                                  940 Fernwood Park
## 163          02/01/1979                                   49 Marvin Avenue
## 164          09/27/1979                                   90-04 161 Street
## 165          01/01/1901                                       127 North St
## 166          09/28/2017                              30 Century Hill Drive
## 167          02/17/1988                            410 South Crouse Avenue
## 168          01/01/1901                                    101 Dates Drive
## 169          08/18/1988                                   2250 Ryer Avenue
## 170          09/04/2007                                  245-1 Main Street
## 171          09/03/1998                               225 East 45th Street
## 172          08/01/1980                                       1000 High St
## 173          07/07/2011                               475 East 72nd Street
## 174          01/01/1901                                   1752 Park Avenue
## 175          11/28/2012                                 3200 Burnet Avenue
## 176          02/19/2002                                       268 Canal St
## 177          09/27/1979                              333 East 115th Street
## 178          06/17/2005                                     17 Main Street
## 179          11/10/2004                           91-93 South Third Street
## 180          09/27/2011                                  611 Northern Blvd
## 181          07/01/1972                                    505 Main Street
## 182          07/01/1992                                  284 Baltic Street
## 183          01/01/1991                              4975 Albany Post Road
## 184          08/26/2004                               2150 Bleecker Street
## 185          07/01/2014                             2700 North Forest Road
## 186          01/01/1901                                  121 Dekalb Avenue
## 187          01/01/1901                                      4915 10th Ave
## 188          10/02/1989                                7571 State Route 54
## 189          11/15/2000                           Route 104&Old Ridge Road
## 190          02/01/1980                               2150 St. Paul Street
## 191          01/01/1901                                    One Healthy Way
## 192          04/17/2006                               1116 Sheridan Avenue
## 193          01/04/2000                                  151 Elmview Drive
## 194          02/04/1985                                2256 Burdett Avenue
## 195          03/13/2019                              256-11 Union Turnpike
## 196          01/21/2010                                    351 Main Street
## 197          08/01/2019                                    3 Fuller Street
## 198          12/15/1993                                909 Strawberry Lane
## 199          07/01/2018                       143-10 Springfield Boulevard
## 200          02/28/2007                                 71 Prospect Avenue
## 201          11/01/2018                                146 Meserole Street
## 202          05/11/1998                                     25 Field Court
## 203          10/30/2013                              1040 Havemeyer Avenue
## 204          02/08/2006                                        6 Care Lane
## 205          12/05/2003                              127 North Main Street
## 206          07/29/2016                               3045 John Trush Blvd
## 207          12/21/1992                                  400 Irving Avenue
## 208          06/15/2009                           1204 Driving Park Avenue
## 209          02/23/2000                              260 East 188th Street
## 210          11/07/2007                                105-04 Sutphin Blvd
## 211          04/27/2015                                   2101 Quarry Road
## 212          02/26/2016                    178 Washington Avenue Extension
## 213          04/18/1995                                   2787 Main-Street
## 214          02/11/2014                                  1249 Fifth Avenue
## 215          05/03/2010                                  4 Irongate Center
## 216          10/10/1978                       One Fordham Plaza Suite 1100
## 217          01/08/2007                                    279 Main Street
## 218          01/01/1901                              750 East Adams Street
## 219          10/28/2011                              691 East 138th Street
## 220          06/11/2013                           108 Holland Circle Drive
## 221          10/18/2011                                  4215 Third Avenue
## 222          05/14/1999                      800 Veterans Memorial Highway
## 223          07/01/1992                                1045 Nameoke Street
## 224          10/15/2015                                   21 West Broadway
## 225          07/01/1992                              219 East 109th Street
## 226          11/27/2006                                   750 Portage Road
## 227          12/16/2011                                    2875 Union Road
## 228          10/31/1994                               200 Old Country Road
## 229          04/26/2002                                600 Montauk Highway
## 230          12/16/2019                            765 Geneva Crossing Way
## 231          09/01/2006                               320 West 21st Street
## 232          08/07/2019                                   1485 New York 9D
## 233          02/04/2013                                100 Lafayette Drive
## 234          01/01/1901                                   462 First Avenue
## 235          02/01/1989                           134 Great East Neck Road
## 236          02/11/2008                                   One Fox Run Lane
## 237          06/20/1994                                Landing Meadow Road
## 238          03/22/2006                                  182 Steele Avenue
## 239          04/03/2003                              21 Crossing Boulevard
## 240          07/01/2019                               200-16 Hollis Avenue
## 241          01/01/1901                             315 South Manning Blvd
## 242          04/25/1996                       50 Clinton Street, Suite 601
## 243          02/14/2013                                 16-18 Sumner Place
## 244          08/01/1979                               275 Castleton Avenue
## 245          06/21/1999                                    124 Ford Avenue
## 246          03/01/1988                      447-449 Lake Shore Drive West
## 247          02/01/1989                                   526 Altamont Ave
## 248          01/01/1901                                    565 Abbott Road
## 249          07/15/2004                           114-39 Sutphin Boulevard
## 250          09/06/2006                                   71 Hester Street
## 251          01/01/1901                                      4988 Sthwy 30
## 252          08/11/1998                                 388 Pulaski Street
## 253          09/09/2004                            2020 East Gun Hill Road
## 254          03/08/2010                           100 Woodland Pond Circle
## 255          01/26/1998                                 450 Waverly Avenue
## 256          01/01/1901                                     14012 Route 31
## 257          01/13/1989                       1414 Utica Avenue, 2nd Floor
## 258          01/01/1901                                   35 Colvin Avenue
## 259          01/01/1901                                149 Ballston Avenue
## 260          02/01/1980                              2700 Eastchester Road
## 261          02/22/2016                                    35 Felters Road
## 262          01/01/1997                                   14 Prince Street
## 263          06/19/1997                          136-26 37th Avenue 2nd Fl
## 264          07/09/2002                               800 Castleton Avenue
## 265          06/28/1996                                1440 Western Avenue
## 266          08/05/2016                                   4211 14th Avenue
## 267          03/30/2015                                  1510 Waters Place
## 268          04/22/2010                                 515 Madison Avenue
## 269          04/25/1994                                     2175 Quarry Rd
## 270          12/07/1995                                5415 County Road 30
## 271          01/01/1901                                    41 Maine Avenue
## 272          06/08/1981                                  3005 Watkins Road
## 273          08/29/1989                                        50 Broadway
## 274          01/01/1901                                  1000 South Avenue
## 275          01/01/1901                                       115 Broadway
## 276          07/01/1992                                450 St Paul's Place
## 277          01/30/1984                                     4005 West Road
## 278          01/01/1991                             140 Beach 113th Street
## 279          01/01/2015                                    290 Main Street
## 280          06/12/1987                                    322 Park Avenue
## 281          08/17/1993                              232 East 103rd Street
## 282          02/21/2019                                 320 Prather Avenue
## 283          10/05/1993              Pelham Parkway South & Eastchester Rd
## 284          02/01/1981                                   74 Bunner Street
## 285          02/07/2006                             690 West German Street
## 286          02/16/1996                                  4675 Sunset Drive
## 287          06/01/2012                                  3400 Vickery Road
## 288          05/09/1985                                   531 Meade Street
## 289          10/09/1996                                   55 Mohawk Street
## 290          07/01/1992                              140 West 102nd Street
## 291          10/29/2013                 1150 Crosspointe Professional Park
## 292          05/25/2016                                    33 Grand Street
## 293          10/16/1995                       2600 Niagara Falls Boulevard
## 294          10/20/2018                               769 Onderdonk Avenue
## 295          03/01/1997                                  1305 Utica Avenue
## 296          06/18/2015                                 2031 Forest Avenue
## 297          09/27/1979                                   70 Bunner Street
## 298          01/01/1901                                   10 George Street
## 299          08/17/1990                                  51 Glasgow Avenue
## 300          08/28/1995                                220 Richmond Avenue
## 301          10/25/2011                                147-201 Lake Street
## 302          05/19/2015                                Sherman Potts Drive
## 303          05/16/2012                                   10 Medical Plaza
## 304          05/11/2018                                169 Riverside Drive
## 305          09/01/1985                       4277 Middle  Settlement Road
## 306          05/12/1998                   263 7th Avenue, 2nd & 3rd Floors
## 307          05/05/2008                            36-17 Parsons Boulevard
## 308          09/27/1996                             755 Hempstead Turnpike
## 309          05/10/1990                                   Six Xavier Drive
## 310          01/01/1901                                       396 Broadway
## 311          09/05/2012                                    915 Dean Street
## 312          09/19/2003                                636 New Loudon Road
## 313          06/26/2014                                52 South Union Road
## 314          01/01/1901                             2245 West State Street
## 315          11/13/2014                               181 Belle Meade Road
## 316          03/22/2011                                 175-10 88th Avenue
## 317          11/29/2012                            123-125 W. 124th Street
## 318          11/15/2019                                  959 State Route 9
## 319          01/01/1901                                           Route 40
## 320          05/25/2017                             185 South Tenth Street
## 321          07/01/2014                            939 Little Britain Road
## 322          01/01/1901                               222 East Main Street
## 323          03/26/2008                                5 East 102nd Street
## 324          01/24/2011                                 8 Dennison Parkway
## 325          08/02/2012                                 214 Alexander Park
## 326          04/29/1996                    Squire Hall-3435 Main St-SUNY/B
## 327          02/01/1980                                 839 Suffolk Avenue
## 328          11/04/2005                           1704-1706 Mermaid Avenue
## 329          07/15/2013                                    156 West Avenue
## 330          09/23/1986                                2005 Sheridan Drive
## 331          01/13/2003                              120 Mineola Boulevard
## 332          01/01/1901                                     79-01 Broadway
## 333          03/29/2007                             3229 E. Genesee Street
## 334          08/28/2015                                 195 Parrish Street
## 335          12/31/1990                                    405 Carlton Ave
## 336          07/24/1997                                        2 Empire Dr
## 337          08/21/2014                                 54 Rutledge Street
## 338          09/01/2011                            116 Business Park Drive
## 339          02/10/1989                                     10 Hagen Drive
## 340          01/04/2005                    2-4 West Genesee Street-Suite 2
## 341          04/07/1997                             1237 Washington Street
## 342          01/26/1999                               1873 Eastern Parkway
## 343          08/24/2006                                   19 Warehouse Row
## 344          06/22/1982                               1080 Sunrise Highway
## 345          02/10/2017                             171-19 Hillside Avenue
## 346          09/30/1988                             99 Sunnyside Boulevard
## 347          07/05/2018   Seneca Hill Health Campus, Suite 200, 105 CR 45A
## 348          01/01/1901                                 29-01 216th Street
## 349          02/29/2000                              521 Beach 20th Street
## 350          09/14/2017                                   525 West 50th St
## 351          01/01/2007                                    360 Bard Avenue
## 352          08/15/2007                                   8620 18th Avenue
## 353          04/06/2005                            85 West Burnside Avenue
## 354          03/20/1989                                 243 So Main Street
## 355          09/01/1981                                   3767 Main Street
## 356          07/01/2001                            Route 343 P.O. Box 3360
## 357          12/31/2013                                 271 Andrews Street
## 358          06/04/2002                              175 West 166th Street
## 359          12/03/2018                             7309 Seneca Road North
## 360          03/10/1998                                871 Prospect Avenue
## 361          12/15/2014                       Sure Temp Co, 43-47 Lake Ave
## 362          08/26/1996                               1650 Champlin Avenue
## 363          02/08/1991                                  1160 Fifth Avenue
## 364          04/01/2013                                    127 Main Street
## 365          01/01/1901                               100 East 77th Street
## 366          06/28/1982                                   121 Dunning Road
## 367          12/04/2015                            97-04 Sutphin Boulevard
## 368          09/01/2016                              176-35 Union Turnpike
## 369          06/06/1995                               33 North Main Street
## 370          06/14/1999                          211-11 Northern Boulevard
## 371          04/01/2011                                   200 Broad Street
## 372          01/01/1901                                     25 12th Street
## 373          06/05/2012                                 136-65 37th Avenue
## 374          10/23/1984                             191-06 Hillside Avenue
## 375          06/01/2001                                22 Willowbrook Road
## 376          02/10/2010                                 140 Burwell Street
## 377          06/13/2003                              722 West 168th Street
## 378          02/01/1980                        1 Jansen Road, P.O. Box 909
## 379          04/10/1991                                 100 Pinewild Drive
## 380          01/01/1991                              203 Old Military Road
## 381          09/24/2004                              One Mount Hope Avenue
## 382          09/14/1993                          63 Shaker Road, Suite 203
## 383          03/06/1992                               70 West Burnside Ave
## 384          05/23/2019                    105-20 Rockaway Beach Boulevard
## 385          06/15/1997                              630 West 168th Street
## 386          01/01/2003                              515 West 182nd Street
## 387          02/01/1980                              1540 Tomlinson Avenue
## 388          03/17/2014                                    510 Geyser Road
## 389          09/19/2007                                   180 Sixth Avenue
## 390          02/01/1980                                 71-20 110th Street
## 391          06/15/2010                            2201 Hempstead Turnpike
## 392          09/27/1979                         3837 West Main Street Road
## 393          09/09/1985                        11 Cross Street, PO Box 539
## 394          01/01/1901                                2215 Burdett Avenue
## 395          07/31/2014                               619 West 54th Street
## 396          01/04/1988                                     11 Stokum Lane
## 397          06/17/1996                               641 Lexington Avenue
## 398          02/11/2013                          579 Troy Schenectady Road
## 399          01/01/1901                    One Crosfield Avenue, 2nd Floor
## 400          01/30/1980                                    4 Fuller Street
## 401          07/01/2000                                    142 Audubon Ave
## 402          12/17/2018                              2651 Strang Boulevard
## 403          03/17/2006                                 450 Lakeville Road
## 404          10/12/2013                               5087 Broadway Avenue
## 405          04/11/2017                  400 Westage Business Center Drive
## 406          10/06/1995                                 470 Collins Street
## 407          09/04/2014                                    6677-B Broadway
## 408          06/23/2003                              2805 Cincinnatus Road
## 409          07/15/2016                                      24 Groton Ave
## 410          10/21/2008               Kem Plaza, 4803 Route 30, Perth Road
## 411          03/03/2012                                5496 East Taft Road
## 412          04/13/2017                              689 Mamaroneck Avenue
## 413          11/27/2006                                   2697 Main Street
## 414          06/11/2018                                 512 W 126th Street
## 415          09/01/1997                         Hickory&414 So Division St
## 416          09/11/2001                            222 Station Plaza North
## 417          08/17/1998                                1100 Long Pond Road
## 418          12/31/2002                                 4781-4783 Broadway
## 419          12/16/1985                    2042 Albany Post Road, Suite #2
## 420          05/20/2009                                     70 Arkay Drive
## 421          07/05/2019                                74 Wallabout Street
## 422          09/27/1996                      695 Rotterdam Industrial Park
## 423          03/04/2016                             800 West Miller Street
## 424          12/09/2011                                  34 Benwood Avenue
## 425          08/08/2006                                 2079 Forest Avenue
## 426          09/18/1992                           1127 East Genesee Street
## 427          01/12/1995                                    155 Dean Street
## 428          01/28/2010                              1750 Amsterdam Avenue
## 429          02/01/1989                                 2107 Ditmas Avenue
## 430          12/31/2002                              575 West 181st Street
## 431          01/01/1901                               135 Linden Boulevard
## 432          01/08/2002                               1299 Portland Avenue
## 433          01/01/1901                                 119-09 26th Avenue
## 434          04/11/2016                  30 Hatfield Lane, Bldg 2, Suite 1
## 435          01/01/1901                               255 Lafayette Avenue
## 436          01/01/1901                               140 West Main Street
## 437          09/27/1979                                    301 West Avenue
## 438          09/27/1979                                    297 Main Street
## 439          08/23/2012                                1089 Kinkead Avenue
## 440          08/01/2018                                601 Parkside Avenue
## 441          01/17/1984                                       813 Fay Road
## 442          02/01/1980                          1440 Port Washington Blvd
## 443          05/15/1995                                 22 Van Duzer Place
## 444          06/04/2014                                2757 Elmwood Avenue
## 445          10/21/2002                            400 Pennsylvania Avenue
## 446          03/26/2002                               170 Old Country Road
## 447          06/12/2019                                      3117 Avenue W
## 448          05/05/1995                   182-19 Horace Harding Expressway
## 449          03/26/2018                                 1419 Myrtle Avenue
## 450          10/21/1994                             335 Meeting House Lane
## 451          12/21/2001                         1725 Brentwood Rd - Bldg 1
## 452          01/28/2010                                    153 35th Street
## 453          01/01/1995                         500 Federal Street,6th Flr
## 454          01/01/2004                                 1591 Fulton Avenue
## 455          09/21/1992                                500 Red Creek Drive
## 456          12/03/1999                              1500 Jericho Turnpike
## 457          03/21/2014                              1733 Eastchester Road
## 458          09/09/2015                               1225 Morris Park Ave
## 459          02/01/1979                                One Long Beach Road
## 460          06/19/2019                                 101 East Post Road
## 461          12/14/2003                                  71-12 Park Avenue
## 462          04/04/2013                              120 North Main Street
## 463          04/15/1996                             335 Old Tarrytown Road
## 464          06/07/1993                                   2 Mercycare Lane
## 465          01/01/1991                           800 West Chestnut Street
## 466          10/04/2018                               20414 Sunrise Avenue
## 467          07/06/2005                                    2125 River Road
## 468          01/26/1998                                 175 Tarrytown Road
## 469          04/15/1991                                        5225 Rt 347
## 470          10/15/1998                                  1484 First Avenue
## 471          08/25/1997                                    119 Whig Street
## 472          06/29/2012                                  462 Grider Street
## 473          04/11/2003                                  2604 Third Avenue
## 474          02/23/2010                             26908 Independence Way
## 475          04/07/1993                                100 Attorney Street
## 476          12/22/2000                                  600 Northern Blvd
## 477          02/19/2010                           1122 Coney Island Avenue
## 478          08/01/1980                   1014 Oswegatchie Trail PO Box 10
## 479          03/26/1999                                 577 County Route 1
## 480          05/30/2019                                   214A Lake Avenue
## 481          05/21/2019                            97-04 Sutphin Boulevard
## 482          10/20/2004                                 1221 Jerome Avenue
## 483          08/01/1983                                   282 Riverside Dr
## 484          06/14/2000                                   70 Hatfield Lane
## 485          02/11/1994                                  1 Abele Boulevard
## 486          04/21/1988                               2350 Ridgeway Avenue
## 487          01/18/1996                                172-61 Baisley Blvd
## 488          09/14/1998                                 3414 Church Avenue
## 489          01/01/1998                                53 West 23rd Street
## 490          12/07/1987                   200 Elwood Davis Road, 2nd floor
## 491          04/21/1995                            100 Highlands Boulevard
## 492          06/16/1993                              728 North Main Street
## 493          12/16/2016                                    23 Hammond Lane
## 494          01/01/1901                              191 North Main Street
## 495          04/06/1994                               121 Opportunity Lane
## 496          10/13/2017                               200 West 13th Street
## 497          10/14/2010                                    699 92nd Street
## 498          07/30/2001                               1574-78 Hillside Ave
## 499          01/01/1901                              2975 Independence Ave
## 500          11/21/2011                                  628 Tinton Avenue
## 501          03/31/1998                                    2 Medical Plaza
## 502          12/10/2018                              30 Century Hill Drive
## 503          06/21/2019                                 35 Franklin Avenue
## 504          02/25/2019                                   4250 Culver Road
## 505          12/13/2007                                   1305 York Avenue
## 506          01/01/1901                                   61 Delano Street
## 507          04/26/1995                                 1635 Poplar Street
## 508          01/28/2010                                       221 Broadway
## 509          02/01/1989                                    7 Keeler Avenue
## 510          02/27/1984                                 845 Central Avenue
## 511          07/01/1992                                  60 Crescent Place
## 512          02/01/1980                           1455 Coney Island Avenue
## 513          09/30/2013                                    850 49th Street
## 514          08/24/2015                                     705 Maple Road
## 515          02/24/2014                                 6930 Williams Road
## 516          01/10/2002                                  46-04 31st Avenue
## 517          09/25/2012                                 1300 Boyton Avenue
## 518          01/01/1901                                   301 Hackett Blvd
## 519          01/08/2007                            1 Family Practice Drive
## 520          12/23/2019                              271 East 138th Street
## 521          08/30/1996                                 500 Seaview Avenue
## 522          03/17/2011                                   8622 Bay Parkway
## 523          10/21/2019                               230 West 17th Street
## 524          09/25/2013                   530 West 166th Street, 3rd Floor
## 525          04/06/2012                                 1183 Monroe Avenue
## 526          08/01/1979                                   10 Claremont Ave
## 527          06/25/2015                                60 Jefferson Street
## 528          09/12/1996                                   1201 Nott Street
## 529          09/17/1992                          666 Broadway  Tenth Floor
## 530          05/30/2017                               117-11 Myrtle Avenue
## 531          12/31/2008                        100 Hospital Road Suite 121
## 532          02/01/2010                               225 East 23rd Street
## 533          08/30/2002                                  305 Locust Avenue
## 534          09/26/2003                                 125 High Rock Road
## 535          03/17/2014                                 1 Bell Tower Drive
## 536          01/01/1901                                       133 Pratt St
## 537          06/26/2008                              430 Southside Parkway
## 538          02/01/1996                                  35 Gilbert Street
## 539          03/21/2013                                        3 Care Lane
## 540          06/28/1995                                     147 Beach Road
## 541          10/06/1989                                 1983 Marcus Avenue
## 542          02/07/2013                                    155 Main Street
## 543          01/11/2007                        400 Patroon Creek Boulevard
## 544          10/28/1981                       500 Eighth Avenue  3rd Floor
## 545          11/01/1996                                           Route 30
## 546          12/29/1981                                     7264 Nash Road
## 547          03/29/2012                                1824 Madison Avenue
## 548          09/28/2017                                 355 Central Avenue
## 549          09/11/2014                             1551 East 172nd Street
## 550          08/24/2004                                      2 Rubin Drive
## 551          02/23/2009                               205 Rockaway Parkway
## 552          01/01/1901                                   19 Laurel Avenue
## 553          12/11/2015                                    170 Brown Place
## 554          06/22/1982                                   300 Center Drive
## 555          04/16/2001                                     10 Hastings Dr
## 556          10/21/2016                   1776 Eastchester Road, Suite 240
## 557          08/14/2012                                4417 Vestal Parkway
## 558          08/01/1980                            6525 Springbrook Avenue
## 559          06/30/2008     174-15 Horace Harding Expressway, Ground Floor
## 560          11/23/2018                              370 Bay Ridge Parkway
## 561          03/01/2001                                125-20 Sutphin Blvd
## 562          10/29/1998                                    23 Davis Avenue
## 563          02/15/2017                            401 East Amherst Street
## 564          09/01/1996                   540 White Plains Road, Suite 300
## 565          02/14/1997                                    306 Central Ave
## 566          11/01/2000                                  701 St. Ann's Ave
## 567          08/14/1985                                 172 East King Road
## 568          04/01/1989                                330 Community Drive
## 569          04/24/2001                                 635 Madison Avenue
## 570          02/01/1989                                65 Ashburton Avenue
## 571          05/06/1991                              936 Woodycrest Avenue
## 572          01/13/2017                                 156 William Street
## 573          05/01/2013                              1630 East 14th Street
## 574          01/01/1901                               655 N Liberty Street
## 575          02/01/1980                                 260-01 79th Avenue
## 576          08/03/1993                                  32-34 Main Street
## 577          08/04/2006                                   1363 46th Street
## 578          07/22/1982                                Driving Park Avenue
## 579          09/01/1981                      126 Ski Bowl Road, PO Box 420
## 580          09/01/1981                             94-98 Manhattan Avenue
## 581          01/01/2016                                 50 Sanatorium Road
## 582          01/01/1901                                 82-68 164th Street
## 583          09/27/1979                                  7 Community Drive
## 584          07/31/1998                           1120 East Genesee Street
## 585          08/01/2018                                  532 Albany Avenue
## 586          03/31/2008                       5112 West Taft Road, Suite E
## 587          03/18/2013                              245 Lower Main Street
## 588          06/01/2000                                     16 Guion Place
## 589          07/05/2016                           84 North Highland Avenue
## 590          06/25/1990                              360 Linden Oaks Drive
## 591          02/21/1989                                999 East Ridge Road
## 592          04/06/2015                            59-25 Kissena Boulevard
## 593          10/01/2005                              667 Stoneleigh Avenue
## 594          01/01/2006                                  614 Second Avenue
## 595          07/01/1992                                  465 New Dorp Lane
## 596          03/06/2014                              488 West 128th Street
## 597          06/01/2018                               3 Broad Street Plaza
## 598          02/01/2019                                   16 Maxwell Drive
## 599          09/20/2019                               19 East 103rd Street
## 600          09/30/1998                                    158 Saratoga Rd
## 601          06/01/1998                                3040 Route 50 North
## 602          04/27/2000                                  7 Associate Drive
## 603          02/24/2011                                     4910 Camp Road
## 604          01/01/1901                             326 South Pearl Street
## 605          10/16/1979                               196-198 North Street
## 606          10/16/1987                                 700 South Pearl St
## 607          05/17/2018                                  200 Pantigo Place
## 608          10/15/2014                                      300 Red Creek
## 609          10/10/2017                                     900 Lark Drive
## 610          12/24/1997                              1575 Washington Steet
## 611          12/21/2004                                  189 Wheatley Road
## 612          09/27/1979                               60 Red Jacket Street
## 613          07/18/1996                                 11 Crum Elbow Road
## 614          02/01/1989                             100 Southern Boulevard
## 615          12/06/1985                              138 Cecil A Malone Dr
## 616          01/01/1901                              103 East 125th Street
## 617          02/23/2009                              750 Baychester Avenue
## 618          09/19/2002                             3525 Baychester Avenue
## 619          01/15/2018                     301 Manchester Road, Suite 104
## 620          03/14/1997                                35 West Main Street
## 621          01/01/1901                                     42 Gurney Lane
## 622          02/27/1979                                 220 Steuben Street
## 623          10/28/1980                                  One Fordham Plaza
## 624          04/24/2008                              1095 Jefferson Avenue
## 625          09/29/2006 5 Bryant Park, 1065 Avenue of the Americas, 5th fl
## 626          03/23/1998                              201 East State Street
## 627          11/20/2001                                 9768 Lynn Morse Dr
## 628          01/01/1901                              164-11 Chapin Parkway
## 629          12/18/2006                              354 Clymer Corry Road
## 630          01/01/1901                                   1 Leo Moss Drive
## 631          09/27/1979                                   1037 Main Street
## 632          02/04/2013                                100 Lafayette Drive
## 633          12/28/1999                                     648 Plank Road
## 634          08/24/2006                                   19 Warehouse Row
## 635          04/25/2016                              1766 East 12th Street
## 636          09/27/1979                                   1776 Clay Avenue
## 637          01/01/1901                             182-15 Hillside Avenue
## 638          01/15/2019                               240 Jericho Turnpike
## 639          09/15/1998                                    410 Lakevile Rd
## 640          10/23/2015                               Five Irongate Center
## 641          01/01/1996                                   187 Third Avenue
## 642          12/02/2014                                   4115 Lake Avenue
## 643          01/01/2015                                929 Sunrise Highway
## 644          07/22/2010                                888 Pulaski Highway
## 645          03/01/2005                                   1037 Main Street
## 646          04/01/1998                              24 Westminster Avenue
## 647          04/15/2017                                     3630 Third Ave
## 648          01/07/1994                                 91 Tompkins Avenue
## 649          01/01/1901                            7785 North State Street
## 650          01/01/1901                                  100 Heritage Lane
## 651          06/14/1982                                    4635 Union Road
## 652          11/28/2007                                     215 Klein Road
## 653          10/21/2003                       5010 State Highway 30-Rm G03
## 654          04/26/1999                     3279 Veterans Memorial Highway
## 655          08/20/1990                                    7740 Meigs Road
## 656          12/13/1995                              188-03 Jamaica Avenue
## 657          01/01/1901                                      100 Lake Road
## 658          01/01/1901                                    460 Brielle Ave
## 659          05/16/2001                                      655 Colfax St
## 660          07/01/2009                           5101 West Genesee Street
## 661          06/28/1993                           186 Lakeshore Drive West
## 662          01/01/1901                                  17 Lansing Street
## 663          03/25/1995                            225 Como Park Boulevard
## 664          03/06/2020                             208 Township Boulevard
## 665          06/22/1982                             689 E Jericho Turnpike
## 666          04/21/1981                             3111 South Winton Road
## 667          08/01/1997                             1895 Walt Whitman Road
## 668          01/01/1901                                      600 Linda Ave
## 669          08/24/1990                                           Route 96
## 670          10/28/1994                               1725 North Ocean Ave
## 671          08/30/2019                                6 North Main Street
## 672          01/01/1901                              1825 Eastchester Road
## 673          12/18/2012                                 1501 Jerome Avenue
## 674          07/31/1999                                135 Franklin Avenue
## 675          01/01/1901                                 275 Seventh Avenue
## 676          08/01/1996                              1801 Black River Blvd
## 677          10/08/1992                          83-40 Woodhaven Boulevard
## 678          06/01/1979                               355 West Main Street
## 679          12/20/2012                                125 Red Creek Drive
## 680          04/20/1990                                      661 N Main St
## 681          11/01/2001                               1 West H E L P Drive
## 682          08/14/2007                    3632 Nostrand Avenue, 4th floor
## 683          07/28/2011                                    507 Main Street
## 684          12/01/1999                                1424 Genesee Street
## 685          10/23/2015                              169 West 133rd Street
## 686          06/30/2014                                 325 East Bay Drive
## 687          07/24/2019                                 45 Spindrift Drive
## 688          07/05/2017                                 215 Heyward Street
## 689          03/06/2002                                      2 Hinman Road
## 690          01/01/1901                                     81 Park Street
## 691          09/07/1994                                1508 Sheridan Drive
## 692          04/12/2018                                      1427 Broadway
## 693          02/28/2012                                    65 Sonoma Drive
## 694          09/01/1997                                    2 Sheldon Drive
## 695          11/20/2008                                  68 Hauppauge Road
## 696          01/01/1901                          4646 Nine Mile Point Road
## 697          03/24/2005                             2613 W. Henrietta Road
## 698          06/13/2003                                2 Country Club Road
## 699          06/05/1995                                      12 Elm Street
## 700          12/19/2018                                  22-46 31st Street
## 701          01/02/2018                               41861 State Route 10
## 702          01/17/1990                                199 Community Drive
## 703          07/15/1996                                  55  Mohawk Street
## 704          04/06/1994                                  Helping Hand Lane
## 705          03/28/2007                                  111 Seneca Street
## 706          05/09/2000                                  567 East 105th St
## 707          07/10/1996                               40 Robert Pitt Drive
## 708          01/01/1901                                   207 Foote Avenue
## 709          01/04/2012                                     161 Carey Road
## 710          08/01/1979                                    1500 N James St
## 711          03/01/2002                       888 Rev. James A. Polite Ave
## 712          04/03/2013                                  112 Charlton Road
## 713          01/01/2017                           205 West Dominick Street
## 714          09/07/2016                                95 Bradhurst Avenue
## 715          09/27/1979                                133 Margaret Street
## 716          03/26/2001                                19 Narragansett Ave
## 717          08/31/2002                               110 Crystal Run Road
## 718          06/21/2010                           1000 East Genesee Street
## 719          12/12/2013                                 2100 Walton Avenue
## 720          09/08/1997                               2824 West Ridge Road
## 721          04/02/2019                              60-40 Fresh Pond Road
## 722          04/27/2006                                       973 East Ave
## 723          11/25/1985                     510-526 Avenue of the Americas
## 724          01/01/1901                                 375 East Bay Drive
## 725          09/30/1988                              2372 Linden Boulevard
## 726          03/17/2014                                      5505 Route 96
## 727          01/17/2014                              758 Courtlandt Avenue
## 728          10/06/2000                                    4377 Bronx Blvd
## 729          09/27/1979                                       225 Front St
## 730          01/15/2010                             97-77 Queens Boulevard
## 731          07/25/2018                                   55 Horizon Drive
## 732          12/02/1997                                    3350 Brown Road
## 733          12/23/2002                                    1 Columba Drive
## 734          08/01/2005                                  16 Clifton Street
## 735          04/27/2006                                   25 Hemlock Drive
## 736          02/01/1989                               100 St. Camillus Way
## 737          07/30/1993                                 2094 Pitkin Avenue
## 738          12/20/2011                               324 East 23rd Street
## 739          01/23/2006                            900 South Geddes Street
## 740          07/01/1992                                    4305 7th Avenue
## 741          02/01/1979                                 25 Schoenfeld Blvd
## 742          01/01/1991                            P.O. Box 400, Route 430
## 743          07/02/2014                                  115 Saratoga Road
## 744          02/25/2000                           184 West Montauk Highway
## 745          03/12/2002                                  190 Intrepid Lane
## 746          02/01/1979                                    9 Hilaire Drive
## 747          01/01/1901                               99 East State Street
## 748          12/29/1992                             5923 Strickland Avenue
## 749          04/22/2016                                 1804 Second Avenue
## 750          07/10/2015                               5325 State Route 233
## 751          02/07/1990                                     6 Henry Street
## 752          06/17/1980                                   550 First Avenue
## 753          08/01/1995                                 321 Gifford Street
## 754          11/09/2009                         Capital Region Health Park
## 755          06/03/2019                                  79 East Post Road
## 756          12/19/2019                               544 East Main Street
## 757          11/26/1996                               1873 Eastern Parkway
## 758          09/18/1995                                    515 Abbott Road
## 759          07/22/2003                                 45-15 162nd Street
## 760          01/01/2013                          10 George Street, Suite 2
## 761          06/16/1980                                 711 Stewart Avenue
## 762          10/16/2019                                170 Science Parkway
## 763          08/12/2004                              625 East Fordham Road
## 764          09/21/2011                                    23 Hyatt Street
## 765          04/24/2000                             1240 New Scotland Road
## 766          09/27/1979                        301 North Washington Street
## 767          12/16/1992                               2015 Mount Hope Road
## 768          04/14/2004                      44-01 Francis Lewis Boulevard
## 769          01/01/1901                                     77 Jackson Ave
## 770          02/04/2015                                    40 Willow Drive
## 771          03/20/1991                                    94 Olean Street
## 772          03/08/2012                                21-10 Borden Avenue
## 773          01/01/1901                                1270 Belmont Avenue
## 774          03/15/2018                                1050 Niagara Street
## 775          10/15/2001                                      2 Fletcher St
## 776          09/13/1991                              21 North Canal Street
## 777          05/15/2012                                   256 Mason Avenue
## 778          08/18/2009                                 10 Brentwood Drive
## 779          11/16/1983                                    100 Ross Street
## 780          02/03/1992                                 2100 Bartow Avenue
## 781          02/28/2011                       333 Earle Ovington Boulevard
## 782          11/14/1994                                3424 Kossuth Avenue
## 783          05/21/1998                                     1 Elsie Street
## 784          05/28/1998                                  10-29 41st Avenue
## 785          08/30/2017                                  502 Morris Avenue
## 786          01/01/1901                               160 East Main Street
## 787          05/01/2006                                 259 Bristol Street
## 788          05/11/2012                               105 West Sheedy Road
## 789          12/06/2006                                 625 Elmwood Avenue
## 790          07/01/1992                                    4004 4th Avenue
## 791          10/07/2014                              495 Beach 20th Street
## 792          06/20/1997                                    39 Auburn Place
## 793          07/19/2006                                 146 Arsenal Street
## 794          01/01/1901                              111 East 210th Street
## 795          11/21/1990                                 1554 Northern Blvd
## 796          09/27/1979                              Box 876-82 Holland St
## 797          05/23/2016                             283 Mountain View Road
## 798          01/01/1901                                612 Allerton Avenue
## 799          09/25/2015                               650 McClellan Street
## 800          02/14/2020                                700 Boisseau Avenue
## 801          09/27/1979                               154 Lafayette Street
## 802          12/28/2010                                 49 Lawrence Avenue
## 803          07/20/1995                              2502 Lorrilard Avenue
## 804          03/27/1979                                     1360 Route 112
## 805          09/09/1985                                   882 NYS Route 13
## 806          02/01/1980                             140 Beach 114th Street
## 807          09/11/2000                              500 West 138th Street
## 808          07/17/2015                 1835 Fairport Nine Mile Point Road
## 809          04/21/2016                                 2412 Church Avenue
## 810          06/01/2002                            910 Erie Boulevard East
## 811          10/12/2004                            10 South Pointe Landing
## 812          02/01/1989                                   9 Reservoir Road
## 813          01/01/1901                                1172 Long Pond Road
## 814          07/20/2000                                      7-11 Broadway
## 815          03/03/2017                              459 East 149th Street
## 816          06/14/2011                               39-20 Utopia Parkway
## 817          01/20/2020                                       1299 Route 9
## 818          08/27/2002                              739 NYS Rt 28 Suite 9
## 819          01/01/1901                                   55 Melroy Avenue
## 820          01/01/1901                 256 Sunset Lake Road, P.O. Box 671
## 821          05/12/1986                                   1850 Peoples Ave
## 822          01/01/1901                            Christ Episcopal Church
## 823          03/30/2007                               135 Linden Boulevard
## 824          07/25/1983                                1600 Central Avenue
## 825          02/01/1980                           700 East Brighton Avenue
## 826          09/19/2014                                   380 Henry Street
## 827          02/01/1989                                    490 Pelham Road
## 828          08/22/2006                                 773-775 9th Avenue
## 829          09/28/2016                                   1037 Main Street
## 830          11/01/1995                   140 58th Street Bldg B Suite 1-I
## 831          01/13/1999                          Church Street PO Box 1268
## 832          09/19/2003                                636 New Loudon Road
## 833          08/09/2019                              250 East 156th Street
## 834          04/01/2000                              535 East 119th Street
## 835          04/12/1999                                   4196 Park Avenue
## 836          04/11/2014                                       319 Broadway
## 837          01/01/1901                                   102-01 66th Road
## 838          09/27/1979                                325 Columbia Street
## 839          05/09/2014                                 990 State Route 67
## 840          01/22/2013                                 319 Central Avenue
## 841          12/01/1994                                840 Lefferts Avenue
## 842          01/01/1901                                   918 James Street
## 843          04/25/1996                               56 Montgomery Street
## 844          04/01/1983                                 108 Erie Boulevard
## 845          06/11/2009                           1202 Driving Park Avenue
## 846          09/28/2012                                  428 Alvord Street
## 847          02/01/1996                         2649 South Road, Suite 220
## 848          06/01/1989                   Flint Office Bldg 460 Andes Road
## 849          03/27/2003                                  1100 Coney Island
## 850          04/26/1984                              770 East 176th Street
## 851          07/31/2018             5844 Southwestern Boulevard, Suite 700
## 852          01/01/1901                                    143-10 20th Ave
## 853          12/03/2018                             16 New Scotland Avenue
## 854          02/11/2003                                1500 Brecknock Road
## 855          01/01/1901                              2180 Empire Boulevard
## 856          01/01/1901                               200 Belle Terre Road
## 857          12/29/2014                                  373 Church Street
## 858          01/01/1901                                    101 Theall Road
## 859          06/16/1998                                   417 Trenton Road
## 860          09/27/2005                                 639 Classon Avenue
## 861          01/01/1901                                   280 Henry Street
## 862          09/17/2010                              240 East 172nd Street
## 863          01/01/1901                                10570 Bergtold Road
## 864          12/01/2012                                     3801 Taylor Rd
## 865          12/13/2019                                  11 Romaine Avenue
## 866          11/26/2003                              907 E. Tremont Avenue
## 867          04/07/1999                              154 West 127th Street
## 868          01/01/1901                       128 Phoenix Mills Cross Road
## 869          01/01/1901                                451 Clarkson Avenue
## 870          06/30/1997                                      115 Center St
## 871          11/17/1997                                     100 Malta Lane
## 872          06/14/2016                  2381 Frederick Douglass Boulevard
## 873          03/01/2002                                  710 Hawley Avenue
## 874          05/25/2012                               624 McClellan Street
## 875          05/11/1991                                   34 Duncan Street
## 876          09/27/1979                                  540 Fulton Avenue
## 877          02/24/2010                                    1 Fulton Avenue
## 878          09/19/2013      1 Wartburg Place, Hauselt Building, 1st floor
## 879          04/30/2018                           202 South Central Avenue
## 880          04/20/2007                                75 Crystal Run Road
## 881          09/02/2010                              408 North Main Street
## 882          03/01/1988                                 65 Poultney Street
## 883          01/01/1901                                  189 E Main Street
## 884          08/31/1991                              1621 Eastchester Road
## 885          07/30/2001                             1225A Morris Park Ave.
## 886          01/01/1991                                    191 Bradley Ave
## 887          04/24/1980                               1545 Atlantic Avenue
## 888          11/24/2004                         2301-2331 Stillwell Avenue
## 889          05/01/2015                                  254 Church Street
## 890          01/01/1901                             810-20 St Marks Avenue
## 891          10/15/1980                                   62 East Broadway
## 892          01/16/2018                               2047 West Ridge Road
## 893          07/01/1992                                 1865 Morris Avenue
## 894          11/28/2003                                     227 Ridge Road
## 895          08/01/1980                            4295 Hempstead Turnpike
## 896          09/27/1979                           111 East Chestnut Street
## 897          03/14/2016                                934 Cleveland Drive
## 898          09/18/2017                              3035 West 24th Street
## 899          01/01/1901                                 475 Seaview Avenue
## 900          07/19/2001                           5700 West Genesee Street
## 901          10/26/2018                                    100 High Street
## 902          06/19/1998                                15 Lafayette Avenue
## 903          11/29/1999                                        1 Bridge St
## 904          05/06/1999                                     4039 Route 219
## 905          01/24/1985                               2-8 West Main Street
## 906          05/24/2012                     461 John James Audubon Parkway
## 907          11/06/1998                               401 East 34th Street
## 908          02/06/1980                               14-16 Heyward Street
## 909          03/20/1992                             865 Northern Boulevard
## 910          02/01/1989                                 200 Seventh Street
## 911          05/03/1995                                  111 Mary's Avenue
## 912          09/01/1996                                 144 E 128th Street
## 913          09/27/1979                                     303 9th Avenue
## 914          05/16/1997                                   375 Grand Street
## 915          03/06/2012                                 89-56 162nd Street
## 916          09/08/1992                      24 Fairfield Road, PO Box 292
## 917          06/09/2009                                 37-12 108th Street
## 918          05/14/2013                                330 Hinsdale Street
## 919          01/01/1901                                    One Atwell Road
## 920          04/19/1994                                  1301 River Street
## 921          09/05/2017                                 3131 Kings Highway
## 922          12/31/2004                                       9 Union Lane
## 923          01/01/1901                                   134 Homer Avenue
## 924          09/12/1990                              349 East 140th Street
## 925          02/01/1980                                2799 Sheridan Drive
## 926          01/01/1901                                  3356 Perry Avenue
## 927          12/30/2002                                    427 38th Street
## 928          06/25/1979                                   10 Munson Street
## 929          07/06/2018                               1021 Broadway Street
## 930          12/05/2019                               60 Red Jacket Street
## 931          01/28/2010                                 40 Division Street
## 932          02/01/2010                                     20 Cedar Place
## 933          09/06/2005                               39 Pearl Street West
## 934          01/26/1998                                  20 South Broadway
## 935          01/01/1995                              One Tallow Wood Drive
## 936          01/01/1901                                   34 Spring Street
## 937          12/07/2009                                      6620 Fly Road
## 938          05/10/2007                            1390 Hempstead Turnpike
## 939          08/09/2007                                    830 Park Avenue
## 940          07/16/2014                   6851 Jericho Turnpike, Suite 150
## 941          10/09/1992                                303/305 Main Street
## 942          07/01/2004                                   1 Wellness Drive
## 943          07/05/2006                              310 Taughhannock Blvd
## 944          01/01/1991                         920 Cherry Ridge Boulevard
## 945          07/01/1992                               145 West 84th Street
## 946          12/02/2013                                1033 State Route 31
## 947          01/14/2002                      Noxon Road - 76 Fireman's Way
## 948          01/01/1901                                  950 Linden Street
## 949          01/11/1988                                 80 West End Avenue
## 950          07/25/2019                           600-610 West 58th Street
## 951          11/02/2009                                179 Tom Miller Road
## 952          12/22/2008                                 55 Elizabeth Drive
## 953          02/01/1980                               25 Hackett Boulevard
## 954          01/01/2004                                 1690 Bryant Avenue
## 955          04/17/2019                           30-46 Northern Boulevard
## 956          11/09/2016                                   5506 15th Avenue
## 957          11/15/1991                                       52 Route 25A
## 958          08/18/1995                                 53 Columbia Street
## 959          11/10/1988                                 311 W 231st Street
## 960          05/08/1980                                 1727 Amsterdam Ave
## 961          08/10/2016                            100 Route 59, Suite 105
## 962          02/01/1989                                 139-62 35th Avenue
## 963          01/17/2017                                   4714 16th Avenue
## 964          08/01/2013                               120 East 16th Street
## 965          11/21/1996                                    7398 Turin Road
## 966          07/28/2005                                  739 Irving Avenue
## 967          03/10/1994                           1 North Greenwich Avenue
## 968          08/01/1980                                        7 Route 25A
## 969          02/01/1980                                      602 Hudson St
## 970          08/01/1979                                 445 Tremont Street
## 971          02/01/1980                                     40 Park Street
## 972          01/27/2016                                107 Prospect Street
## 973          10/01/2008                             519 North Union Street
## 974          03/12/2015                                100 Meridian Centre
## 975          03/31/2006                                1536 Bedford Avenue
## 976          10/20/1995                                     350 5th Avenue
## 977          09/09/2013                                     91 Main Street
## 978          01/01/1901                            435 East Henrietta Road
## 979          06/18/1999                               115 Delafield Street
## 980          02/23/2012                                 99 Division Avenue
## 981          01/21/2011                                   480 Bedford Road
## 982          05/24/2002                                  255 Warner Avenue
## 983          03/24/2016                 2882 West 15th Street, Lower Level
## 984          06/23/2003                            Albro Road (PO Box 399)
## 985          06/23/2009                               166 East Main Street
## 986          12/15/2014                                    30 Canal Street
## 987          10/07/1999                                    139 Main Street
## 988          07/17/2015                                 3007 Farragut Road
## 989          11/04/2011                                 15 Birdsall Street
## 990          07/01/2002                                 9812 Lockport Road
## 991          08/29/1995                            130 West Tremont Avenue
## 992          02/23/1985                                    2324 Forest Ave
## 993          01/21/1995                                   600 E 6th Street
## 994          07/23/2019                                       55 Barn Road
## 995          07/06/2011                              440 Mamaroneck Avenue
## 996          09/28/2012                               2400 Grant Boulevard
## 997          04/02/2003                          703 West Boston Post Road
## 998          06/06/1996                                     40 Wall Street
## 999          05/15/2012                                  221 Lexington Ave
## 1000         08/05/2016                              2929 West 30th Street
## 1001         11/18/1984                               221 Jericho Turnpike
## 1002         11/01/2013                                   6010 Bay Parkway
## 1003         09/12/2011                                   184 Court Street
## 1004         03/01/1988                                 2806 George Street
## 1005         01/01/1901                          2425 Clinton Avenue South
## 1006         01/01/1901                          297 North Ballston Avenue
## 1007         09/27/1979                                   175 Green Street
## 1008         10/30/1981                                  603 Seneca Street
## 1009         01/01/1901                                      4988 Sthwy 30
## 1010         03/01/2019                              6 Executive Boulevard
## 1011         09/27/1979                      Hall R Clothier Memorial Bldg
## 1012         01/01/1901                                    200 Ohio Street
## 1013         08/28/2015                    3525 White Plains Road, Suite B
## 1014         03/11/2016                                  11 Ashford Avenue
## 1015         10/19/2015                                       1 Lomb Drive
## 1016         02/01/1980                                    100 High Street
## 1017         09/27/1979                      (P.O. Box 590) Infirmary Road
## 1018         01/01/1901                                220-22 Hillside Ave
## 1019         01/01/1901                                131 Lawrence Street
## 1020         12/01/2016                                 314 Central Avenue
## 1021         03/25/2011                             1365 Washington Avenue
## 1022         05/12/2014                                  300 Kennedy Drive
## 1023         01/19/2005                                    6405 7th Avenue
## 1024         05/22/2014                                471 Montauk Highway
## 1025         01/01/1901                                  3530 Wayne Avenue
## 1026         07/01/2006                              4000-4026 Boston Road
## 1027         01/04/1999                                    50 Maine Avenue
## 1028         02/01/1989                              1229 Trumansburg Road
## 1029         09/23/2016                  7309 Seneca Road North, Suite 114
## 1030         12/07/1995                               731 Pre-Emption Road
## 1031         09/06/2007                                198 Sandford Street
## 1032         07/01/2006                               139 Forestburgh Road
## 1033         02/14/2018                                   8 Oceanside Road
## 1034         08/01/1979                                      6585 Broadway
## 1035         09/27/1979                                 1340 State Route 9
## 1036         01/01/1901                              120 West 106th Street
## 1037         02/10/2020                         411 Pearl Street, Room 500
## 1038         08/06/2013                                      939 Route 146
## 1039         07/17/2012                                1930 Randall Avenue
## 1040         11/14/2007                                      Church Street
## 1041         12/01/1982                                    676 Pelham Road
## 1042         12/03/2018                             50 New Scotland Avenue
## 1043         01/01/1901                            125 Harry-Howard Avenue
## 1044         04/10/1990        1 Wartburg Place, Hauselt Building, 1st fl.
## 1045         02/01/1989                                 331 Russell Street
## 1046         04/18/2016                                   1916 Park Avenue
## 1047         01/01/2004                               1402 Atlantic Avenue
## 1048         08/08/2016                                   1100 Newkirk Ave
## 1049         04/23/1997                                100 Community Drive
## 1050         02/22/2005                              630 West 168th Street
## 1051         07/08/1986                                  50 Community Lane
## 1052         11/20/1981                               75 Vanderbilt Avenue
## 1053         09/05/2013                                  184 Barton Street
## 1054         08/09/2004                                  32787 US Route 11
## 1055         09/27/1979                                 90-37 Parsons Blvd
## 1056         12/07/1990                               510 East 73rd Street
## 1057         01/01/1901                                    200 Ohio Street
## 1058         09/12/2003                                 22 Van Buren Drive
## 1059         07/01/2014                               60 Merritt Boulevard
## 1060         01/25/1993                      865 Merrick Avenue, 3rd Floor
## 1061         03/30/2001                                 432 Bedford Avenue
## 1062         01/02/1996                                   10 Carlton Drive
## 1063         09/30/2003                               160 East 34th Street
## 1064         10/21/1996                               1305 Nottingham Road
## 1065         01/01/1901                            435 East Henrietta Road
## 1066         07/19/1979                                    124 Main Street
## 1067         06/27/1990                                      691 92 Street
## 1068         01/01/1901                                       396 Broadway
## 1069         07/16/2018                             3495 Winton Road Place
## 1070         10/16/2006                                      279 Troy Road
## 1071         06/14/2007                               655 Deer Park Avenue
## 1072         04/17/2007                          200-214 West 135th Street
## 1073         01/03/2012                                    800 Hooper Road
## 1074         02/27/2007                                    291 Main Street
## 1075         01/01/1901                                     45 Reade Place
## 1076         11/10/2003                                  505 Irving Avenue
## 1077         10/30/1984                                   115 Creek Circle
## 1078         06/12/1996                                    297 Main Street
## 1079         11/15/1999                                5225 Sheridan Drive
## 1080         06/30/2009                                 71 Prospect Avenue
## 1081         10/09/2007                                     790 Ridge Road
## 1082         10/21/1996                              137-50 Jamaica Avenue
## 1083         03/21/2011                         1182 Troy-Schenectady Road
## 1084         02/01/1989                               163 South Union Road
## 1085         04/03/2001                                        140 Main St
## 1086         03/28/1997                                    Grandview Drive
## 1087         12/02/2003                                 123 East Post Road
## 1088         07/21/2016                                       615 Avenue C
## 1089         06/18/2009                                  1432 Fifth Avenue
## 1090         11/21/2002                             1351 Washington Street
## 1091         07/24/1995                                     20 Park Avenue
## 1092         05/05/2015                                  2115 Chili Avenue
## 1093         10/20/2018                           59-17 Junction Boulevard
## 1094         04/01/1984                             690 West German Street
## 1095         01/01/1901                         45th Avenue & Parsons Blvd
## 1096         08/13/2012                              731 White Plains Road
## 1097         01/01/2004                              105 East 106th Street
## 1098         09/28/2017                                 80 West End Avenue
## 1099         01/01/1987                           6200 Beach Channel Drive
## 1100         07/06/1988                                   130 North Street
## 1101         03/13/1998                                1401 Newkirk Avenue
## 1102         01/26/2006                               210 East 64th Street
## 1103         06/21/1999                               160 East 53rd Street
## 1104         01/01/1901                        4290 Middle Settlement Road
## 1105         04/10/2018                        1283 York Avenue, 7th Floor
## 1106         07/30/2008                                460 Canisteo Street
## 1107         03/01/2005                                      1 Atwell Road
## 1108         12/22/1997                            36-17 Parsons Boulevard
## 1109         09/18/1992                            10 South Pointe Landing
## 1110         02/26/2007                                  217 Beach 95th St
## 1111         09/15/1995                                      31 Dardess Dr
## 1112         01/01/1901                              1050 W Genesee Street
## 1113         01/17/2014                     2042 Albany Post Road, Suite 2
## 1114         12/05/1983                               41 St Bernard Street
## 1115         05/18/1988                              149-18 Jamaica Avenue
## 1116         01/01/1901                      100 Veterans Memorial Highway
## 1117         09/01/1981                                   999 Blake Avenue
## 1118         08/29/1985                              2925 West 19th Street
## 1119         12/14/1999                      Route 9 Graymoor P.O. Box 150
## 1120         12/03/2018                               1122 Chestnut Avenue
## 1121         02/24/1997                              244 West 144th Street
## 1122         09/29/2016                                      5041 Broadway
## 1123         10/01/2008                           421 West Columbia Street
## 1124         01/01/1991                        69-70 Grand Central Parkway
## 1125         02/23/1990                                  1 Lawrence Street
## 1126         07/06/1999                                  2183 Ocean Avenue
## 1127         12/24/2009              2400 South Clinton Avenue, Building H
## 1128         01/07/2020                                 3600 NYS Route 112
## 1129         11/21/2006        138-47 Horace Harding Expressway, 2nd floor
## 1130         07/25/1983                                1600 Central Avenue
## 1131         12/01/2016                                    2351 1st Avenue
## 1132         04/01/1998                                   1313 Main Street
## 1133         08/21/2008                             4770 White Plains Road
## 1134         01/01/1901                                        26 Avenue A
## 1135         12/01/2000                                   19 Bradhurst Ave
## 1136         01/01/2004                                 358-362 4th Avenue
## 1137         09/14/1998     293 and 309 Upper Falls Blvd - Shopping Center
## 1138         03/26/2019                             103 County Highway 138
## 1139         04/10/1991                                     81 Lake Avenue
## 1140         12/22/1994                              520 East 117th Street
## 1141         02/21/2007                                 22571 Summit Drive
## 1142         01/13/1989                                900 Franklin Avenue
## 1143         01/01/1901                                    521 East Avenue
## 1144         02/01/1989                                     645 W Broadway
## 1145         11/25/1991                                   256 Mason Avenue
## 1146         08/01/1979                                 375 Seguine Avenue
## 1147         01/01/1901                          5075 West Seneca Turnpike
## 1148         11/22/1994                           119 Holland Circle Drive
## 1149         06/08/1987                                  30 South Broadway
## 1150         01/01/1901                                169 Riverside Drive
## 1151         09/05/1995                                  603 Oswego Street
## 1152         03/25/2005                                 325 Cedarwood Hall
## 1153         01/01/1901                               3700 Old Vestal Road
## 1154         02/01/1989                                   801 Gazzola Blvd
## 1155         01/01/1901                                   185 Old Broadway
## 1156         06/06/2005                                     One Kendal Way
## 1157         01/01/1901                                    133 Park Street
## 1158         01/03/2012                             2666 West State Street
## 1159         12/07/1993                            700 Island Cottage Road
## 1160         06/19/1996                          4939 Brittonfield Parkway
## 1161         01/01/1901                          50-15 Beach Channel Drive
## 1162         08/17/1988                                 2000 E Main Street
## 1163         07/31/1998                              348 East 156th Street
## 1164         01/01/1901                             140 County Highway 33w
## 1165         08/10/1993                                   300 Center Drive
## 1166         12/16/2016                                  15 DeGrandpre Way
## 1167         08/01/1979                          378 Syosset-Woodbury Road
## 1168         01/01/1901                  One Terrace Heights, P.O. Box 250
## 1169         05/04/2018                      3227 Long Beach Road, Suite 2
## 1170         09/08/2008                                    21986 Cole Road
## 1171         06/21/2018                                456 White Plains Rd
## 1172         01/26/1998                                  6 Gramatan Avenue
## 1173         12/27/2013                                    395 West Street
## 1174         03/09/2012                               101 Candy Apple Lane
## 1175         06/01/2013                                    2585 South Road
## 1176         09/27/1979                                        Murray Hill
## 1177         01/01/1901                              85 Bloomingrove Drive
## 1178         01/01/1901                             585 Schenectady Avenue
## 1179         10/31/2014                                    83 Amity Street
## 1180         05/31/2019                                  79 East Post Road
## 1181         01/01/1901                 3424 Kossuth Avenue & 210th Street
## 1182         09/12/2011                               369 East Main Street
## 1183         11/11/1996                          1945 East Ridge  Road #28
## 1184         03/12/2013                                       290 Broadway
## 1185         01/01/1901                              8101 State Highway 68
## 1186         02/01/2009                               77 South Main Street
## 1187         01/01/1901                                 350 Parrish Street
## 1188         04/30/1999                                890 Hunts Point Ave
## 1189         02/01/1989                                  574 Fulton Street
## 1190         06/16/1980                                 711 Stewart Avenue
## 1191         02/01/1989                                428 State Route 146
## 1192         10/15/2018                               200 Harborside Drive
## 1193         05/03/1995                                  111 Mary's Avenue
## 1194         12/01/2004                              625 East 137th Street
## 1195         08/09/1991                                   101 South Street
## 1196         02/01/1989                                1818 Como Park Blvd
## 1197         04/02/2003                           400 Broadway - 4th Floor
## 1198         02/01/1980                             400 North Perry Street
## 1199         11/09/2018                               2581 Atlantic Avenue
## 1200         11/01/2005                             2263 State Highway 310
## 1201         12/31/1988                              353 Beach 48th Street
## 1202         03/14/2005                                  16 Degrandpre Way
## 1203         03/03/2011                                    40 Autumn Drive
## 1204         11/26/1997                                 2050 Tilden Avenue
## 1205         09/17/2013                                      1220 Avenue P
## 1206         09/01/1981                                 97-04 Sutphin Blvd
## 1207         01/04/1999                                192 East Shore Road
## 1208         08/10/2017                                   515 Blake Avenue
## 1209         10/15/2013                                   88 Old Town Road
## 1210         10/24/1997                                   480 Bedford Road
## 1211         02/01/1989                               159-163 Front Street
## 1212         04/04/2016                                  2070 First Avenue
## 1213         09/28/2017                                 4520 Military Road
## 1214         08/29/2014                               1775 Grand Concourse
## 1215         08/01/2018                               130 Rochester Avenue
## 1216         11/02/1988                               1900 Crotona Parkway
## 1217         01/08/2007                                     1 Foxhall Road
## 1218         06/21/2019                                54 East Main Street
## 1219         11/06/2015                                  1045 James Street
## 1220         01/01/1901                             195-44 Woodhull Avenue
## 1221         01/17/2014                                   1235 Linden Blvd
## 1222         12/22/2000                                803 West Genesee St
## 1223         06/10/1994                                 1430 Second Avenue
## 1224         03/28/2014                                 1999 Marcus Avenue
## 1225         11/29/2011                             99 Terrace View Avenue
## 1226         02/01/1979                                    28 Kellogg Road
## 1227         07/01/1992                                1615 Madison Avenue
## 1228         06/14/2019                               130 Rochester Avenue
## 1229         06/02/2014                                   50 Sheffield Ave
## 1230         07/19/1982                                592 Rockaway Avenue
## 1231         03/24/2014                                    360 Linden Oaks
## 1232         02/01/1989                                  434 Monroe Avenue
## 1233         07/31/2013                                     135 North Road
## 1234         12/04/2019                              135 Vanderbilt Avenue
## 1235         12/22/1997            37 Research Way - Stony Brook Tech Park
## 1236         09/28/2013                                   918 N Goodman St
## 1237         05/18/1998                           73-15 Northern Boulevard
## 1238         04/26/2002                                    Sunrise Highway
## 1239         01/01/1901                                   100 Daniel Drive
## 1240         02/01/1980                              350 Beach 54th Street
## 1241         04/10/2009                                    13 Loder Street
## 1242         02/01/1979                                 220 West Post Road
## 1243         06/22/1982                              82 Middle County Road
## 1244         06/09/2010                                 2655 Ridgeway Road
## 1245         05/28/1991                                    340 Main Street
## 1246         12/16/2019                    178 Washington Avenue Extension
## 1247         01/01/1901                                302 Swart Hill Road
## 1248         08/02/1999                                     158 Orchard St
## 1249         03/07/2014                                   345 Brook Avenue
## 1250         03/23/1995                                78 Old Country Road
## 1251         02/04/2017                                80-00 Cooper Avenue
## 1252         02/01/1979                                 321 Genesee Street
## 1253         08/06/1991                                  5875 S Transit Rd
## 1254         09/04/2007                                 140 Hammond Street
## 1255         01/01/1901                         555 St. Joseph's Boulevard
## 1256         01/11/2008                               43 Pearl Street West
## 1257         10/30/2018                                1134 Central Avenue
## 1258         02/22/2002                              34 South Bedford Road
## 1259         01/01/1901                           1740-70 Eastchester Road
## 1260         09/01/1997                                340 Fougeron Street
## 1261         06/24/1998                                   111 Water Street
## 1262         03/30/2015                              260 East 161st Street
## 1263         12/22/2000                                  600 Northern Blvd
## 1264         06/18/2007                              16 West Bridge Street
## 1265         01/14/1999                                    33 Mitchell Ave
## 1266         01/01/2013                            510 South Fourth Street
## 1267         01/01/1901                             176 U.S. Oval, Suite 3
## 1268         01/01/1901                               196-198 North Street
## 1269         01/09/2007                               801 Amsterdam Avenue
## 1270         06/23/2003                                     4038 West Road
## 1271         01/01/2004                               2432 Grand Concourse
## 1272         03/29/2010                   1300 Franklin Avenue, Suite UL-5
## 1273         01/01/1901                                    50 Leroy Street
## 1274         06/05/2014                         1500 Route 112, Building 5
## 1275         04/01/2010                                   317 North Street
## 1276         11/07/2012                           1480 Sheridan Expressway
## 1277         12/18/2001                                  4487 Third Avenue
## 1278         03/01/2016                                   3 Handley Street
## 1279         10/22/2012                                    160 Harris Road
## 1280         06/26/2018                                    131 Main Street
## 1281         08/11/2014                                    165 Main Street
## 1282         08/26/2016                               33 Walt Whitman Road
## 1283         02/01/1979                             42084 State Highway 28
## 1284         08/05/2016                              475 West 155th Street
## 1285         02/01/1989                               1800 Butterfield Ave
## 1286         07/10/1987                                    155 Lawn Avenue
## 1287         11/08/2010                            451 East Henrietta Road
## 1288         10/01/2001                                 3946 Oneida Street
## 1289         07/27/2001                                  51-40 59th Street
## 1290         03/09/1991                                  259 Monroe Avenue
## 1291         02/06/2018                         789 Park Avenue, 2nd Floor
## 1292         08/01/1979                                3200 Baychester Ave
## 1293         04/22/2019                                7670 Omnitech Place
## 1294         12/14/2016                              240 Washington Street
## 1295         12/18/1995                             61-11 Queens Boulevard
## 1296         01/01/2003                                 650 Academy Street
## 1297         07/16/2019                                  601 Seneca Street
## 1298         10/07/2002                                  725 Irving Avenue
## 1299         05/24/2000                                      51 N Route 9W
## 1300         01/02/1995                                  59C Myrtle Street
## 1301         01/01/1901                                 967 North Broadway
## 1302         03/10/2005                              408 East 137th Street
## 1303         01/01/2008                                      2900 Bragg St
## 1304         02/01/1980                                   510 Fifth Avenue
## 1305         02/01/1989                                    144-61 38th Ave
## 1306         03/29/2003                                6323 Seventh Avenue
## 1307         08/16/2005                                      345 Route 296
## 1308         07/22/2016                               1404 Sweet Home Road
## 1309         05/22/2013                                 105 Barracks Drive
## 1310         08/13/1986                                 1983 Marcus Avenue
## 1311         01/01/1901                                 220 Steuben Street
## 1312         05/03/2016                                1275 Bedford Avenue
## 1313         04/04/2002                                       130 North St
## 1314         10/09/1996                                   55 Mohawk Street
## 1315         10/03/2005                                    300 West Avenue
## 1316         02/01/1989                                 78 Birchwood Drive
## 1317         04/20/1988                              670 White Plains Road
## 1318         11/06/2006                 3020 Westchester Avenue, Suite 100
## 1319         05/30/2002                          2400 South Clinton Avenue
## 1320         10/04/1991                                  2277 Grand Avenue
## 1321         08/30/1996                                 500 Seaview Avenue
## 1322         05/09/2006                                  8710 Fifth Avenue
## 1323         02/01/1980                              622 West 168th Street
## 1324         04/06/2012                               228 East Main Street
## 1325         08/16/2011                                    4 Commerce Lane
## 1326         08/09/1996                            2167 Westchester Avenue
## 1327         09/20/2019                                    27 Hyland Drive
## 1328         01/01/1901                                  1 Brookdale Plaza
## 1329         02/19/1992                 1025 Westchester Avenue, Suite 200
## 1330         12/12/2005                                  158 Holden Avenue
## 1331         07/01/1992                                   610 Henry Street
## 1332         02/21/2017                                  386 Violet Avenue
## 1333         01/18/1999                  4180 South Main Street   Route 46
## 1334         11/07/1996                                   3011 Boston Road
## 1335         12/23/2004                                  465 Brickman Road
## 1336         07/01/2018                             87-41 Parson Boulevard
## 1337         01/01/1901                  1200 Driving Park Avenue, Box 111
## 1338         09/27/1979                                 238 Arsenal Street
## 1339         08/11/1998                          West Wayne Plaza Route 31
## 1340         03/13/2018                            97-04 Sutphin Boulevard
## 1341         07/03/1989                            70 West Burnside Avenue
## 1342         02/09/2009                               519 East 72nd Street
## 1343         08/01/1995                           Broadway and Main Street
## 1344         10/21/1992                                2920 Tibbits Avenue
## 1345         08/04/2017                                  46-50 Main Street
## 1346         05/13/2005                              55 Ronald Reagan Blvd
## 1347         05/30/2017                                   2679 Main Street
## 1348         11/24/2003                                      1062 Route 38
## 1349         09/29/1989                                   70 Bunner Street
## 1350         09/28/1981                                150 Riverside Drive
## 1351         02/01/1980                                   109 Legion Drive
## 1352         09/26/2019                               356 West 18th Street
## 1353         08/09/2012                           1000 East Genesee Street
## 1354         04/07/2015                     3130 Grand Concourse, Suite B5
## 1355         08/01/1996                              1819 Black River Blvd
## 1356         11/02/2001                                       60 Haven Ave
## 1357         01/01/1901                                 260-19 Nassau Blvd
## 1358         01/01/1901                              1656 Champlin  Avenue
## 1359         10/20/1994                                  81 South Broadway
## 1360         10/20/2018                              165 Vanderbilt Avenue
## 1361         01/01/1901                                        SUNY Oswego
## 1362         07/26/2016                                1260-78 60th Street
## 1363         07/01/2009                          4105 Medical Center Drive
## 1364         08/26/2015                                    21-41 45th Road
## 1365         07/11/1983                                   35 Colvin Avenue
## 1366         12/13/2007                    520 East 70th Street, Level J-0
## 1367         01/01/1991                                1050 Central Avenue
## 1368         08/01/1979                                   989 Blossom Road
## 1369         02/17/2005                                       Old Route 17
## 1370         07/01/1992                                1045 Nameoke Street
## 1371         04/06/2018                                2759 Webster Avenue
## 1372         12/19/2019                                 170 Burwell Street
## 1373         01/01/1995                         500 Federal Street,6th Flr
## 1374         10/31/2006                               345 East 24th Street
## 1375         06/17/1990                Medical Arts Bldg 99 E State Street
## 1376         04/15/2002                               353 East 68th Street
## 1377         02/01/1989                                    37 N Chemung St
## 1378         02/06/2013                                14214 Church Street
## 1379         10/22/2015                            97-04 Sutphin Boulevard
## 1380         07/06/2017                               105 Ridgehaven Drive
## 1381         11/28/1994                                  2238 Fifth Avenue
## 1382         01/01/1901                           First Ave at 16th Street
## 1383         06/21/2005                                 450 Lakeville Road
## 1384         08/17/2018                                  25 Carrier Street
## 1385         08/01/1980                           Cedar Lane, P.O. Box 928
## 1386         08/01/1979                                 3201 Kings Highway
## 1387         08/08/1985                              972 Brush Hollow Road
## 1388         09/01/1997                                    1 Wagner Avenue
## 1389         07/01/2019                           111-20 Merrick Boulevard
## 1390         08/13/2018                               8 Medical Park Drive
## 1391         08/11/2015                                2231 Burdett Avenue
## 1392         05/26/1988                                      4 Kuhl Avenue
## 1393         04/01/1994                                3926 State Route 12
## 1394         10/11/2002                        444 Merrick Road, 4th Floor
## 1395         12/13/2019                                 1210 Second Avenue
## 1396         11/14/2018                                   3440 Boston Road
## 1397         08/01/1979                               100 Castleton Avenue
## 1398         01/24/2005                           777 South Clinton Avenue
## 1399         09/05/2006                              2660-2664 Main Street
## 1400         01/26/1998                               877 East Main Street
## 1401         09/22/2004                                    6341 Ridge Road
## 1402         10/14/2015                      9 Hampstead Avenue, Suite 107
## 1403         06/19/1996                                     55 Main Street
## 1404         08/06/1998                                1500 Pelham Parkway
## 1405         01/15/2014                                 555 Madison Avenue
## 1406         03/08/2001                                   3757 Carman Road
## 1407         03/31/2015                             85 St. Joseph's Avenue
## 1408         12/14/1988                                     15 Turner Lane
## 1409         09/01/1998                                    1700 Macombs Rd
## 1410         07/15/1996                                  55  Mohawk Street
## 1411         10/01/1988                                160 Lawrence Avenue
## 1412         03/27/2013                                       9 Law Street
## 1413         08/04/2011                                    517 Park Avenue
## 1414         09/09/2011                                890 Prospect Avenue
## 1415         08/01/1980                            1500 North James Street
## 1416         03/04/2001                            28 South Western Avenue
## 1417         01/01/1901                              1072 Havemeyer Avenue
## 1418         01/01/1901                                     435 2nd Avenue
## 1419         11/12/2009                                853 Longwood Avenue
## 1420         06/23/2003                                  23 Central Street
## 1421         06/28/1996                                1440 Western Avenue
## 1422         01/25/1983                                    5616 6th Avenue
## 1423         10/01/2001                                 358 Madison Street
## 1424         03/04/2008                                     60 Main Street
## 1425         04/10/2000                                    230 60th Street
## 1426         05/26/1987                              185 Old Military Road
## 1427         10/13/2005                              418 North Main Street
## 1428         03/27/2019                            65 Broadway, 21st Floor
## 1429         06/10/2010                                       551 Route 22
## 1430         06/14/2010                                  475 Irving Avenue
## 1431         01/01/2004                                266 Vineyard Avenue
## 1432         04/02/1996                                490 East Ridge Road
## 1433         05/15/1991                             4901 Lac De Ville Blvd
## 1434         03/17/2011                              111 East 210th Street
## 1435         11/05/1991                                    14 Grove Street
## 1436         06/03/1999                                172-70 Baisley Blvd
## 1437         12/31/2014                                   55 Barrett Drive
## 1438         10/19/1984                           75 Stratton Street South
## 1439         02/03/1992                               222 West Main Street
## 1440         04/04/2008                               2300 West Ridge Road
## 1441         07/19/2002                                  64 Commerce Drive
## 1442         04/15/1988                                 104 Paddock Street
## 1443         10/30/2013                                105 Hamilton Avenue
## 1444         11/21/2000                      1367 Washington Ave Suite 401
## 1445         08/01/1979                                      2840 Knapp St
## 1446         09/27/2005                                1480 Prospect Place
## 1447         08/01/1979                          1300 Massachusetts Avenue
## 1448         01/27/2006                                39 East Main Street
## 1449         01/26/1998                                     23A Perlman Dr
## 1450         09/27/1979                                     920 Lark Drive
## 1451         08/11/1998                              281 West 127th Street
## 1452         05/23/2008                              47 Sickles Street, 1a
## 1453         01/06/2006                              500 East Fordham Road
## 1454         07/24/1985                            17-11 Brookhaven Avenue
## 1455         01/01/1901                            7785 North State Street
## 1456         11/12/1998                                      12 Leach Road
## 1457         12/28/2012                                   3 Mercycare Lane
## 1458         05/30/2002                        6687 Pittsford Palmyra Road
## 1459         12/26/2017                             475 South Transit Road
## 1460         04/01/1994                                   9559 Main Street
## 1461         05/28/1999                                 751 Briggs Highway
## 1462         12/31/2007                                 755 North Broadway
## 1463         12/13/2019                               123 Conhocton Street
## 1464         01/01/1991                                299 East River Road
## 1465         05/29/2001                                      120 Odell Ave
## 1466         12/11/2014                                10 Claremont Avenue
## 1467         11/06/2008                                   55 Melroy Avenue
## 1468         08/23/2007                                 22567 Summit Drive
## 1469         12/19/1979                                       256 Broadway
## 1470         02/19/1986                                 300 North Broadway
## 1471         11/14/2008                               2555 Nostrand Avenue
## 1472         03/29/1996                              79 Vandenburgh Avenue
## 1473         07/28/2010                                  155 Aldren Avenue
## 1474         03/01/1999                                     20 Manor Drive
## 1475         04/12/2017                                   4233 Lake Avenue
## 1476         01/01/1901                                      847 Cohwy 122
## 1477         07/01/2009                               565 Manhattan Avenue
## 1478         05/30/2018                               1001 Jennings Street
## 1479         01/12/2012                                 1978 Crompond Road
## 1480         01/01/1901                               400 East Main Street
## 1481         06/09/2017                                1086 North Broadway
## 1482         01/01/1901                                   224 East Main St
## 1483         01/01/1901                                 140 Meisner Avenue
## 1484         08/22/2019                                   219 Front Street
## 1485         10/30/2013                             1120 South Main Street
## 1486         02/01/1979                              3550 Lexington Avenue
## 1487         07/31/1996                           1100 Coney Island Avenue
## 1488         10/24/2019                                   4514 16th Avenue
## 1489         12/01/1981                               25 Bialystoker Place
## 1490         10/26/2007                                 1515 Jarrett Place
## 1491         07/15/1988                              199 N Middletown Road
## 1492         03/20/1992                             865 Northern Boulevard
## 1493         09/28/2005                                    300 West Avenue
## 1494         08/05/2015                                 4600 Military Road
## 1495         10/09/2013                       Building 310 - Sullivan Hall
## 1496         02/01/1989                                1325 Brentwood Road
## 1497         12/16/2011                                   2 Pearlman Drive
## 1498         06/22/1982                             200 Wireless Boulevard
## 1499         09/27/2012                                   3045 East Avenue
## 1500         07/15/2013                               127 West Main Street
## 1501         11/16/2012                                  38 Heritage Court
## 1502         05/01/2012                                111 East 210 Street
## 1503         01/10/2005                                 295 Knollwood Road
## 1504         11/02/1992                       4600 Southwood Heights Drive
## 1505         01/01/1901                            6511 Springbrook Avenue
## 1506         01/01/1901                                2535 Genesee Street
## 1507         07/26/1994                                     99 Main Street
## 1508         02/01/1980                                  10 Berkshire Road
## 1509         01/01/1901                                   141 Dosoris Lane
## 1510         05/22/1998                                   21 Nelson Street
## 1511         08/23/1993                                   835 West Main St
## 1512         12/22/2009                              921 East 228th Street
## 1513         09/15/1995                                 465 W 167th Street
## 1514         12/05/2019                                 158 Sawgrass Drive
## 1515         01/01/1901                                 108 Erie Boulevard
## 1516         07/23/2008                                    4401 Bronx Blvd
## 1517         02/17/2005                                        Main Street
## 1518         08/01/2018                                   80 Maple Parkway
## 1519         01/10/2013                                  297 Myrtle Avenue
## 1520         11/27/2019                                 2190 Jerome Avenue
## 1521         03/06/2014                             199 Mount Eden Parkway
## 1522         03/26/2010                                  15 Hastings Drive
## 1523         11/25/1991                                  385 Seneca Avenue
## 1524         06/09/1985                             2021 South Winton Road
## 1525         06/04/2003                                  1408 Ocean Avenue
## 1526         07/01/2014                                  1 Columbia Street
## 1527         02/28/2013                                   730 Brook Avenue
## 1528         01/01/1999                                    63 Oakcrest Ave
## 1529         01/25/1999                       50 Clinton Street, Suite 208
## 1530         01/01/1901                                   1010 Main Street
## 1531         03/01/2002                                   984 Faile Street
## 1532         01/14/2002                                      4277 Route 22
## 1533         03/25/1999                                  1335 Portland Ave
## 1534         07/14/1995                                     977 Fox Street
## 1535         09/06/2019                     1025 Morrison Avenue, Room 142
## 1536         01/26/2012                               1940 Commerce Street
## 1537         07/01/2006                              170 West 233rd Street
## 1538         09/04/2013                               355 North Park Drive
## 1539         03/07/1980                               1205 Delaware Avenue
## 1540         02/07/2019                                   800 Ayrault Road
## 1541         09/05/1989                                 601 Suffolk Avenue
## 1542         01/01/1901                             326 South Pearl Street
## 1543         01/01/1901                                  75 Beekman Street
## 1544         12/21/2016                                    1 Cisney Avenue
## 1545         03/25/2015                                105-12 101st Avenue
## 1546         02/01/1989                                  100 Miller Street
## 1547         02/01/1978                               525 East 68th Street
## 1548         12/18/1998                                 7 Timmerman Avenue
## 1549         04/10/2013                                  225 W 24th Street
## 1550         11/02/2009                            435 East Henrietta Road
## 1551         08/06/1987                                1300 Roanoke Avenue
## 1552         06/29/2012                                425 Guy Park Avenue
## 1553         11/20/1996                                            Route 9
## 1554         01/01/1901                               11 Murray Hill Drive
## 1555         10/06/2006                                911 Flatbush Avenue
## 1556         01/01/1901                               99 Golden Hill Drive
## 1557         01/16/2018                              253 East 142nd Street
## 1558         02/01/1980                                 3845 Carpenter Ave
## 1559         03/13/2018                                1088 North Broadway
## 1560         05/29/2010                                     275 7th Avenue
## 1561         11/22/2016                                   2861 Harlem Road
## 1562         01/01/1901                              670 White Plains Road
## 1563         01/01/1901                                 2601 Ocean Parkway
## 1564         03/16/1998                                 2640 Pitkin Avenue
## 1565         04/22/1985                    95 North Main Street, Suite 104
## 1566         01/01/1901                             240 Meeting House Lane
## 1567         07/01/1992                              240 East 109th Street
## 1568         08/06/2015                           134 Great East Neck Road
## 1569         08/06/2007                                 238 Arsenal Street
## 1570         12/14/2011                                 34 Chenango Avenue
## 1571         12/19/1997                                  1900 Empire Blvd.
## 1572         02/09/2004                                  535 Second Avenue
## 1573         01/01/1901                               5901 Palisade Avenue
## 1574         07/01/1992                                       4812 9th Ave
## 1575         11/27/2002                              90 South Ridge Street
## 1576         12/22/2005                                119-19 Graham Court
## 1577         07/21/2006                               1245 Montauk Highway
## 1578         10/01/2004                             620 West Seneca Street
## 1579         08/13/2000                                 111-29 Queens Blvd
## 1580         09/27/1979                            1065 Southern Boulevard
## 1581         08/19/1994                                370 East Ridge Road
## 1582         03/04/2001                                       1299 Route 9
## 1583         01/01/1901                                    270 Park Avenue
## 1584         02/02/2000                                     70-05 35th Ave
## 1585         05/11/2011                                  3379 Chili Avenue
## 1586         04/26/2002                        450 Waverly Avenue, Suite 8
## 1587         07/01/1999                                 821 Pre-Emption Rd
## 1588         09/12/1996                                   115 Saratoga Rd.
## 1589         09/21/2005                      4421-4433 Vestal Parkway East
## 1590         06/29/2015                             2600 Grand Island Blvd
## 1591         02/14/2005                                  1127 Wehrle Drive
## 1592         10/04/2013                              77 West Barney Avenue
## 1593         03/26/1997                               220 East 42nd Street
## 1594         08/30/2004                               132 West Main Street
## 1595         09/26/2003                                 125 High Rock Road
## 1596         07/01/1992                                  900 Tinton Avenue
## 1597         04/23/1999                           2100 Middle Country Road
## 1598         02/01/1989                                300 Dorrance Avenue
## 1599         02/29/1988                                     2277 Grand Ave
## 1600         08/01/1979                                  845 Palmer Avenue
## 1601         08/30/2017                                 1000 Teller Avenue
## 1602         04/22/2004                                      3050 Route 50
## 1603         03/06/2018                                   141 Dosoris Lane
## 1604         05/25/2017                       1227 Edward L. Grant Highway
## 1605         01/11/2007                        400 Patroon Creek Boulevard
## 1606         07/09/2001                                   6209 16th Avenue
## 1607         08/26/2016                               440 East Main Street
## 1608         09/23/2004                                     49 Forest Road
## 1609         05/01/1995                           1110 Pennsylvania Avenue
## 1610         03/05/2012                              226 East 144th Street
## 1611         07/27/1998                                250 Grand Concourse
## 1612         09/21/2006                               345 East 24th Street
## 1613         02/01/1979                           2678 Kingsbridge Terrace
## 1614         01/02/2007                            615 Peninsula Boulevard
## 1615         06/22/1982                               151 N County Complex
## 1616         09/12/2007                                   West 18th Street
## 1617         05/05/2014                                     19 West Avenue
## 1618         09/02/1986                                      85 Metro Park
## 1619         02/01/1989                                 319 Upper Broadway
## 1620         12/31/2002                              610 West 158th Street
## 1621         10/11/2016                                   1121 Forest Road
## 1622         09/27/1979                                  111 Westfall Road
## 1623         10/01/1960                                2340 Cropsey Avenue
## 1624         05/20/2009                                2209 Genesee Street
## 1625         10/16/2019                                3112 Sheridan Drive
## 1626         02/01/1979                             42084 State Highway 28
## 1627         07/01/1992                                 450 Pacific Street
## 1628         04/28/1980                              600 East 233rd Street
## 1629         01/01/1901                              430 Beach 68th Street
## 1630         12/31/2013                              2345 Nott Street East
## 1631         11/07/2017                                 564 Niagara Street
## 1632         02/18/2000                                 1515 Southern Blvd
## 1633         01/07/2011                                965 Longwood Avenue
## 1634         01/01/1991                             1401 University Avenue
## 1635         05/10/2007                   161-05 Horace Harding Expressway
## 1636         11/11/1998                              2237 Linden Boulevard
## 1637         04/04/2002                                    37 Dietz Street
## 1638         01/01/1901                                  3155 Grace Avenue
## 1639         08/29/1996                                 969 State Route 11
## 1640         04/01/1989                                330 Community Drive
## 1641         03/11/1980                                804 Columbia Street
## 1642         11/28/2016                             6702-6706 Third Avenue
## 1643         06/21/2017                                600 Red Creek Drive
## 1644         01/08/2007                                      6 Healthy Way
## 1645         08/05/2011                                 33 Mitchell Avenue
## 1646         01/04/2016                              2 Grace Church Street
## 1647         12/07/2004                                 1778 Jerome Avenue
## 1648         06/19/2017                             600 Saint Ann's Avenue
## 1649         08/11/1998                              47 Marcus Garvey Blvd
## 1650         09/18/1985                                  46 Harriman Drive
## 1651         07/19/1979                                 1155 Myrtle Avenue
## 1652         09/27/1979                               295 Flatbush Ave Ext
## 1653         08/01/1980                                8881 State Route 97
## 1654         09/22/1997                                   134 Court Street
## 1655         03/30/1993                                   440 Merrick Road
## 1656         12/02/1988                    3632 Nostrand Avenue, 4th floor
## 1657         11/16/1998                                 101 College Street
## 1658         02/12/1999                               29 North Hamilton St
## 1659         10/06/1989                                 1983 Marcus Avenue
## 1660         12/09/2011                                       6 Hearts Way
## 1661         02/22/2008                                 425 East 61 Street
## 1662         06/15/2016                             1365 Washington Avenue
## 1663         01/27/1993                                159 Margaret Street
## 1664         09/01/1981                               1167 Nostrand Avenue
## 1665         05/31/2007                             98 North Second Street
## 1666         09/05/2018                         1669 Pittsford Victor Road
## 1667         04/07/1993                               525 E Houston Street
## 1668         05/31/1994                                   6400 Powers Road
## 1669         04/12/2010                                   14 Village Drive
## 1670         01/01/2003                              401 West 164th Street
## 1671         02/11/2008                                45 Rocky Point Road
## 1672         07/13/1998             Pine West Plaza, Washington Avenue Ext
## 1673         04/12/2010                        4401 Middle Settlement Road
## 1674         03/12/1999                                  367A East Main St
## 1675         08/28/2012                                640 County Route 22
## 1676         01/01/2004                               220 Crystal Run Road
## 1677         09/25/2014                                       2537 Route 9
## 1678         05/25/2005                                     79-01 Broadway
## 1679         02/27/2011                                   1 Fox Care Drive
## 1680         09/22/1997                      145 Huguenot Street 8th Floor
## 1681         06/14/1999                                   1 Cooley Heights
## 1682         07/18/1988                                      5141 Broadway
## 1683         12/06/1985                                 76 Guy Park Avenue
## 1684         01/01/1901                             3518 Bainbridge Avenue
## 1685         05/14/2018                          100-02 Rockaway Boulevard
## 1686         07/19/2018                               1455 East Ridge Road
## 1687         08/02/1995                                 3 Technology Drive
## 1688         05/10/2002                               264 Old Country Road
## 1689         08/01/1993                                  1561 Long Pond Rd
## 1690         06/21/2010                                   1302 Main Street
## 1691         04/10/2006                                   225 Front Street
## 1692         04/15/1997                                835 Herkimer Street
## 1693         06/01/1988                       50 Clinton Street, Suite 601
## 1694         03/06/2002                                 4624 Salina Street
## 1695         08/13/1999                                  1915 Ocean Avenue
## 1696         05/18/1998                                 35 Riverside Drive
## 1697         10/01/1984                                 286 Deyo Hill Road
## 1698         03/27/1984                                550 Montauk Highway
## 1699         09/27/1979                                    284 Main Street
## 1700         07/19/1979                                 494-500 Dumont Ave
## 1701         01/01/1901                                    278 Bank Street
## 1702         06/20/1989                                       543 Bay Road
## 1703         01/01/2002                              945 East 108th Street
## 1704         10/16/2001                                    150 55th Street
## 1705         02/04/2015                                77 W. Barney Street
## 1706         11/29/2012                                    800 Home Street
## 1707         06/20/2016                                    3144 3rd Avenue
## 1708         07/01/2003                                      3039 Avenue U
## 1709         10/09/1998                                 2800 Marcus Avenue
## 1710         02/01/1980                                       615 Avenue C
## 1711         04/01/1999                              260 East 188th Street
## 1712         12/28/1999                                     648 Plank Road
## 1713         01/01/1901                                   301 Hackett Blvd
## 1714         10/24/2019                                   6817 Bay Parkway
## 1715         03/20/2002                                 2701 Emmons Avenue
## 1716         01/01/1901                                    64 Hager Street
## 1717         08/27/2002                        501 1/2 South Second Street
## 1718         11/08/1979                                    470 Seaview Ave
## 1719         10/13/2000                                    75 Rockaway Ave
## 1720         02/01/2010                                     461 1st Avenue
## 1721         12/05/2016                                100 Community Drive
## 1722         05/24/2000                 2924 County Route 17, P.O. Box 293
## 1723         02/22/2013                               201 East 93rd Street
## 1724         07/01/2018                                  33-34 80th Street
## 1725         01/01/1901                                     Bradley Avenue
## 1726         06/23/2003                                711 Railroad Street
## 1727         12/19/2019                                       8 Park Place
## 1728         01/28/2010                              216 East 120th Street
## 1729         04/03/2015                            2435 N. Triphammer Road
## 1730         09/15/2010                                540 Union Boulevard
## 1731         07/01/2009                                   973 James Street
## 1732         10/19/2017                            1133 Westchester Avenue
## 1733         09/29/2003                            2826 Westchester Avenue
## 1734         07/17/1998                               109 West Main Street
## 1735         04/06/1995                               1219 North Forest Rd
## 1736         05/23/2008                               4616 Millenium Drive
## 1737         12/15/1988                                 1340 State Route 9
## 1738         02/12/1996                               1500 Blondell Avenue
## 1739         07/08/2014                             3525 Baychester Avenue
## 1740         10/26/2012                                   5553 Main Street
## 1741         03/05/2003                                 Sherman Potts Road
## 1742         01/28/2010                        118-11 Guy Brewer Boulevard
## 1743         05/30/2002                              1208 Scottsville Road
## 1744         09/27/1979                                   1 Leo Moss Drive
## 1745         01/01/1901                             7 Gouverneur Slip East
## 1746         09/17/2012                         440 South Riverside Avenue
## 1747         10/21/2011                              601 E. Genesee Street
## 1748         09/06/2019                           22075 Constitution Drive
## 1749         08/04/2006                                   4206 15th Avenue
## 1750         10/20/2014                                 67 Division Street
## 1751         09/15/2004                                    909 Culver Road
## 1752         02/01/1989                               172 Meadow Hill Road
## 1753         04/14/2009                                  36-11 21st Street
## 1754         11/03/2006                                       371 Broadway
## 1755         06/01/2013                               6 Medical Park Drive
## 1756         01/01/2013                                   10 Carlton Drive
## 1757         01/01/1901                                1300 Roanoke Avenue
## 1758         09/01/2001                                   234 Tarrytown Rd
## 1759         07/18/1996                                  77 Clinton Avenue
## 1760         10/21/1992                                2920 Tibbits Avenue
## 1761         04/26/1995                                5626 Mosholu Avenue
## 1762         12/13/1996                                465 New Lots Avenue
## 1763         10/07/2013                                   1110 Boston Road
## 1764         03/09/1994                 221 North Sunrise Hwy Service Road
## 1765         06/05/2013                                   56 Market Street
## 1766         09/21/2015        688 White Plains Road, 2nd floor, Suite 211
## 1767         11/17/2015                             99 Business Park Drive
## 1768         01/01/1901                                2950 Elmwood Avenue
## 1769         04/30/1991                             28650 State Highway 23
## 1770         06/26/2018                                  250 Fulton Street
## 1771         12/11/2018                            104 South Porter Street
## 1772         10/04/2007                              1040 Havemeyer Avenue
## 1773         12/15/2008                                430 Canisteo Street
## 1774         10/27/1992                                  Susquehana Avenue
## 1775         07/19/2019                              225 East 126th Street
## 1776         09/27/1979                                     5 Court Street
## 1777         10/25/2000                                   444 East Main St
## 1778         02/01/1989                                    4459 Bailey Ave
## 1779         09/27/1979                              421 Montgomery Street
## 1780         01/01/1901                                1555 Long Pond Road
## 1781         12/23/2002                               195 East Main Street
## 1782         09/09/2009                               300 East 66th Street
## 1783         12/20/2018                                470 Tom Miller Road
## 1784         07/20/1990                               756 Pre-Emption Road
## 1785         10/20/2018                       134-64 Springfield Boulevard
## 1786         02/01/1989                                100 Franklin Street
## 1787         02/01/1980                                   1700 Penfield Rd
## 1788         08/17/2011                                3909 Forest Parkway
## 1789         01/25/1988                                 One Bethesda Drive
## 1790         02/01/1980                                   1752 Park Avenue
## 1791         01/01/1901                             600 Northern Boulevard
## 1792         08/31/2005                                      1420 Broadway
## 1793         03/09/2000                           425-427 Coney Island Ave
## 1794         10/23/1984                                 620 Madison Street
## 1795         01/01/1901                            Christ Episcopal Church
## 1796         08/04/2011                                 144 Genesee Street
## 1797         12/01/1997                          201 Dates Drive Suite 206
## 1798         01/01/1901                                   259 First Street
## 1799         08/07/2008                             42084 State Highway 28
## 1800         11/16/1998                                24-32 Conkey Avenue
## 1801         08/05/2016                               1360 Hylan Boulevard
## 1802         07/28/2009                                   1001 11th Street
## 1803         09/27/1979                               1265 Franklin Avenue
## 1804         03/06/1995             Rensselaer County Plaza, 279 Troy Road
## 1805         01/01/1901                                     2 Coulter Road
## 1806         01/13/2006                                 26 Bleecker Street
## 1807         01/01/1901                                   102-01 66th Road
## 1808         01/01/1901                                 601 Elmwood Avenue
## 1809         09/09/2003                            240 Middle Country Road
## 1810         08/01/1979                                  275 Moriches Road
## 1811         03/24/2014                                  175 Fulton Avenue
## 1812         09/21/2016                                  1200 Waters Place
## 1813         09/09/2013                                 24 Hamilton Street
## 1814         08/21/1979                                 445 Tremont Street
## 1815         10/20/1995                                     511 7th Avenue
## 1816         12/21/2010                                   6 Dairyland Road
## 1817         08/15/2013                    104 West 29th Street, 8th floor
## 1818         11/10/1982                                   120 Sykes Street
## 1819         02/15/2019                                  1490 Macombs Road
## 1820         01/01/1901                                    100 Park Street
## 1821         10/12/1994                                1300 Roanoke Avenue
## 1822         02/01/1980                                 666 Kappock Street
## 1823         11/26/2003                                 340 South Broadway
## 1824         09/27/1979                                  125 Walker Street
## 1825         02/05/1996                               4 Montgomery Heights
## 1826         06/18/2014                                16 East Main Street
## 1827         10/21/2016                                  595 Degraw Street
## 1828         08/25/2000                           3 Atrium Drive Suite 150
## 1829         02/27/1984                                 845 Central Avenue
## 1830         11/10/2003                                   36 Laurel Avenue
## 1831         12/15/2008                                432 Canisteo Street
## 1832         05/14/1999                                    4 Commerce Lane
## 1833         05/29/2010                                  275 Eighth Avenue
## 1834         08/03/1989                1170 Webster Avenue at 167th Street
## 1835         07/02/2014                                  115 Saratoga Road
## 1836         01/01/1901                              670 Stoneleigh Avenue
## 1837         11/15/1991                                    15 Loder Street
## 1838         11/17/1995                              90 Presidential Plaza
## 1839         11/02/1992                       102 Race Track Road, Suite 1
## 1840         01/01/1901                                 1980 Crompond Road
## 1841         01/24/1985                               2-8 West Main Street
## 1842         12/01/1997                                  594 Albany Avenue
## 1843         10/26/1987                               211 East Main Street
## 1844         05/04/2017                                770 Flatbush Avenue
## 1845         08/01/1980                                 1010 Underhill Ave
## 1846         02/08/2011                                118 Consumer Square
## 1847         01/26/1998                               446A Guy Park Avenue
## 1848         09/02/1997                           421 West Columbia Street
## 1849         03/01/2009                             1130 Salt Springs Road
## 1850         08/01/1995                                 321 Gifford Street
## 1851         05/19/2004                                   120 Kisco Avenue
## 1852         09/20/2013                              3860 McKinley Parkway
## 1853         07/01/2006                           2003 Coney Island Avenue
## 1854         06/16/2006                                   2 Barbarosa Lane
## 1855         01/01/2004                               201-10 Northern Blvd
## 1856         03/16/2016                                    905 Culver Road
## 1857         07/06/2001                                      37 Albany Ave
## 1858         05/28/1999                                1381 University Ave
## 1859         09/12/2007                             800 East Gun Hill Road
## 1860         01/09/2006                                966 Prospect Avenue
## 1861         04/26/1995                                  230 Second Avenue
## 1862         05/18/2015               X244 and X237, 120 West 231st Street
## 1863         03/05/2012                               333 East 38th Street
## 1864         12/27/2018                             2554 White Plains Road
## 1865         07/27/1981                                     College Avenue
## 1866         02/16/2000                  100 Sullivan Avenue, P.O. Box 576
## 1867         07/19/1979                                175 Lawrence Avenue
## 1868         10/29/2007                                  190 Fulton Street
## 1869         01/01/1901                                        50 Broadway
## 1870         01/01/1901                               30 West 138th Street
## 1871         09/27/1979                                 503 South Broadway
## 1872         05/21/2001                                    55 Gould Street
## 1873         02/03/2003                 Village Plaza, 35 Lower Hudson Ave
## 1874         08/11/2017                            51 West Burnside Avenue
## 1875         10/16/1997                                2209 Genesee Street
## 1876         09/30/1998                                      5949 Broadway
## 1877         02/28/1983                           300 West Dominick Street
## 1878         02/01/1980                               3457 Nostrand Avenue
## 1879         02/19/2002                        160 Water Street, 9th Floor
## 1880         04/01/2000                              1095 Jefferson Avenue
## 1881         11/19/1982                                     12845 Broadway
## 1882         03/25/2011                             1365 Washington Avenue
## 1883         10/24/2018                                 3400 Monroe Avenue
## 1884         06/17/2004                              728 North Main Street
## 1885         04/27/2006                                    8 Church Street
## 1886         04/01/2005                           777 Zeckendorf Boulevard
## 1887         01/01/1901                                   531 Meade Street
## 1888         06/13/1989                               989 Jericho Turnpike
## 1889         03/01/2001                                   130-02 115th Ave
## 1890         01/01/1901                                  8533 Jericho Tpke
## 1891         09/06/2011                                   1302 Main Street
## 1892         07/27/1981                                     54 Main Street
## 1893         06/27/2005                                    325 Main Street
## 1894         08/01/1995                               13407 State Route 12
## 1895         05/24/1988                              100 New Turnpike Road
## 1896         07/31/2017                                  665 Saratoga Road
## 1897         10/29/2007                              176 East 115th Street
## 1898         02/01/1989                                   200 Bassett Road
## 1899         01/01/1901                                  1901 First Avenue
## 1900         12/29/2017                                240 Riverside Drive
## 1901         09/06/1995                              7246 Janus Park Drive
## 1902         11/01/1992                                      4600 Broadway
## 1903         11/01/1988                                116-30 Sutphin Blvd
## 1904         09/27/1979                                    160 Main Street
## 1905         06/19/1996                                     65 Main Street
## 1906         03/02/1998                               356 West 18th Street
## 1907         04/04/2013                                       445 Park Ave
## 1908         09/27/1979                                    Sanatorium Road
## 1909         03/10/2008                                  380 Second Avenue
## 1910         09/12/2005                               40 Robert Pitt Drive
## 1911         02/01/1989                                    170 Lake Street
## 1912         03/27/1992                                 3101 Shippers Road
## 1913         04/10/1996                                219 East 121 Street
## 1914         05/04/2007                                 136-25 37th Avenue
## 1915         01/01/1901                                   1 Hospital Drive
## 1916         07/28/1997                                    26 Research Way
## 1917         03/21/2011                         1182 Troy-Schenectady Road
## 1918         07/14/1995                                      5525 Broadway
## 1919         08/18/1995                                 53 Columbia Street
## 1920         07/15/2002                                 303 Sterling Drive
## 1921         01/08/1998                                       77 Route 112
## 1922         10/25/1991               SUNY At Stonybrook 100 Patriots Road
## 1923         09/23/2014                    2004 McDonald Avenue, Suite 2-A
## 1924         07/05/2006                           235 Port Richmond Avenue
## 1925         04/15/2019                                   14 Hudson Avenue
## 1926         08/04/2006                                420 Lefferts Avenue
## 1927         06/30/2003                                  6199 Transit Road
## 1928         09/01/2000                                       153 So Rt 94
## 1929         12/22/2011              111 Sunken Garden Loop, Suite 137-143
## 1930         08/18/1999                                210 Williams Street
## 1931         12/20/2013                                 271-11 76th Avenue
## 1932         06/27/2008                               116 East 92nd Street
## 1933         07/01/2006                               690 Amsterdam Avenue
## 1934         08/01/1979                                 119-15 27th Avenue
## 1935         01/19/2017                                200 East River Road
## 1936         05/28/2019                                    4900 Broad Road
## 1937         09/27/2005                              211-221 Powell Street
## 1938         01/11/2016                              138 West 143rd Street
## 1939         02/01/1989                             2700 North Forest Road
## 1940         01/01/1901                                 80 Fairview Avenue
## 1941         02/01/1989                                301 Nantucket Drive
## 1942         12/14/1988                                 321 East Albany St
## 1943         02/01/1989                             2850 Grand Island Blvd
## 1944         10/19/2012                                   120 First Street
## 1945         07/28/1999                              725 Renaissance Drive
## 1946         07/18/1996                               4535-39 Third Avenue
## 1947         09/27/2011                                  611 Northern Blvd
## 1948         02/01/1979                                   100 Baldwin Road
## 1949         05/31/1994                               397 Louisiana Street
## 1950         01/03/2002                              103 West 107th Street
## 1951         02/25/2020                                     161 Carey Road
## 1952         01/01/1901                                      9822 Route 16
## 1953         02/02/2007                             3669 Southwestern Blvd
## 1954         02/06/2014                                100 California Road
## 1955         01/01/1901                                    45 Sixth Street
## 1956         01/01/1901                                  535 E 70th Street
## 1957         04/28/2014                               1500 Broadway Avenue
## 1958         05/06/1983                             161 Hempstead Turnpike
## 1959         01/01/1901                                     600 Roe Avenue
## 1960         11/16/1999                   225 Greenfield Parkway Suite 105
## 1961         03/23/2018                                  53 Beekman Street
## 1962         04/07/2003                                    1026 Union Road
## 1963         01/16/1990                                161 Lake Shore Road
## 1964         12/02/2014                                     900 Lark Drive
## 1965         03/29/1995                   100 Garden City Plaza, Suite 100
## 1966         06/06/2019                                    600 Doat Street
## 1967         01/08/2019                                171 Delancey Street
## 1968         05/16/2016                                  211 Square Street
## 1969         11/27/2007                              116 North Jensen Road
## 1970         01/01/1901                                    391 Pelham Road
## 1971         09/14/2018                              2331 Eastchester Road
## 1972         01/01/1901                        104 North Washington Street
## 1973         01/01/1901                                  4802 Tenth Avenue
## 1974         01/01/1901                                  5353 Merrick Road
## 1975         12/18/2012                                  620 Foster Avenue
## 1976         03/17/2014                                 1 Bell Tower Drive
## 1977         01/01/1901                    180 Washington Avenue Extension
## 1978         10/02/2017                                   999 Blake Avenue
## 1979         11/13/2017                     1450 Western Avenue, Suite 101
## 1980         01/01/1901                                1270 Belmont Avenue
## 1981         03/14/2011                                    14 Grove Street
## 1982         11/30/1990                 979 Cross Bronx Expressway Service
## 1983         09/16/1998                               369 East Main Street
## 1984         01/01/1901                                 2987 Seneca Street
## 1985         03/02/2015                         521-523 West Seneca Street
## 1986         05/16/1997                               2 Clara Barton Drive
## 1987         09/06/1994                                 3550 Jerome Avenue
## 1988         01/01/1901                                    15 Maple Avenue
## 1989         04/01/1989                                   1740 84th Street
## 1990         09/12/2014                                 1556 Straight Path
## 1991         07/12/2013                                    90 South Street
## 1992         10/10/2006                                  1701 Noyes Street
## 1993         08/01/1979                                   275 North Street
## 1994         01/01/1901                                 127 South Broadway
## 1995         06/14/2016                             99 Business Park Drive
## 1996         09/27/1979                                   531 Meade Street
## 1997         07/03/2012                                  813 Warren Street
## 1998         01/01/1901                                 271-11 76th Avenue
## 1999         01/01/1901                                  41 East Post Road
## 2000         09/27/1979                             3111 South Winton Road
## 2001         04/01/1983                                    400 Lake Avenue
## 2002         01/26/2015                    230 West 17th Street, 4th floor
## 2003         09/05/2013                                1609 Genesee Street
## 2004         04/19/2018                             24 Old Fire House Road
## 2005         12/29/1987                              161 Jefferson Heights
## 2006         05/16/2016                                672 Parkside Avenue
## 2007         04/01/2003                                  213 Hester Street
## 2008         09/21/2012                                     14789 Route 31
## 2009         08/15/2008                                205 Belle Mead Road
## 2010         01/01/1991                             475 New Hempstead Road
## 2011         12/02/2011                               60 Merritt Boulevard
## 2012         03/03/1983             30-50 Whitestone Expressway, Suite 304
## 2013         01/01/1901                             585 Schenectady Avenue
## 2014         07/01/2014                               60 Merritt Boulevard
## 2015         03/09/2018                                160 Robinson Street
## 2016         02/01/1980                                 215 Clinton Street
## 2017         02/28/2002                                   606 Old Route 17
## 2018         08/01/1979                          1300 Massachusetts Avenue
## 2019         04/18/2017                                  167 Sully's Trail
## 2020         10/21/2013                         420 South Riverside Avenue
## 2021         11/01/2007                                     2210 Troy Road
## 2022         09/20/2019                                    1200 Manor Road
## 2023         03/22/2010                         6941 Elaine Drive, Suite 3
## 2024         02/26/2010                                  1000 South Avenue
## 2025         06/15/2006                    106 Charles Lindbergh Boulevard
## 2026         03/10/2016                       6500 Porter Road, Suite 2030
## 2027         08/01/1979                              140 St Edwards Street
## 2028         06/15/2001                              842 A Lefferts Avenue
## 2029         09/27/1979                                        Court House
## 2030         03/23/1995                                  520 Eighth Avenue
## 2031         07/17/1996                                    79 North Street
## 2032         09/28/1992                               900 Intervale Avenue
## 2033         01/17/2014                                 2200 Penfield Road
## 2034         02/01/1989                                   451 Broad Street
## 2035         11/01/2018                                   527 Court Street
## 2036         06/24/2009                                  331 Bridge Street
## 2037         12/27/2013                         511 West Washington Street
## 2038         08/05/2009                                 6300 Eighth Avenue
## 2039         12/18/1988                              520 Beach 19th Street
## 2040         04/26/2016                              754 East 151st Street
## 2041         11/01/1991                                  78 Meisner Avenue
## 2042         08/10/1998                                   150 Broad Street
## 2043         01/18/2017                                  39 Brentwood Road
## 2044         11/07/2007                            1543-1545 Inwood Avenue
## 2045         04/23/2010                                 271-11 76th Avenue
## 2046         07/01/2004                                    40 Irving Place
## 2047         01/01/1901                               110 West 97th Street
## 2048         02/23/2012                               960 Manhattan Avenue
## 2049         05/03/1995                                  111 Mary's Avenue
## 2050         11/12/2015                         400 White Spruce Boulevard
## 2051         08/11/1998                              23 Fish and Game Road
## 2052         10/01/1997                                1617 North James St
## 2053         01/07/2013                                      2315 Broadway
## 2054         01/01/1901                                300 Community Drive
## 2055         04/29/1996                                    7246 Janus Park
## 2056         08/01/1995                                200 Red Creek Drive
## 2057         04/18/2018                                  2968 Chili Avenue
## 2058         01/01/2013                                      31 Arnot Road
## 2059         07/01/2018                                  223 Graham Avenue
## 2060         03/01/2002                             416 East Raynor Avenue
## 2061         11/25/2019                                83-14 Cooper Avenue
## 2062         04/07/2014                                4242 Ridge Lea Road
## 2063         02/10/2014                              125 East 181st Street
## 2064         01/26/2006                               210 East 64th Street
## 2065         09/19/2002                            153 West Genesee Street
## 2066         04/02/1998                                  3101 Ninth Street
## 2067         05/19/1999                                   1435 86th Street
## 2068         09/25/1992                               205 East 64th Street
## 2069         03/12/2014                                    779 Melrose Ave
## 2070         01/01/1901                                   506 Lenox Avenue
## 2071         08/01/1979                                   88 Old Town Road
## 2072         01/01/1901                                   13-11 Virgina St
## 2073         09/27/1979                                        165 Main St
## 2074         02/01/1979                                       3015 W 29 St
## 2075         01/01/1901                             17 Narragansett Avenue
## 2076         11/18/1984                               221 Jericho Turnpike
## 2077         07/03/2019                             61-11 Queens Boulevard
## 2078         10/30/1993                                   1025 Commons Way
## 2079         09/04/2009                                    1200 Fairway #7
## 2080         11/23/2011                               429 East 75th Street
## 2081         12/05/1983                       246 West Main Street, Ste.#1
## 2082         07/01/1992                            135th St at Convent Ave
## 2083         01/01/1901                                715 Falconer Street
## 2084         09/25/2015                                   118 Broad Street
## 2085         02/01/1978                                818 Ellicott Street
## 2086         05/06/1999                                     4039 Route 219
## 2087         11/16/1995                               Route 38, P O Box 28
## 2088         11/28/2016                               7016 County Route 10
## 2089         10/13/1997                               1 Prospect Park West
## 2090         10/15/2008                  865 Merrick Road - Unit 150 North
## 2091         12/13/2016                                   3761 Main Street
## 2092         03/01/2002                                 1290 Spofford Ave.
## 2093         02/01/1994                                64 Albany-Shaker Rd
## 2094         03/16/2015                                  3209 Third Avenue
## 2095         04/01/2019                                1919 Madison Avenue
## 2096         11/24/2008                                      1519 Nye Road
## 2097         05/15/1992                              2180 Empire Boulevard
## 2098         02/01/1980                                 2478 Jerusalem Ave
## 2099         01/01/1970                                  89 Genesee Street
## 2100         07/02/2008                                   109 Baker Avenue
## 2101         02/11/2002                                    22 Green Street
## 2102         11/06/1990                             22-41 New Haven Avenue
## 2103         08/01/1980                                  112 Ski Bowl Road
## 2104         10/01/2004                                  36 Slawson Street
## 2105         02/16/2010                                      4 Land Re Way
## 2106         08/01/1980                                  640 West Broadway
## 2107         02/10/2005                                 2244 Church Avenue
## 2108         02/01/1980                              10-42 Mitchell Avenue
## 2109         12/22/2016                               6119 U.S. Highway 11
## 2110         09/21/2011                         730 Concourse Village West
## 2111         08/01/1979                                  87 South Route 9W
## 2112         08/01/2013                               801 Amsterdam Avenue
## 2113         07/01/2006                                1940 Webster Avenue
## 2114         06/23/2003                                 1 East Main Street
## 2115         11/03/2011                                  312 Oswego Street
## 2116         03/11/2005                                360 Snediker Avenue
## 2117         01/01/1901                                 179 North Broad St
## 2118         01/01/1901                                  One Norton Avenue
## 2119         01/15/1986                    6007 Fair Lakes Road, Suite 200
## 2120         08/28/1980                                      40 Keogh Lane
## 2121         10/20/2018                                  50-53 Newton Road
## 2122         12/31/1993                                   303 Grant Avenue
## 2123         01/01/1901                                   301 Hackett Blvd
## 2124         01/23/2006                                8 East Third Street
## 2125         05/20/1996                              800 Van Siclen Avenue
## 2126         06/29/2012                 2064 Fairport Nine Mile Point Road
## 2127         08/02/1995                            240 Middle Country Road
## 2128         12/01/1999                                  1040 State Street
## 2129         08/01/2018                                 700 Cortelyou Road
## 2130         01/01/1901                                 3 South 6th Avenue
## 2131         11/05/2012                                 828 State Route 11
## 2132         06/19/2018                                  400 Irving Avenue
## 2133         01/01/1901                                     600 Bates Road
## 2134         01/01/1901                                 529 Central Avenue
## 2135         06/16/2006                                   2 Barbarosa Lane
## 2136         09/04/2003                                           Route 44
## 2137         10/29/1996                                   682 Union Avenue
## 2138         04/01/1996                               553-561 Court Street
## 2139         02/01/1979                                 5300 Military Road
## 2140         02/06/2007                                    3 Bridge Street
## 2141         06/15/2012                               619 West 54th Street
## 2142         03/03/2011                                    40 Autumn Drive
## 2143         01/24/2018                              200 Livingston Street
## 2144         12/14/1988                                   55 Calvary Drive
## 2145         08/01/2004                             1130 St Nichols Avenue
## 2146         07/17/1991                                    33 Research Way
## 2147         11/20/2012                                 6934 Williams Road
## 2148         06/08/1990                               369 East Main Street
## 2149         12/31/2016                                   1 Bethesda Drive
## 2150         01/01/1901                              400 North Main Street
## 2151         12/22/1981                                601 Riverside Drive
## 2152         06/09/2017                                147-201 Lake Street
## 2153         10/13/2017                                   79 Bridge Street
## 2154         02/01/1989                           2235 Millersport Highway
## 2155         09/06/2011                             528 North Barry Street
## 2156         10/31/2005                              1840 State Highway 10
## 2157         06/15/2012                               115 Delafield Street
## 2158         01/01/1901                               555 Rockaway Parkway
## 2159         07/06/2017                             65 Pennsylvania Avenue
## 2160         12/02/2000                                    1256 Culver Ave
## 2161         06/22/1982                                1869 Brentwood Road
## 2162         08/01/1995                                22 Rockledge Avenue
## 2163         04/28/2011                                  6941 Elaine Drive
## 2164         04/02/2012                              667 Stoneleigh Avenue
## 2165         05/06/1996                                   2554 Linden Blvd
## 2166         02/01/1989                              1555 Rockaway Parkway
## 2167         02/26/1992                             391 North Country Road
## 2168         09/05/2014                         150 Broad Street - Suite I
## 2169         12/13/2016                                 46 Easterly Street
## 2170         10/17/1988                                  68 Hauppauge Road
## 2171         02/03/2003                 Village Plaza, 35 Lower Hudson Ave
## 2172         10/04/1990                              264 West 118th Street
## 2173         04/03/2013                                 825 E 233rd Street
## 2174         03/16/2001                             13 North Fulton Street
## 2175         04/27/1998                              4303-4305 13th Avenue
## 2176         04/09/2008                                 2 FonClair Terrace
## 2177         10/29/2008                                    59 River Street
## 2178         07/21/2015                                   284 Pulaski Road
## 2179         08/17/2018                                    1180 Tinton Ave
## 2180         01/04/2016               995 Senator Keating Blvd, Building E
## 2181         01/01/1901                             7329 Seneca Road North
## 2182         11/13/2003                                   329 Hewes Street
## 2183         07/08/1985                                 271-11 76th Avenue
## 2184         11/28/2017                                  485 Throop Avenue
## 2185         01/01/1901                        8290 State Rt 69 (PO Box S)
## 2186         08/20/2008                                    4422 9th Avenue
## 2187         12/27/2018                            97-04 Sutphin Boulevard
## 2188         06/23/2005                                     849 2nd Avenue
## 2189         06/28/1996                            276-280 Robinson Street
## 2190         09/11/1985                                      89 Genesee St
## 2191         08/01/1980                                    525 Beahan Road
## 2192         02/06/2017                             39-47 North Plank Road
## 2193         08/05/2016                                  211 Throop Avenue
## 2194         12/02/1997                                 2212 Penfield Road
## 2195         07/23/2001                          2337 South Clinton Avenue
## 2196         09/01/1982                                      23 Kiernan Rd
## 2197         03/12/1999                        400 Westage Business Center
## 2198         05/25/2017                 26908 Independence Way - Suite 202
## 2199         01/01/1901                                  56-45 Main Street
## 2200         02/01/1979                                 140 Burwell Street
## 2201         02/24/1997                                  2230 Fifth Avenue
## 2202         04/21/2015                           2279 Coney Island Avenue
## 2203         08/17/1983                                          1 Main St
## 2204         09/01/1981                                  6356 NYS Route 30
## 2205         05/23/2014                              2905 West 19th Street
## 2206         06/18/2007                              16 West Bridge Street
## 2207         05/28/1999                               225 East 53rd Street
## 2208         10/31/1999                           1284-1292 Central Aveune
## 2209         01/01/1901                              103 East 125th Street
## 2210         05/07/2014                     1320 Stony Brook Road, Suite E
## 2211         01/01/2016                                   164 Broad Street
## 2212         07/31/1995                 2060 Fairport-Nine Mile Point Road
## 2213         06/17/2014                                266 Vineyard Avenue
## 2214         08/04/1988                                358 Tom Miller Road
## 2215         07/01/2006                                  147 Scranton Road
## 2216         04/28/2005                             350 East Second Street
## 2217         02/15/2018                                     6 Stoll Street
## 2218         02/01/1997                                 2888 Oneida Street
## 2219         10/15/2007                                 676 Clinton Avenue
## 2220         04/10/1991                                      3 Park Avenue
## 2221         02/01/1989                                     9876 Luckey Dr
## 2222         08/16/2013                                 650 Ashford Street
## 2223         06/19/1995                                  50 E North Street
## 2224         02/01/1989                                   260 Vineyard Ave
## 2225         01/01/1901                                       NY Route 217
## 2226         04/04/2016                                  201 Kings Highway
## 2227         01/01/1991                  2233 State Route 86, P.O. Box 471
## 2228         01/01/1901                                    1160 Teller Ave
## 2229         10/29/1998                            930 East Tremont Avenue
## 2230         09/27/1979                              212 East 106th Street
## 2231         09/27/2005                                 480 Alabama Avenue
## 2232         01/01/1901                                     100 Woods Road
## 2233         11/18/1987                                  374 Violet Avenue
## 2234         03/27/1997                              5 Grace Church Street
## 2235         09/13/2017                                 1233 Second Avenue
## 2236         04/06/2004                                   196 Merrick Road
## 2237         04/21/1997                                   512 126th Street
## 2238         07/10/2007                                   219 Front Street
## 2239         12/28/2012                                   3 Mercycare Lane
## 2240         07/01/2005                            120-46 Queens Boulevard
## 2241         02/01/1989                                   1045 West Street
## 2242         04/11/1988                               160 East Main Street
## 2243         09/16/2008                               470 East Fordam Road
## 2244         05/12/2003                                1134 State Route 29
## 2245         10/06/2014                         64 Pomeroy Street, Suite B
## 2246         09/27/1979                                145 Huguenot Street
## 2247         01/01/1901                                    1600 7th Avenue
## 2248         10/24/2006                                100 College Parkway
## 2249         08/01/1980                                       257 State St
## 2250         02/01/1980                                 78-10 164th Street
## 2251         01/01/1991                             22 Robert R. Kasin Way
## 2252         01/01/1991                           2323-27 Eastchester Road
## 2253         04/11/2017                                  64 County Road 39
## 2254         08/31/2002                                75 Crystal Run Road
## 2255         10/11/2000                                  2171 Nostrand Ave
## 2256         07/01/1992                                   75 Morris Street
## 2257         06/27/1989                                  1901 Utica Avenue
## 2258         06/24/1998                                   111 Water Street
## 2259         09/17/2013                                      1300 Avenue P
## 2260         06/26/1980                            14-32 West 118th Street
## 2261         02/26/2007                               468 Lafayette Avenue
## 2262         02/27/2007                                    198 Main Street
## 2263         06/17/2013                                  82 Holland Street
## 2264         04/25/2006                             100 Appenheimer Street
## 2265         11/09/2018                                 1233 Second Avenue
## 2266         03/11/2004                                      60 Maple Road
## 2267         02/01/1989                                  15 St Pauls Place
## 2268         12/27/2013                                 155 Bellwood Drive
## 2269         05/09/2006                               1083 Mcdonald Avenue
## 2270         04/03/1997                                3314 Steuben Avenue
## 2271         08/27/2007                                   21 Laurel Avenue
## 2272         07/19/2018                              741 East 233rd Street
## 2273         09/09/1997                                 271-11 76th Avenue
## 2274         07/06/2001                                      37 Albany Ave
## 2275         08/24/1998                              965 Duthcess Turnpike
## 2276         03/13/2012                               159-163 Front Street
## 2277         01/01/1988                                     211 East 79 St
## 2278         06/19/2012                                 144-45 87th Avenue
## 2279         07/12/2006                             3525 Baychester Avenue
## 2280         07/14/2016                      2975 Tibbett Avenue, Room 123
## 2281         01/01/2004                              59-61 Atlantic Avenue
## 2282         12/13/1991                               117 West Main Street
## 2283         01/31/1995                                     21 Ford Avenue
## 2284         05/31/2000                                     2781 Third Ave
## 2285         10/26/1983                               1650 Champlin Avenue
## 2286         01/01/1901                          260 North Little Tor Road
## 2287         12/11/2019                        123 Everett Road, Suite 200
## 2288         09/30/2008                              329 White Plains Road
## 2289         03/19/2014                                3050 Corlear Avenue
## 2290         10/01/2017                                51 West 51st Street
## 2291         02/01/1989                                154 Prospect Avenue
## 2292         03/09/1994                                  883 E Main Street
## 2293         04/22/2016                               356 West 18th Street
## 2294         08/01/2018                                    850 Kent Avenue
## 2295         01/25/2011                                    515 Main Street
## 2296         05/05/2015                                72-06 Northern Blvd
## 2297         04/01/1984                               1031 Michigan Avenue
## 2298         02/01/1989                                  40 Heyward Street
## 2299         02/11/1991                                 6934 Williams Road
## 2300         08/16/2007                               1780 Grand Concourse
## 2301         03/14/2014                             330 Meeting House Lane
## 2302         01/29/1991                     2817 Albany Post Road, Box 158
## 2303         08/22/2006                            1333 Morningside Avenue
## 2304         08/11/1998                                833 Roebling Street
## 2305         02/22/1988                     Bldg K 2201 Hempstead Turnpike
## 2306         02/13/2018                                     1500 Route 112
## 2307         01/15/2002                                      1250 Broadway
## 2308         05/15/2007                                      5500 Broadway
## 2309         03/11/2002                                  489 Hertel Avenue
## 2310         04/25/2000                                       170 Maple Rd
## 2311         11/08/2011                                 300 Niagara Street
## 2312         09/19/2005                               1405 Sycamore Street
## 2313         05/28/1993                               210 John Glenn Drive
## 2314         01/21/1995                              279 East Third Street
## 2315         06/21/2005                                 450 Lakeville Road
## 2316         08/01/1979                                1919 Elmwood Avenue
## 2317         02/20/2013                                      267 Hill Road
## 2318         09/25/2015                                      855 Route 146
## 2319         05/19/1994                                   101 Ridge Street
## 2320         01/01/1901                          3019 County Complex Drive
## 2321         01/01/1901                                     323 Kings Road
## 2322         01/01/1901                                      75 Beekman St
## 2323         01/10/1989                                  12 Tibbits Avenue
## 2324         09/27/1979                        314 South Manning Boulevard
## 2325         03/11/1996                                  19 Rockwell Place
## 2326         12/12/2007                                400 Sheridan Avenue
## 2327         03/13/1986                              175-37 Liberty Avenue
## 2328         02/01/1989                                   1550 Empire Blvd
## 2329         08/20/2004                                 21 Railroad Avenue
## 2330         02/19/2010                           3 Dag Hammarskjold Plaza
## 2331         01/08/2007                                 11 Crum Elbow Road
## 2332         06/20/2011                         55-69 West Burnside Avenue
## 2333         12/12/2017                                 1991 Marcus Avenue
## 2334         09/01/1981                                975 Westchester Ave
## 2335         08/01/1980                                   950 Floyd Avenue
## 2336         11/22/2011                    176 Washington Avenue Extension
## 2337         02/01/1989                             395 Sunken Meadow Road
## 2338         10/04/2013                             95-25 Queens Boulevard
## 2339         09/27/1979                       132 Water Street, PO Box 217
## 2340         01/01/1901                                    515 Main Street
## 2341         01/01/1901                                 2999 Schurz Avenue
## 2342         10/01/1983                            29-38 Far Rockaway Blvd
## 2343         01/01/1901                              77 West Barney Street
## 2344         12/10/2009                                 17 Old Main Street
## 2345         08/01/2007                                    438 Main Street
## 2346         03/07/2016                                 800 Emerson Street
## 2347         01/28/2013                               74 North Main Street
## 2348         02/01/1989                            42158 State Highway #28
## 2349         01/01/1901                              418 North Main Street
## 2350         08/09/2005                             5467 Upper Mountain Rd
## 2351         11/25/1991                                   256 Mason Avenue
## 2352         04/22/1997                               25 East 183rd Street
## 2353         01/01/1901                                900 Franklin Avenue
## 2354         08/17/1995                                177 W Fourth Street
## 2355         08/12/2013                                6 Medical Park Blvd
## 2356         10/22/2012                                    160 Harris Road
## 2357         06/10/2010                                       551 Route 22
## 2358         11/03/2016                                147-201 Lake Street
## 2359         01/01/1901                               1415 Portland Avenue
## 2360         12/31/2014                                        343 4th Ave
## 2361         11/01/2005                                   2500 Main Street
## 2362         08/01/1979                             620 Sleepy Hollow Road
## 2363         10/21/2010                                  15 Raymond Street
## 2364         08/27/1991                                      20 Elm Street
## 2365         02/01/1993                                   2000 Empire Blvd
## 2366         01/20/2006                          560-564 Bay Ridge Parkway
## 2367         07/22/2002                             101 South Bergen Place
## 2368         07/30/2013                            122-140 Bushwick Avenue
## 2369         03/23/1990                            7785 North State Street
## 2370         08/01/1979                                 375 Seguine Avenue
## 2371         09/18/2003                                    36 Pearl Street
## 2372         07/07/1987                                  48 Erie Boulevard
## 2373         08/17/2000                               46 Mt Ebo Road North
## 2374         01/01/1901                                 400 Lake Ave Box E
## 2375         03/02/2009                                1218 Prospect Place
## 2376         08/22/1995                              Route 20a Main Street
## 2377         03/15/2005                                     20 Hagen Drive
## 2378         11/14/2013                               1500 Portland Avenue
## 2379         01/01/1901                                    201 Manor Place
## 2380         03/29/2010                                      6620 Fly Road
## 2381         02/01/1989                                101 Creekside Drive
## 2382         09/14/2005                                 30 Harrison Street
## 2383         02/01/1979                                303 East River Road
## 2384         06/06/2001                                   1312 38th Street
## 2385         05/18/1993                    3703 10th Ave at Dyckman Street
## 2386         06/06/2018                                   599 Ralph Avenue
## 2387         01/01/1901                                    830 Park Avenue
## 2388         05/07/2003                                  980 Westfall Road
## 2389         03/02/2010                                42 West Main Street
## 2390         06/26/1985                           990 Seventh North Street
## 2391         10/01/2007                      259 Bristol Street, 3rd Floor
## 2392         09/27/1979                              349 East 149th Street
## 2393         02/20/2009                                 460 Brielle Avenue
## 2394         01/01/1901                                   1230 York Avenue
## 2395         01/01/1998                               160 East 32nd Street
## 2396         07/26/1999                                  201 East State St
## 2397         07/30/1999                               155 West Dominick St
## 2398         05/26/2011                                 5320 Military Road
## 2399         09/27/1979                        819-829 South Salina Street
## 2400         04/23/2013                                      Utopia Center
## 2401         01/01/1991                                  1410 Seagirt Blvd
## 2402         09/27/1979                                    27 North Street
## 2403         08/13/2012                                 1160 Teller Avenue
## 2404         04/01/1998                                315 Carolina Street
## 2405         10/11/1988                                   100 Sunset Drive
## 2406         09/13/2007                                 423 N. Main Street
## 2407         09/03/2004                                 132 Rectory Street
## 2408         09/27/1979                              250 Tuytenbridge Road
## 2409         11/29/1996                            91 East Mosholu Parkway
## 2410         08/04/2017                               347 West 37th Street
## 2411         02/08/2007                                500 Red Creek Drive
## 2412         01/01/1901                                    110-30 221st St
## 2413         09/27/1979                           29 North Hamilton Street
## 2414         01/01/1901                                          Route 100
## 2415         04/27/2006                                     10 Hagen Drive
## 2416         12/07/2012                                     38 Main Street
## 2417         01/01/1901                                    2209 Genesee St
## 2418         12/15/1994                                3961 Hillman Avenue
## 2419         11/19/2002                                  3071 Perry Avenue
## 2420         05/20/2009                               1656 Champlin Avenue
## 2421         08/05/2016                                    46 McKeever Pl.
## 2422         08/14/2006                                 625 Elmwood Avenue
## 2423         09/22/2006                           317 S. Manning Boulevard
## 2424         02/23/2000                         3509 Thomas Drive, Suite 4
## 2425         06/03/1996                                38-A Classic Street
## 2426         10/20/2018                            90-37 Parsons Boulevard
## 2427         02/01/1979                              1280 Albany Post Road
## 2428         02/01/1989                                    292 Main Street
## 2429         01/01/1901                  89th Avenue & Van Wyck Expressway
## 2430         10/11/2016                                     1445 The Plaza
## 2431         09/25/2019                                   1619 Boston Road
## 2432         08/28/2001                                     5 Johnson Road
## 2433         09/27/1979                              114 University Avenue
## 2434         10/03/1986                                 1398 Gotham Street
## 2435         01/01/1901                           2865 Brighton 3rd Street
## 2436         01/21/1998                           225 West Montauk Highway
## 2437         01/01/1901                                1400 Pelham Parkway
## 2438         04/24/2009                                   327 Front Street
## 2439         02/01/1989                                 193 Clinton Avenue
## 2440         07/31/2013                              2010 Empire Boulevard
## 2441         01/02/2001                                   710 Parkside Ave
## 2442         09/27/1979                                       Nicolls Road
## 2443         02/01/1980                             142-27 Franklin Avenue
## 2444         09/20/2013                                   7150 Main Street
## 2445         01/01/1901                                   22 Chapel Street
## 2446         09/27/1979                                      1062 Route 38
## 2447         01/01/1901                         555 St. Joseph's Boulevard
## 2448         04/27/2009                                    7 Bridge Street
## 2449         01/01/1901                                1555 Long Pond Road
## 2450         10/05/2018                                  2000 Ocean Avenue
## 2451         09/27/1979                                     20 Park Street
## 2452         02/19/1998                             80-46 Kew Gardens Road
## 2453         06/16/2011                                735 Montauk Highway
## 2454         09/28/1989                                 10 Arrowwood Drive
## 2455         08/11/2015                                2231 Burdett Avenue
## 2456         06/05/2009                                 1610 DeKalb Avenue
## 2457         10/19/1999                                945 Sweet Home Road
## 2458         08/01/1991                                   55 Mohawk Street
## 2459         01/01/1901                               103 West Main Street
## 2460         03/02/2012                                1729 Burrstone Road
## 2461         09/01/2015                                 1903 Sunset Avenue
## 2462         09/22/1997                                  20 South Broadway
## 2463         09/27/1979                                   10 Dewitt Street
## 2464         05/05/2014                               1139 Hylan Boulevard
## 2465         12/14/2010                         1 Paradies Lane, Suite 200
## 2466         01/01/1901                                  4422 Third Avenue
## 2467         06/28/1982                            1516 Oriental Boulevard
## 2468         12/11/2015                           140 Canal View Boulevard
## 2469         09/27/2019                             501 North Ocean Avenue
## 2470         11/01/2001                               20 East First Street
## 2471         02/11/2008                                 575 Clayton Street
## 2472         01/01/1901                            121 Ave of The Americas
## 2473         04/15/1999                                       1444 E 99 St
## 2474         12/16/1992                        1118 Charles St PO Box 1554
## 2475         04/12/2007                                       2388 Route 9
## 2476         10/01/2007                                      Tamarack Road
## 2477         01/01/1901                                80 East Main Street
## 2478         08/17/1983                                  1249 Fifth Avenue
## 2479         12/06/2006                         380 2nd Avenue, Suite 1000
## 2480         11/08/2007                                762 Harrison Avenue
## 2481         03/27/2019                                5801 East Taft Road
## 2482         09/27/1989                               525 East 71st Street
## 2483         03/08/2007                              116 North Jensen Road
## 2484         03/26/1999                                      300 Grant Ave
## 2485         01/01/1901                                   2401 Laconia Ave
## 2486         02/01/1979                                 1019 Wicker Street
## 2487         07/25/2011                             585 Schenectady Avenue
## 2488         02/01/1989                                 323 Genesee Street
## 2489         07/27/1987                                         31 Main St
## 2490         06/01/1992                                   88 Calvary Drive
## 2491         09/08/1997                                  100 Kings Highway
## 2492         07/06/2011                                    8721 5th Avenue
## 2493         01/01/1901                            6511 Springbrook Avenue
## 2494         02/01/1989                                    1657 Sunset Ave
## 2495         06/10/2013                                   73 Market Street
## 2496         08/30/1996                                 450 Seaview Avenue
## 2497         10/03/2005                          5000 Brittonfield Parkway
## 2498         09/27/1979                                2465 Bonadent Drive
## 2499         10/13/2005                                  50 Millard Street
## 2500         12/31/1984                                     4800 Bear Road
## 2501         10/01/2001                               8411 Seneca Turnpike
## 2502         06/13/2019                               107 Institute Street
## 2503         08/26/2008                                     560 Union Blvd
## 2504         03/31/2011                                   110 Decker Drive
## 2505         02/23/2000                                4400 Lakeville Road
## 2506         02/06/1992                                   600 Fitch Street
## 2507         03/19/1999                           3060 East Tremont Avenue
## 2508         12/26/1995                         2230 North Triphammer Road
## 2509         05/20/1982                                147-201 Lake Street
## 2510         01/01/1901                                 2525 Kings Highway
## 2511         09/27/1979                             110-112 Central Avenue
## 2512         11/23/2015                                2225 Webster Avenue
## 2513         04/30/1987                               103 West Main Street
## 2514         06/27/2016                            1000 Technology Parkway
## 2515         07/01/2009                                   8302 Provo Drive
## 2516         07/19/1979                              119 West 124th Street
## 2517         03/09/2004                             230 Beach 102nd Street
## 2518         11/10/1997                                1873 Western Avenue
## 2519         12/17/1987                     1065 Senator Keating Boulevard
## 2520         01/21/1980                        Health Sciences Center SUNY
## 2521         01/01/2006                                      63 Downing St
## 2522         10/19/1992                                300 Broadway Avenue
## 2523         05/04/1998                                 9701 Church Avenue
## 2524         09/26/2001                        200 Westage Business Center
## 2525         01/01/1901                              670 Stoneleigh Avenue
## 2526         02/01/2012                                           PO Box F
## 2527         04/23/1997                                100 Community Drive
## 2528         12/31/1993                                    313 43rd Street
## 2529         11/07/1996                                     4005 West Road
## 2530         09/04/2007                              899 State Highway 11c
## 2531         12/02/1997                                 67 Springvale Road
## 2532         11/28/1994                              160 West 100th Street
## 2533         12/18/1995                           2300 Buffalo Rd Bldg 600
## 2534         05/02/2006                                     3360 Route 343
## 2535         03/27/2017                                  34 Benwood Avenue
## 2536         09/27/1979                                     9 Miner Street
## 2537         08/01/2005                             1461 Kensington Avenue
## 2538         02/02/2001                            15 Mount Ebo South Road
## 2539         01/01/1901                                  2265 Third Avenue
## 2540         07/01/2018                               111 East 33rd Street
## 2541         01/10/2019                               156-10 Baisley Blvd.
## 2542         08/01/1979                                 35-15 Parsons Blvd
## 2543         02/04/2010                                   29 Church Street
## 2544         07/22/2003                         6518 Fort Hamilton Parkway
## 2545         05/29/2009                                    19 Eaton Avenue
## 2546         06/01/2015                           1570-1576 Long Pond Road
## 2547         09/27/1979                               1225-1257 Gerard Ave
## 2548         02/20/1984                               254 Alexander Street
## 2549         03/11/1999                              15 Canandaigua Street
## 2550         01/01/1901                               374 Stockholm Street
## 2551         02/01/1989                              421 W Columbia Street
## 2552         08/03/1998                             1810 Riverfront Center
## 2553         09/27/1984                                 115 South Broadway
## 2554         09/27/1979                                 380 Washington Ave
## 2555         09/18/1992                                4671 Onondaga Blvd.
## 2556         01/31/1994                             1335 Washington Street
## 2557         03/16/2000                                 82-12 151st Avenue
## 2558         02/11/2002                         103 White Spruce Boulevard
## 2559         01/08/2013                               233 Lafayette Street
## 2560         02/03/2004                                  21 Roberts Avenue
## 2561         02/01/1989                                 515 Audubon Avenue
## 2562         06/30/1995                                  2277 Grand Avenue
## 2563         08/20/2019                                1815 Madison Avenue
## 2564         08/18/2003                                    6 Hampden Place
## 2565         08/01/1979                                     2210 Troy Road
## 2566         10/12/2017                                    730 64th Street
## 2567         01/01/1999                       433 River Street  Suite 3000
## 2568         10/22/2018                                   6010 Bay Parkway
## 2569         01/11/2013                              529 Beach 20th Street
## 2570         12/19/2003                                    33 Grand Street
## 2571         08/19/1996                               1095 Flatbush Avenue
## 2572         10/15/1979                                    1540 Maple Road
## 2573         09/08/2017                       2142 Glenwood Shopping Plaza
## 2574         02/01/1989                         539 Route 22, P.O. Box 360
## 2575         01/01/1901                                 505 Mt Hope Avenue
## 2576         01/01/1901                              15 Spring Valley Road
## 2577         08/05/2011                                   200 Front Street
## 2578         08/01/1980                                330 Chestnut Street
## 2579         07/19/1979                                  937 Fulton Street
## 2580         01/01/1901                                   621 Tenth Street
## 2581         04/27/2007                              18730 Hillside Avenue
## 2582         11/27/2019                                148-168 39th Street
## 2583         01/01/1901                                 1503 Military Road
## 2584         12/13/2013                                  950 Norton Street
## 2585         02/05/1992                               345 East 24th Street
## 2586         10/08/2009                                  13180 US Route 11
## 2587         04/09/2012                                 125 Lattimore Road
## 2588         01/01/1901                              785 Mamaroneck Avenue
## 2589         10/16/1996                          1401 Massachusetts Avenue
## 2590         01/01/2004                                  1067 Ogden Avenue
## 2591         09/28/2006                                 1617 Poplar Street
## 2592         06/23/2003                                20 East Main Street
## 2593         02/19/2009                                1415 Buffalo Street
## 2594         07/01/1992                                   725 Brady Avenue
## 2595         10/25/2007                                2150 Bleeker Street
## 2596         12/08/1999                                   221 Broad Street
## 2597         10/30/2014                               29 S Highland Avenue
## 2598         12/11/2013                               800 Castleton Avenue
## 2599         03/11/1980                                 825 Old Country Rd
## 2600         11/01/2001                                70 Ashburton Avenue
## 2601         12/01/2017                             1012 East Gunhill Road
## 2602         07/01/2014                                  1 Columbia Street
## 2603         05/06/2013                                      325 Route 100
## 2604         07/01/2006                              1622-24 Bruckner Blvd
## 2605         03/08/2001                                   3757 Carman Road
## 2606         02/01/1989                                       3 Upton Park
## 2607         01/01/1901                             600 Northern Boulevard
## 2608         04/10/1996                           20 West Fairmount Avenue
## 2609         06/03/2002                           782 East Broadway Street
## 2610         06/20/2011                                   201 South Avenue
## 2611         08/01/2005                              155 White Plains Road
## 2612         01/01/1989                                50 Sheffield Avenue
## 2613         10/05/1993                              105 West 188th Street
## 2614         02/20/2006                                  33 Medford Avenue
## 2615         08/01/1979                          1000 North Village Avenue
## 2616         04/12/2016                           55 Central Plaza Suite B
## 2617         03/01/1989                                 91-31 175th Street
## 2618         03/30/2012                                 4 Technology Drive
## 2619         01/07/1992                             1225 West State Street
## 2620         12/11/1985                              1146 Woodcrest Avenue
## 2621         03/12/2012                         434 South Kingsboro Avenue
## 2622         09/26/2014                               150 Amsterdam Avenue
## 2623         12/20/2004                                    625 Scio Street
## 2624         09/27/1979                                    31 Woodlawn Ave
## 2625         11/20/2003                                  880 Bergen Street
## 2626         01/01/1901                                  182 Highland Road
## 2627         01/01/1901                                    2102 Latta Road
## 2628         02/01/1980                                 8 Bushey Boulevard
## 2629         03/15/1979                                 2316 Bruner Avenue
## 2630         07/01/2019                               3080 Atlantic Avenue
## 2631         05/03/2019                                    155 Lawn Avenue
## 2632         01/02/1996                             700 South Perry Street
## 2633         10/29/1982                             34-11 Vernon Boulevard
## 2634         09/27/1979                               201 W Madison Avenue
## 2635         07/01/2004                                    525 Hooper Road
## 2636         03/21/2012                             960 Southern Boulevard
## 2637         05/23/2002                          2180 South Clinton Avenue
## 2638         02/01/1979                              33-57 Harrison Street
## 2639         07/01/1999                                      2 Fall Street
## 2640         06/17/2002                              728 North Main Street
## 2641         10/21/2010                                    620 Main Street
## 2642         02/01/1989                                  3400 Cannon Place
## 2643         09/27/1999                                   1129 Commons Ave
## 2644         01/13/2016                              454 East Broad Street
## 2645         10/26/2014                              513 West Union Street
## 2646         07/01/1996                         14080 West Ave, PO Box 489
## 2647         02/24/2003                             1571 Washington Street
## 2648         07/01/1992                                 71 Sullivan Street
## 2649         02/01/1979                                    101 Louden Ave.
## 2650         01/01/1997                                     7 Coates Drive
## 2651         05/22/2019                                    5718 2nd Avenue
## 2652         01/02/2007                                  250 Pettit Avenue
## 2653         04/22/2016                               212 Jericho Turnpike
## 2654         03/30/2012                                  601 Seneca Street
## 2655         11/06/2003                                  200 Motor Parkway
## 2656         02/01/1980                                      5606 15th Ave
## 2657         03/16/2001                                 144 Genesee Street
## 2658         09/01/2015                              6966 West Bergen Road
## 2659         10/10/1991                                    21 Hayes Street
## 2660         09/13/2006                                 3 Commercial Place
## 2661         11/21/1985                                159 Carleton Avenue
## 2662         01/01/1901                          1000 Pelham Parkway South
## 2663         04/04/2011                                   214 State Street
## 2664         09/13/2012                                 160 Sawgrass Drive
## 2665         10/19/2010                                 1999 Marcus Avenue
## 2666         12/12/1994                                   21-23 S Perry St
## 2667         07/01/2006                                   1100 Stewart Ave
## 2668         11/04/2011                            1290 Upper Front Street
## 2669         10/05/1995                                     3 Summit Court
## 2670         07/01/2006                            222-02 Hempstead Avenue
## 2671         03/15/2004                                  3875 Ninth Avenue
## 2672         03/03/2003                                  1601 Armory Drive
## 2673         05/04/2001                                   120 Plant Street
## 2674         10/04/2013                               81 South Main Street
## 2675         06/26/2015                            2200 Northern Boulevard
## 2676         01/01/1901                                   225 Maple Avenue
## 2677         10/25/2019                                    317 West Avenue
## 2678         05/09/1996                                 262 Conklin Avenue
## 2679         05/01/1986                                      Lawville Road
## 2680         08/30/2004                             135 North Union Street
## 2681         03/03/1988                                  108 Steele Avenue
## 2682         03/14/1988                                      25 Elm Street
## 2683         01/01/1901                                 115 South Broadway
## 2684         09/27/1979                               355 West Main Street
## 2685         08/05/2016                                      6214 4th Ave.
## 2686         01/01/1901                                   105 Marys Avenue
## 2687         01/01/1901                                 59-28 174th Street
## 2688         11/01/2007                  57 Willoughby Street, Lower Level
## 2689         04/01/1998                                  900 Hertel Avenue
## 2690         03/02/2012                              1516 Lexington Avenue
## 2691         02/01/1989                              1060 Amsterdam Avenue
## 2692         08/09/2007                                37 West 26th Street
## 2693         03/02/2015               2365 South Clinton Avenue, Suite 100
## 2694         03/31/2009                                11-40 Seneca Avenue
## 2695         08/04/2006                                 1212 Ocean Parkway
## 2696         02/01/1980                           801 Co-Op City Boulevard
## 2697         10/11/2013                                   739 NYS Route 28
## 2698         07/24/1981                                     39-15 Avenue V
## 2699         06/07/2006                                3448 State Route 31
## 2700         04/11/2014                                515 Bellport Avenue
## 2701         03/01/1988                                  17 Madison Street
## 2702         02/04/2013                            1411-1417 Myrtle Avenue
## 2703         09/01/2017                                       4264 E. Road
## 2704         10/05/2001                                2090 Albany Post Rd
## 2705         07/01/1992                         FDR Drive & E 116th Street
## 2706         09/29/1982                               290 Old Country Road
## 2707         09/19/2003                                   64 Second Avenue
## 2708         01/01/1901                               2 Glenmere Cove Road
## 2709         12/16/2019                    176 Washington Avenue Extension
## 2710         01/01/1901                                101 St Andrews Lane
## 2711         12/17/2010                                  53 Brentwood Road
## 2712         12/31/2002                            534 A West 135th Street
## 2713         09/15/1995                                     21 Jumel Place
## 2714         05/31/1989                                216 Fox Hollow Road
## 2715         11/30/2004                                   3761 Main Street
## 2716         09/07/2006                                 140 Burwell Street
## 2717         09/27/1979                                 360 Mamaroneck Ave
## 2718         01/01/1901                     4499 Manhattan College Parkway
## 2719         04/01/2013                               619 West 54th Street
## 2720         09/27/1979                                1000 Elmwood Avenue
## 2721         02/01/1979                                     6 Frowein Road
## 2722         07/24/1997                                        2 Empire Dr
## 2723         01/01/1901                                46 Brookmeade Drive
## 2724         09/27/1979                                   130-20 89th Road
## 2725         08/08/1993                                  110 School Street
## 2726         02/01/1989                                     26 Cass Street
## 2727         01/01/1901                                   1275 York Avenue
## 2728         08/12/2011                              897 State Highway 11C
## 2729         12/26/2019                          1820 East Tremont  Avenue
## 2730         06/16/2006                                      21 Fox Street
## 2731         07/25/2000                             101 Northern Boulevard
## 2732         05/16/2012                                   10 Medical Plaza
## 2733         09/27/1979                                 417 Liberty Street
## 2734         08/25/1980                                    33 West 42nd St
## 2735         05/10/2005                        601B West Washington Street
## 2736         07/01/2000                                  730 Bryant Avenue
## 2737         01/01/1901                                 600 Hempstead Tpke
## 2738         08/01/1979                                   7000 Collamer Rd
## 2739         06/17/2019                                  1769 Union Street
## 2740         06/20/1990                                       1673 Route 9
## 2741         09/27/1979                                      1603 Court St
## 2742         01/01/1901                                   2157 Main Street
## 2743         09/28/2015                                     93 Main Street
## 2744         01/01/2007                                  1130 South Avenue
## 2745         01/28/1997                          123-125 West 124th Street
## 2746         06/09/1992                                  1023 State Street
## 2747         05/18/2010                                  800 Second Avenue
## 2748         01/25/1983                                    514 49th Street
## 2749         08/22/2006                          68-80 Schermerhorn Street
## 2750         09/23/1998                                       1250 57th St
## 2751         03/19/2014                            7785 North State Street
## 2752         10/26/1999                                 415 South Broadway
## 2753         07/08/2002                            3020 Westchester Avenue
## 2754         01/01/1901                               310 East 14th Street
## 2755         02/01/1989                              222 West Pearl Street
## 2756         04/21/2014                                   750 Union Street
## 2757         02/09/2011                          5 Dakota Drive, Suite 200
## 2758         09/27/1979                                    555 S Warren Rd
## 2759         01/01/1991                              700 White Plains Road
## 2760         08/31/1987                                        NY State 12
## 2761         02/01/1989                                119-19 Graham Court
## 2762         08/01/1979                               111-26 Corona Avenue
## 2763         09/10/1994                               650 Airborne Parkway
## 2764         01/14/1999                              1740 Eastchester Road
## 2765         02/01/1980                          6131 Big Tree Road, Box F
## 2766         10/12/2016                      20-24 South Washington Street
## 2767         01/01/1901                                   2605 Harlem Road
## 2768         02/21/2019                                 3297 Bailey Avenue
## 2769         03/03/2003                               Rd#2 North Gage Road
## 2770         09/21/2011                                     25 Lake Street
## 2771         02/24/2020                                        1 Post Road
## 2772         11/25/1998                                651 W. 168th Street
## 2773         05/21/1999                              817 East 180th Street
## 2774         12/03/2003                         1500 William Floyd Parkway
## 2775         01/01/1996                               756 Pre-Emption Road
## 2776         09/27/1979                                 26 Bleecker Street
## 2777         08/26/1996                                 33-23 Union Street
##                          Facility.Address.2          Facility.City
## 1                                                           Vestal
## 2                                                     New Hartford
## 3                                                         Syracuse
## 4                                                           Warsaw
## 5                                                       Wellsville
## 6                                                    Williamsville
## 7                                                      Garden City
## 8                                                          Buffalo
## 9                                                      Farmingdale
## 10                                                        New York
## 11                                                     Garden City
## 12                                                          Oneida
## 13                                                        Brooklyn
## 14                                                        Endicott
## 15                                                      Lackawanna
## 16                                                        Southold
## 17                                                         Buffalo
## 18                                                        New York
## 19                                                        Cornwall
## 20                                                     Tupper Lake
## 21                                                            Rome
## 22                                                           Olean
## 23                                                       Brockport
## 24                                                     Plattsburgh
## 25                                                        Brooklyn
## 26                                                         Yonkers
## 27                                                        New York
## 28                                                      East Islip
## 29                                                      East Hills
## 30                                                          Latham
## 31                                                          Albany
## 32                                                           Bronx
## 33                                                        Brooklyn
## 34                                                      Horseheads
## 35                                                           Bronx
## 36                                                            Rome
## 37                                                         Oneonta
## 38                                                      Middletown
## 39                                                    Poughkeepsie
## 40                                                           Bronx
## 41                                                        Brooklyn
## 42                                                   Niagara Falls
## 43                                                         Jamaica
## 44                                                          Corona
## 45                                                    White Plains
## 46                                                        Lowville
## 47                                                       Hempstead
## 48                                                            Troy
## 49                                                        Brooklyn
## 50                                                    White Plains
## 51                                                        Brooklyn
## 52                                                           Bronx
## 53                                                          Nanuet
## 54                                                        Brooklyn
## 55                                                   Staten Island
## 56                                                     West Seneca
## 57                                                     Canandaigua
## 58                                                           Bronx
## 59                                                           Bronx
## 60                                                   Williamsville
## 61                                                    Mount Morris
## 62                                                            Rome
## 63                                                      Briarcliff
## 64                                                        Brooklyn
## 65                                                       Bay Shore
## 66                                                        Lockport
## 67                                                          Newark
## 68                                                     Garden City
## 69                                                        New York
## 70                                                        Catskill
## 71                                                    Poughkeepsie
## 72                                                        Yorktown
## 73                                                          Fulton
## 74                                                        Houghton
## 75                                                        Valhalla
## 76                                                   Staten Island
## 77                                                         Buffalo
## 78                                                   Elizabethtown
## 79                                                       Hempstead
## 80                                                       Rochester
## 81                                                        Brooklyn
## 82                                                        Brooklyn
## 83                                                           Bronx
## 84                                                         Jamaica
## 85                                                       Rochester
## 86                                                           Bronx
## 87                                                        Kingston
## 88                                                  Port Jefferson
## 89                                                        Brooklyn
## 90                                                        New York
## 91                                                      Brookhaven
## 92                                                        Syracuse
## 93                                                       Heuvelton
## 94                                                        New City
## 95                                                           Bronx
## 96                                                     Fort Edward
## 97                                                         Potsdam
## 98                                                  Middle Village
## 99                                                           Utica
## 100                                                      Rochester
## 101                                                          Utica
## 102                                                       New York
## 103                                                       New York
## 104                                                  Spring Valley
## 105                                               Croton-On-Hudson
## 106                                                      Amsterdam
## 107                                                       Melville
## 108                                                          Bronx
## 109                                                       New York
## 110                                                       Valhalla
## 111                                                      Cazenovia
## 112                                                       Brooklyn
## 113                                                       New York
## 114                                                      Uniondale
## 115                                                   Mount Vernon
## 116                                                       Cornwall
## 117                                                       Penfield
## 118                                                         Harris
## 119                                                          Bronx
## 120                                                  East Setauket
## 121                                                       New York
## 122                                                   Fayetteville
## 123                                                         Latham
## 124                                                          Bronx
## 125                                                        Corning
## 126                                                       Brooklyn
## 127                                                           Bath
## 128                                                         Latham
## 129                                                  Montour Falls
## 130                                                       New York
## 131                                                  East Elmhurst
## 132                                                 Queens Village
## 133                                                         Albany
## 134                                                       Valhalla
## 135                                                    Glens Falls
## 136                                                         Mexico
## 137                                               Long Island City
## 138                                                      Smithtown
## 139                                                          Lyons
## 140                                                          Bronx
## 141                                                         Elmira
## 142                                                      Liverpool
## 143                                                         Albany
## 144                                                     Whitesboro
## 145                             P.O. Box 95             Livingston
## 146                                                        Corning
## 147                                                        Oneonta
## 148                                                      Rochester
## 149                                                      Rochester
## 150                                                          Utica
## 151                                                      Watertown
## 152                                                 Port Jefferson
## 153                                                       Syracuse
## 154                                                       New York
## 155                                                       New York
## 156                                                     Middletown
## 157                                                        Buffalo
## 158                                                          Bronx
## 159                                                       Brooklyn
## 160                                                          Bronx
## 161                                                  East Syracuse
## 162                                                      Rochester
## 163                                                           Troy
## 164                                                        Jamaica
## 165                                                        Batavia
## 166                                                         Latham
## 167                                                       Syracuse
## 168                                                         Ithaca
## 169                                                          Bronx
## 170                                                    Middleburgh
## 171                                                       New York
## 172                                                   Port Chester
## 173                                                       New York
## 174                                                       New York
## 175                                                       Syracuse
## 176                                                       New York
## 177                                                       New York
## 178                                                    Glens Falls
## 179                                                       Brooklyn
## 180                                                     Great Neck
## 181                                                      Northport
## 182                                                       Brooklyn
## 183                                                     Staatsburg
## 184                                                          Utica
## 185                                                      Getzville
## 186                                                       Brooklyn
## 187                                                       Brooklyn
## 188                                                           Bath
## 189                                                     Williamson
## 190                                                      Rochester
## 191                                                      Oceanside
## 192                                                          Bronx
## 193                                                        Hamburg
## 194                                                           Troy
## 195                                                      Glen Oaks
## 196                                                    Mount Kisco
## 197                                                 Alexandria Bay
## 198                                                        Clayton
## 199                                            Springfield Gardens
## 200                                                         Hudson
## 201                                                       Brooklyn
## 202                                                       Kingston
## 203                                                          Bronx
## 204                                               Saratoga Springs
## 205                                                     Wellsville
## 206                                                      Cazenovia
## 207                                                       Brooklyn
## 208                                                         Newark
## 209                                                          Bronx
## 210                                                        Jamaica
## 211                                                          Bronx
## 212                                                         Albany
## 213                                                        Buffalo
## 214                                                       New York
## 215                                                    Glens Falls
## 216                                                          Bronx
## 217                                                      New Paltz
## 218                                                       Syracuse
## 219                                                          Bronx
## 220                                                      Amsterdam
## 221                                                          Bronx
## 222                                                      Hauppauge
## 223                                                   Far Rockaway
## 224                                                       New York
## 225                                                       New York
## 226                                                  Niagara Falls
## 227                                                    Cheektowaga
## 228                                                        Mineola
## 229                                                Center Moriches
## 230                                                         Geneva
## 231                                                       New York
## 232                                               Wappingers Falls
## 233                                                        Syosset
## 234                                                       New York
## 235                                                   West Babylon
## 236                                                   Orchard Park
## 237                                                      Smithtown
## 238                                                   Gloversville
## 239                                                   Clifton Park
## 240                                                        Jamaica
## 241                                                         Albany
## 242                                                      Hempstead
## 243                                                       Brooklyn
## 244                                                  Staten Island
## 245                                                     Ogdensburg
## 246                                                        Dunkirk
## 247                                                    Schenectady
## 248                                                        Buffalo
## 249                                                        Jamaica
## 250                                                       New York
## 251                                                      Amsterdam
## 252                                                       Brooklyn
## 253                                                          Bronx
## 254                                                      New Paltz
## 255                                                      Patchogue
## 256                                                         Albion
## 257                                                       Brooklyn
## 258                                                         Albany
## 259                                                   Ballston Spa
## 260                                                          Bronx
## 261                                                     Binghamton
## 262                                                     Monticello
## 263                                                       Flushing
## 264                                                  Staten Island
## 265                                                    Guilderland
## 266                                                       Brooklyn
## 267                                                          Bronx
## 268                                                       New York
## 269                                                          Bronx
## 270                                                    Canandaigua
## 271                                               Rockville Centre
## 272                                                     Horseheads
## 273                                                      Hawthorne
## 274                                                      Rochester
## 275                                                    Dobbs Ferry
## 276                                                          Bronx
## 277                                                       Cortland
## 278                                                  Rockaway Park
## 279                                                        Massena
## 280                                                        Dunkirk
## 281                                                       New York
## 282                                                      Jamestown
## 283                                                          Bronx
## 284                                                         Oswego
## 285                                                       Herkimer
## 286                                                       Lockport
## 287                                                       Syracuse
## 288                                                      Watertown
## 289                                                         Cohoes
## 290                                                       New York
## 291                                                        Webster
## 292                                                       Kingston
## 293                                                  Niagara Falls
## 294                                                      Ridgewood
## 295                                                       Brooklyn
## 296                                                  Staten Island
## 297                                                         Oswego
## 298                                                         Oswego
## 299                                                      Jamestown
## 300                                                        Batavia
## 301                                                       Newburgh
## 302                                                          Ghent
## 303                                                      Glen Cove
## 304                                                     Binghamton
## 305                                                   New Hartford
## 306                                                       Brooklyn
## 307                                                       Flushing
## 308                                                      Uniondale
## 309                                                        Yonkers
## 310                                                       Kingston
## 311                                                       Brooklyn
## 312                                                         Latham
## 313                                                  Williamsville
## 314                                                          Olean
## 315                                                  East Setauket
## 316                                                        Jamaica
## 317                                                       New York
## 318                                                     Queensbury
## 319                                                         Argyle
## 320                                                    Lindenhurst
## 321                                                    New Windsor
## 322                                                    Springville
## 323                                                       New York
## 324                                                        Corning
## 325                                                      Rochester
## 326                                                        Buffalo
## 327                                                      Brentwood
## 328                                                       Brooklyn
## 329                                                      Brockport
## 330                                                      Tonawanda
## 331                                                        Mineola
## 332                                                       Elmhurst
## 333                                                       Syracuse
## 334                                                    Canandaigua
## 335                                                       Brooklyn
## 336                                                     Rensselaer
## 337                                                       Brooklyn
## 338                                                          Utica
## 339                                                      Rochester
## 340                                                          Clyde
## 341                                                      Watertown
## 342                                                       Brooklyn
## 343                                                         Albany
## 344                                                     Amityville
## 345                                                        Jamaica
## 346                                                       Woodbury
## 347                                                         Oswego
## 348                                                        Bayside
## 349                                                   Far Rockaway
## 350                                                       New York
## 351                                                  Staten Island
## 352                                                       Brooklyn
## 353                                                          Bronx
## 354                                                         Albion
## 355                                                    Warrensburg
## 356                                                         Amenia
## 357                                                        Massena
## 358                                                          Bronx
## 359                                                        Hornell
## 360                                                          Bronx
## 361                                                     Binghamton
## 362                                                          Utica
## 363                                                       New York
## 364                                                 Highland Falls
## 365                                                       New York
## 366                                                     Middletown
## 367                                                        Jamaica
## 368                                                  Fresh Meadows
## 369                                                      Cassadaga
## 370                                                        Bayside
## 371                                                  Schuylerville
## 372                                                       Brooklyn
## 373                                                       Flushing
## 374                                                         Hollis
## 375                                                     Queensbury
## 376                                                   Little Falls
## 377                                                       New York
## 378                                                      New Paltz
## 379                                                      Rochester
## 380                                                    Lake Placid
## 381                                                      Rochester
## 382                                                         Albany
## 383                                                          Bronx
## 384                                                  Rockaway Park
## 385                                                       New York
## 386                                                       New York
## 387                                                          Bronx
## 388                                                   Ballston Spa
## 389                                                       Brooklyn
## 390                                                   Forest Hills
## 391                                                    East Meadow
## 392                                                        Batavia
## 393                                                 Bolton Landing
## 394                                                           Troy
## 395                                                       New York
## 396                                                       New City
## 397                                                       New York
## 398                                                         Latham
## 399                                                     West Nyack
## 400                                                 Alexandria Bay
## 401                                                       New York
## 402                                               Yorktown Heights
## 403                                                   Lake Success
## 404                                                          Depew
## 405                                                       Fishkill
## 406                                                           Avon
## 407                                                          Bronx
## 408                                                    Cincinnatus
## 409                                                       Cortland
## 410                                                      Amsterdam
## 411                                                 North Syracuse
## 412                                                     Mamaroneck
## 413                                                        Buffalo
## 414                                                       New York
## 415                                                        Buffalo
## 416                                                        Mineola
## 417                                                      Rochester
## 418                                                       New York
## 419                                               Croton-on-Hudson
## 420                                                      Hauppauge
## 421                                                       Brooklyn
## 422                                                    Schenectady
## 423                                                         Newark
## 424                                                        Buffalo
## 425                                                  Staten Island
## 426                                                       Syracuse
## 427                                                       Brooklyn
## 428                                                       New York
## 429                                                       Brooklyn
## 430                                                       New York
## 431                                                       Brooklyn
## 432                                                      Rochester
## 433                                                  College Point
## 434                                                         Goshen
## 435                                                        Suffern
## 436                                                           Cuba
## 437                                                         Albion
## 438                                Suite 10                Oneonta
## 439                                                North Tonawanda
## 440                                                       Brooklyn
## 441                                                       Syracuse
## 442                                                Port Washington
## 443                                                        Warwick
## 444                                                        Kenmore
## 445                                                       Brooklyn
## 446                                                      Riverhead
## 447                                                       Brooklyn
## 448                                                  Fresh Meadows
## 449                                                       Brooklyn
## 450                                                    Southampton
## 451                                                      Brentwood
## 452                                                       Brooklyn
## 453                                                           Troy
## 454                                                          Bronx
## 455                                                      Rochester
## 456                                                       Westbury
## 457                                                          Bronx
## 458                                                          Bronx
## 459                                                    Island Park
## 460                                                   White Plains
## 461                                                       Flushing
## 462                                                    Canandaigua
## 463                                                   White Plains
## 464                                                    Guilderland
## 465                                                           Rome
## 466                                                   LaFargeville
## 467                                                      Niskayuna
## 468                                                   White Plains
## 469                                         Port Jefferson Station
## 470                                                       New York
## 471                                                  Newark Valley
## 472                                                        Buffalo
## 473                                                          Bronx
## 474                                                         Le Ray
## 475                                                       New York
## 476                                                     Great Neck
## 477                                                       Brooklyn
## 478                                                      Star Lake
## 479                                                 Fort Covington
## 480                                                      Rochester
## 481                                                        Jamaica
## 482                                                          Bronx
## 483                                                   Johnson City
## 484                                                         Goshen
## 485                                                   Clifton Park
## 486                                                      Rochester
## 487                                                        Jamaica
## 488                                                       Brooklyn
## 489                                                       New York
## 490                                                      Liverpool
## 491                                                 Port Jefferson
## 492                                                  Spring Valley
## 493                                                    Plattsburgh
## 494                                                     Wellsville
## 495                                                      Schoharie
## 496                                                       New York
## 497                                                       Brooklyn
## 498                                                  New Hyde Park
## 499                                                          Bronx
## 500                                                          Bronx
## 501                                                      Glen Cove
## 502                                                         Latham
## 503                                                       Brooklyn
## 504                                                      Rochester
## 505                                                       New York
## 506                                                        Pulaski
## 507                                                          Bronx
## 508                                                  Staten Island
## 509                                                        Moravia
## 510                                                         Albany
## 511                                                        Yonkers
## 512                                                       Brooklyn
## 513                                                       Brooklyn
## 514                                                        Amherst
## 515                                                  Niagara Falls
## 516                                               Long Island City
## 517                                                          Bronx
## 518                                                         Albany
## 519                                                       Kingston
## 520                                                          Bronx
## 521                                                  Staten Island
## 522                                                       Brooklyn
## 523                                                       New York
## 524                                                       New York
## 525                                                      Rochester
## 526                                                   Mount Vernon
## 527                                                     Monticello
## 528                                                    Schenectady
## 529                                                       New York
## 530                                                  Richmond Hill
## 531                                                      Patchogue
## 532                                                       New York
## 533                                                        Oakdale
## 534                                               Saratoga Springs
## 535                                                     Watervliet
## 536                                                      Watertown
## 537                                                        Buffalo
## 538                                                      Cambridge
## 539                                               Saratoga Springs
## 540                                              Westhampton Beach
## 541                                                   Lake Success
## 542                                                       Brewster
## 543                                                         Albany
## 544                                                       New York
## 545                                                       Mayfield
## 546                                                North Tonawanda
## 547                                                       New York
## 548                                                       Brooklyn
## 549                                                          Bronx
## 550                                                      Rushville
## 551                                                       Brooklyn
## 552                                                       Cornwall
## 553                                                          Bronx
## 554                                                      Riverhead
## 555                                                         Beacon
## 556                                                          Bronx
## 557                                                         Vestal
## 558                                                      Rhinebeck
## 559                                                  Fresh Meadows
## 560                                                       Brooklyn
## 561                                                        Jamaica
## 562                                                   Poughkeepsie
## 563                                                        Buffalo
## 564                                                      Tarrytown
## 565                                                        Dunkirk
## 566                                                          Bronx
## 567                                                         Ithaca
## 568                                                      Manhasset
## 569                                                       New York
## 570                                                        Yonkers
## 571                                                          Bronx
## 572                                                       New York
## 573                                                       Brooklyn
## 574                                                       Penn Yan
## 575                                                      Glen Oaks
## 576                                                       Stamford
## 577                                                       Brooklyn
## 578                                                         Newark
## 579                                                    North Creek
## 580                                                       Brooklyn
## 581                                                         Pomona
## 582                                                        Jamaica
## 583                                                    Cheektowaga
## 584                                                       Syracuse
## 585                                                       Brooklyn
## 586                                                      Liverpool
## 587                                                          Andes
## 588                                                   New Rochelle
## 589                                                          Nyack
## 590                                                      Rochester
## 591                                                      Rochester
## 592                                                       Flushing
## 593                                                         Carmel
## 594                                                       New York
## 595                                                  Staten Island
## 596                                                       New York
## 597                                                    Glens Falls
## 598                                                   Clifton Park
## 599                                                       New York
## 600                                                      Waterford
## 601                                               Saratoga Springs
## 602                                                        Oneonta
## 603                                                        Hamburg
## 604                                                         Albany
## 605                                                         Geneva
## 606                                                         Albany
## 607                                                   East Hampton
## 608                                                      Rochester
## 609                                                         Albany
## 610                                                      Watertown
## 611                                                      Glen Head
## 612                                                      Dansville
## 613                                                      Hyde Park
## 614                                                      Nesconset
## 615                                                         Ithaca
## 616                                                       New York
## 617                                                          Bronx
## 618                                                          Bronx
## 619                                                   Poughkeepsie
## 620                                                        Norfolk
## 621                                                     Queensbury
## 622                                                  Montour Falls
## 623                                                          Bronx
## 624                                                        Buffalo
## 625                                                       New York
## 626                                                       Herkimer
## 627                                                   Painted Post
## 628                                                        Jamaica
## 629                                                         Clymer
## 630                                                          Olean
## 631                                                      Peekskill
## 632                                                        Syosset
## 633                                                   Clifton Park
## 634                                                         Albany
## 635                                                       Brooklyn
## 636                                                          Bronx
## 637                                                Jamaica Estates
## 638                                                        Syosset
## 639                                                  New Hyde Park
## 640                                                    Glens Falls
## 641                                                       New York
## 642                                                      Rochester
## 643                                                      Bay Shore
## 644                                                         Goshen
## 645                                                      Peekskill
## 646                                                        Buffalo
## 647                                                          Bronx
## 648                                                  Staten Island
## 649                                                       Lowville
## 650                                                         Albany
## 651                                                    Cheektowaga
## 652                                                  Williamsville
## 653                                                      Amsterdam
## 654                                                     Ronkonkoma
## 655                                                  Baldwinsville
## 656                                                        Jamaica
## 657                                                 Valley Cottage
## 658                                                  Staten Island
## 659                                                      Rochester
## 660                                                       Camillus
## 661                                                        Dunkirk
## 662                                                         Auburn
## 663                                                    Cheektowaga
## 664                                                       Camillus
## 665                                             Huntington Station
## 666                                                      Rochester
## 667                                                       Melville
## 668                                                      Hawthorne
## 669                                                     Farmington
## 670                                                        Medford
## 671                                                St. Regis Falls
## 672                                                          Bronx
## 673                                                          Bronx
## 674                                                Franklin Square
## 675                                                       New York
## 676                                                           Rome
## 677                                                       Glendale
## 678                                                         Malone
## 679                                                      Rochester
## 680                                                  Spring Valley
## 681                                                   White Plains
## 682                                                       Brooklyn
## 683                                                   Johnson City
## 684                                                          Utica
## 685                                                       New York
## 686                                                     Long Beach
## 687                                                  Williamsville
## 688                                                       Brooklyn
## 689                                                        Pulaski
## 690                          81 Park Street          Elizabethtown
## 691                                                        Kenmore
## 692                                                       Brooklyn
## 693                                                       Fairport
## 694                                                          Delhi
## 695                                                        Commack
## 696                                                       Fairport
## 697                                                      Rochester
## 698                                                     Queensbury
## 699                                                        Potsdam
## 700                                                        Astoria
## 701                                                          Delhi
## 702                                                     Great Neck
## 703                                                         Cohoes
## 704                                                      Glenville
## 705                                                        Hornell
## 706                                                       Brooklyn
## 707                                                         Monsey
## 708                                                      Jamestown
## 709                                                     Queensbury
## 710                                                           Rome
## 711                                                          Bronx
## 712                                                  Ballston Lake
## 713                                                           Rome
## 714                                                       Valhalla
## 715                                                    Plattsburgh
## 716                                                       Ossining
## 717                                                     Middletown
## 718                                                       Syracuse
## 719                                                          Bronx
## 720                                                      Rochester
## 721                                                        Maspeth
## 722                                                      Rochester
## 723                                                       New York
## 724                                                     Long Beach
## 725                                                       Brooklyn
## 726                                                     Farmington
## 727                                                          Bronx
## 728                                                          Bronx
## 729                                                     Binghamton
## 730                                                      Rego Park
## 731                                                     Huntington
## 732                                                      Caledonia
## 733                                                  Niagara Falls
## 734                                                       Unadilla
## 735                                                        Congers
## 736                                                       Fairport
## 737                                                       Brooklyn
## 738                                                       New York
## 739                                                       Syracuse
## 740                                                       Brooklyn
## 741                                                      Patchogue
## 742                                                     Greenhurst
## 743                                                      Glenville
## 744                                                   Hampton Bays
## 745                                                       Syracuse
## 746                                                     Huntington
## 747                                                   Gloversville
## 748                                                       Brooklyn
## 749                                                     Watervliet
## 750                                                   Westmoreland
## 751                                                         Beacon
## 752                                                       New York
## 753                                                       Syracuse
## 754  713 Troy - Schenectady Road, Suite 304                 Latham
## 755                                                   White Plains
## 756                                                  West Winfield
## 757                                                       Brooklyn
## 758                                                        Buffalo
## 759                                                       Flushing
## 760                                                         Oswego
## 761                                                    Garden City
## 762                                                      Rochester
## 763                                                          Bronx
## 764                                                  Staten Island
## 765                                                   Slingerlands
## 766                                                       Herkimer
## 767                                                       Lewiston
## 768                                                        Bayside
## 769                                                      Scarsdale
## 770                                                   New Rochelle
## 771                                                    East Aurora
## 772                                               Long Island City
## 773                                                    Schenectady
## 774                                                        Buffalo
## 775                                                         Goshen
## 776                                                         Oxford
## 777                                                  Staten Island
## 778                                                         Ithaca
## 779                                                       Brooklyn
## 780                                                          Bronx
## 781                                                      Uniondale
## 782                                                          Bronx
## 783                                                           Rome
## 784                                               Long Island City
## 785                                                          Bronx
## 786                                                    Port Jervis
## 787                                                       Brooklyn
## 788                                                         Vestal
## 789                                                      Rochester
## 790                                                       Brooklyn
## 791                                                   Far Rockaway
## 792                                                       Brooklyn
## 793                                                      Watertown
## 794                                                          Bronx
## 795                                                      Manhasset
## 796                                                      Rochester
## 797                                                         Copake
## 798                                                          Bronx
## 799                                                    Schenectady
## 800                                                       Southold
## 801                                                Palatine Bridge
## 802                                                        Potsdam
## 803                                                          Bronx
## 804                                         Port Jefferson Station
## 805                                                       Cortland
## 806                                                  Rockaway Park
## 807                                                       New York
## 808                                                       Penfield
## 809                                                       Brooklyn
## 810                                                       Syracuse
## 811                                                      Rochester
## 812                                                        Pawling
## 813                                                      Rochester
## 814                                                   White Plains
## 815                                                          Bronx
## 816                                                         Queens
## 817                                                     Gansevoort
## 818                                                        Oneonta
## 819                                                     Lackawanna
## 820                                                        Liberty
## 821                                                           Troy
## 822                                                      Manhasset
## 823                                                       Brooklyn
## 824                                                   Far Rockaway
## 825                                                       Syracuse
## 826                                                       Brooklyn
## 827                                                   New Rochelle
## 828                                                       New York
## 829                                                      Peekskill
## 830                                                       Brooklyn
## 831                                                    Southampton
## 832                                                         Latham
## 833                                                          Bronx
## 834                                                       New York
## 835                                                          Bronx
## 836                                                    Fort Edward
## 837                                                   Forest Hills
## 838                                                         Hudson
## 839                                                   Ballston Spa
## 840                                                        Dunkirk
## 841                                                       Brooklyn
## 842                                                       Syracuse
## 843                                                    Canajoharie
## 844                                                    Schenectady
## 845                                                         Newark
## 846                                                       Syracuse
## 847                                                   Poughkeepsie
## 848                                                          Delhi
## 849                                                       Brooklyn
## 850                                                          Bronx
## 851                                                        Hamburg
## 852                                                     Whitestone
## 853                                                         Albany
## 854                                                      Greenport
## 855                                                        Webster
## 856                                                 Port Jefferson
## 857                                               Saratoga Springs
## 858                                                            Rye
## 859                                                          Utica
## 860                                                       Brooklyn
## 861                                                       New York
## 862                               Room B100                  Bronx
## 863                                                       Clarence
## 864                                                   Orchard Park
## 865                                                        Yonkers
## 866                                                          Bronx
## 867                                                       New York
## 868                                                    Cooperstown
## 869                                                       Brooklyn
## 870                                                      Canastota
## 871                                                 North Syracuse
## 872                                                       New York
## 873                                                       Syracuse
## 874                                                    Schenectady
## 875                                                         Warsaw
## 876                                                      Hempstead
## 877                                                      Hempstead
## 878                                                   Mount Vernon
## 879                                                  Mechanicville
## 880                                                     Middletown
## 881                                                         Warsaw
## 882                                                      Whitehall
## 883                                                      Westfield
## 884                                                          Bronx
## 885                                                          Bronx
## 886                                                  Staten Island
## 887                                                       Brooklyn
## 888                                                       Brooklyn
## 889                                               Saratoga Springs
## 890                                                       Brooklyn
## 891                                                       New York
## 892                                                      Rochester
## 893                                                          Bronx
## 894                                                     Lackawanna
## 895                                                       Bethpage
## 896                                                           Rome
## 897                                                    Cheektowaga
## 898                                                       Brooklyn
## 899                                                  Staten Island
## 900                                                       Camillus
## 901                                                        Buffalo
## 902                                                    Canandaigua
## 903                                                        Ardsley
## 904                                                      Salamanca
## 905                                                      Johnstown
## 906                                                        Amherst
## 907                                                       New York
## 908                                                       Brooklyn
## 909                                                     Great Neck
## 910                                                        Buffalo
## 911                                                       Kingston
## 912                                                       New York
## 913                                                       New York
## 914                                                       New York
## 915                                                        Jamaica
## 916                                                   Schroon Lake
## 917                                                         Corona
## 918                                                       Brooklyn
## 919                                                    Cooperstown
## 920                                                        Valatie
## 921                                                       Brooklyn
## 922                                                   Mount Vernon
## 923                                                       Cortland
## 924                                                          Bronx
## 925                                                      Tonawanda
## 926                                                          Bronx
## 927                                                       Brooklyn
## 928                                                         Le Roy
## 929                                                        Buffalo
## 930                                                      Dansville
## 931                                                       New York
## 932                                                        Yonkers
## 933                                                         Sidney
## 934                                                        Yonkers
## 935                                                   Clifton Park
## 936                                                       New York
## 937                                                  East Syracuse
## 938                                                         Elmont
## 939                                                     Huntington
## 940                                                        Syosset
## 941                                                     Binghamton
## 942                                                    Burnt Hills
## 943                                                         Ithaca
## 944                                                        Webster
## 945                                                       New York
## 946                                                        Macedon
## 947                                                   Poughkeepsie
## 948                                                     Ogdensburg
## 949                                                       New York
## 950                                                       New York
## 951                                                    Plattsburgh
## 952                                                       Lockport
## 953                                                         Albany
## 954                                                          Bronx
## 955                                               Long Island City
## 956                                                       Brooklyn
## 957                                                      Smithtown
## 958                                                     Rensselaer
## 959                                                          Bronx
## 960                                                       New York
## 961                                                        Suffern
## 962                                                       Flushing
## 963                                                       Brooklyn
## 964                                                       New York
## 965                                                       Lowville
## 966                                                       Syracuse
## 967                                                         Armonk
## 968                                                      Smithtown
## 969                                                         Ithaca
## 970                                                North Tonawanda
## 971                                                        Norwich
## 972                                                         Attica
## 973                                                          Olean
## 974                                                      Rochester
## 975                                                       Brooklyn
## 976                                                       Brooklyn
## 977                                                         Canton
## 978                                                      Rochester
## 979                                                   Poughkeepsie
## 980                                                       Brooklyn
## 981                                                      Chappaqua
## 982                                                 Roslyn Heights
## 983                                                       Brooklyn
## 984                                                       Marathon
## 985                                                     Huntington
## 986                                                    Port Jervis
## 987                                                        Massena
## 988                                                       Brooklyn
## 989                                                         Greene
## 990                                                  Niagara Falls
## 991                                                          Bronx
## 992                                                  Staten Island
## 993                                                       New York
## 994                                                    Lake Placid
## 995                                                       Harrison
## 996                                                       Syracuse
## 997                                                     Mamaroneck
## 998                                                      Amsterdam
## 999                                                       New York
## 1000                                                      Brooklyn
## 1001                                                       Syosset
## 1002                                                      Brooklyn
## 1003                                                    Binghamton
## 1004                                                          Eden
## 1005                                                     Rochester
## 1006                                                        Scotia
## 1007                                                        Albany
## 1008                                                        Oneida
## 1009                                                     Amsterdam
## 1010                                                       Yonkers
## 1011                                                      Mayville
## 1012                                                        Medina
## 1013                                                         Bronx
## 1014                                                   Dobbs Ferry
## 1015                                                     Rochester
## 1016                                                       Buffalo
## 1017                                                       Liberty
## 1018                                                Queens Village
## 1019                                              Saratoga Springs
## 1020                                                       Dunkirk
## 1021                                                        Albany
## 1022                                                     Hauppauge
## 1023                                                      Brooklyn
## 1024                                                    West Islip
## 1025                                                         Bronx
## 1026                                                         Bronx
## 1027                                              Rockville Centre
## 1028                                                        Ithaca
## 1029                                                       Hornell
## 1030                                                        Geneva
## 1031                                                      Brooklyn
## 1032                                                    Monticello
## 1033                                                     Oceanside
## 1034                                                     Riverdale
## 1035                                                   Lake George
## 1036                                                      New York
## 1037                                                      New York
## 1038                                                  Clifton Park
## 1039                                                         Bronx
## 1040                                                     Akwesasne
## 1041                                                  New Rochelle
## 1042                                                        Albany
## 1043                                                        Hudson
## 1044                              Suite 503           Mount Vernon
## 1045                                                   Chittenango
## 1046                                                      New York
## 1047                                                      Brooklyn
## 1048                                                      Brooklyn
## 1049                                                    Great Neck
## 1050                                                      New York
## 1051                                                       Liberty
## 1052                                                 Staten Island
## 1053                                                       Buffalo
## 1054                                                  Philadelphia
## 1055                                                       Jamaica
## 1056                                                      New York
## 1057                                                        Medina
## 1058                                                        Monroe
## 1059                                                      Fishkill
## 1060                                                      Westbury
## 1061                                                      Brooklyn
## 1062                                                        Parish
## 1063                                                      New York
## 1064                                                    Jamesville
## 1065                                                     Rochester
## 1066                                                        Goshen
## 1067                                                      Brooklyn
## 1068                                                      Kingston
## 1069                                                     Rochester
## 1070                                                    Rensselaer
## 1071                                                       Babylon
## 1072                                                      New York
## 1073                                                       Endwell
## 1074                                                   Middleburgh
## 1075                                                  Poughkeepsie
## 1076                                                      Syracuse
## 1077                                                        Dewitt
## 1078                                Suite 4                Oneonta
## 1079                                                 Williamsville
## 1080                                                        Hudson
## 1081                                                    Lackawanna
## 1082                                                       Jamaica
## 1083                              Suite 100                 Latham
## 1084                                                 Williamsville
## 1085                                                  Poughkeepsie
## 1086                                                    Cobleskill
## 1087                                                  White Plains
## 1088                                                      Brooklyn
## 1089                                                      New York
## 1090                                                     Watertown
## 1091                                                        Auburn
## 1092                                                     Rochester
## 1093                                                        Corona
## 1094                                                      Herkimer
## 1095                                                      Flushing
## 1096                                                         Bronx
## 1097                                                      New York
## 1098                                                      New York
## 1099                                                       Arverne
## 1100                                                        Walton
## 1101                                                      Brooklyn
## 1102                                                      New York
## 1103                                                      New York
## 1104                                                  New Hartford
## 1105                                                      New York
## 1106                                                       Hornell
## 1107                                                   Cooperstown
## 1108                                                      Flushing
## 1109                                                     Rochester
## 1110                                                Rockaway Beach
## 1111                                                       Chatham
## 1112                                                      Syracuse
## 1113                                              Croton-on-Hudson
## 1114                                                  Saranac Lake
## 1115                                                        Queens
## 1116                                                     Hauppauge
## 1117                                                      Brooklyn
## 1118                                                      Brooklyn
## 1119                                                      Garrison
## 1120                                                      Brooklyn
## 1121                                                      New York
## 1122                                                      New York
## 1123                                                        Cohoes
## 1124                                                  Forest Hills
## 1125                                                   Glens Falls
## 1126                                                      Brooklyn
## 1127                                                     Rochester
## 1128                                                         Coram
## 1129                                                      Flushing
## 1130                                                  Far Rockaway
## 1131                                                     Manhattan
## 1132                                                       Buffalo
## 1133                                                         Bronx
## 1134                                                      New York
## 1135                                                     Hawthorne
## 1136                                                      Brooklyn
## 1137                                                     Rochester
## 1138                                                    Broadalbin
## 1139                                                     Rochester
## 1140                                                      New York
## 1141                                                     Watertown
## 1142                                                 Valley Stream
## 1143                                                      Lockport
## 1144                                                    Long Beach
## 1145                                                 Staten Island
## 1146                                                 Staten Island
## 1147                                                      Syracuse
## 1148                                                     Amsterdam
## 1149                                                       Yonkers
## 1150                                                    Binghamton
## 1151                                                      Syracuse
## 1152                                                      Valhalla
## 1153                                                        Vestal
## 1154                                                     Patchogue
## 1155                                            Hastings-On-Hudson
## 1156                                                 Sleepy Hollow
## 1157                                                        Malone
## 1158                                                         Olean
## 1159                                                     Rochester
## 1160                                                 East Syracuse
## 1161                                                  Far Rockaway
## 1162                                                     Peekskill
## 1163                                                         Bronx
## 1164                                                   Cooperstown
## 1165                                                     Riverhead
## 1166                                                   Plattsburgh
## 1167                                                      Woodbury
## 1168                                                    New Berlin
## 1169                                                     Oceanside
## 1170                                                      Carthage
## 1171                                                         Bronx
## 1172                                                     Mt Vernon
## 1173                                                   Canandaigua
## 1174                                                        Newark
## 1175                                                  Poughkeepsie
## 1176                                                     Mt Morris
## 1177                                                          Troy
## 1178                                                      Brooklyn
## 1179                                                      Brooklyn
## 1180                                                  White Plains
## 1181                                                         Bronx
## 1182                                                    East Islip
## 1183                                                     Rochester
## 1184                                                      Newburgh
## 1185                                                    Ogdensburg
## 1186                                                   Lyndonville
## 1187                                                   Canandaigua
## 1188                                                         Bronx
## 1189                                                   Farmingdale
## 1190                                                   Garden City
## 1191                                                      Altamont
## 1192                                                   Schenectady
## 1193                                                      Kingston
## 1194                                                         Bronx
## 1195                                                   Morrisville
## 1196                                                     Lancaster
## 1197                                                      New York
## 1198                                                     Johnstown
## 1199                                                      Brooklyn
## 1200                                                        Madrid
## 1201                                                      Edgemere
## 1202                                                   Plattsburgh
## 1203                                                  Slingerlands
## 1204                                                  New Hartford
## 1205                                                      Brooklyn
## 1206                                                       Jamaica
## 1207                                                    Great Neck
## 1208                                                      Brooklyn
## 1209                                                 Staten Island
## 1210                                                     Chappaqua
## 1211                                                    Binghamton
## 1212                                                      New York
## 1213                                                 Niagara Falls
## 1214                                                         Bronx
## 1215                                                      Brooklyn
## 1216                                                         Bronx
## 1217                                                      Kingston
## 1218                                                       Norwich
## 1219                                                      Syracuse
## 1220                                                        Hollis
## 1221                                                      Brooklyn
## 1222                                                   Skaneateles
## 1223                                                      New York
## 1224                                                 New Hyde Park
## 1225                                                         Bronx
## 1226                                                      Cortland
## 1227                                                      New York
## 1228                                                      Brooklyn
## 1229                                                      Brooklyn
## 1230                                                      Brooklyn
## 1231                                                     Rochester
## 1232                                                       Hornell
## 1233                             Building 2                 Wilton
## 1234                                                 Staten Island
## 1235                                                      Setauket
## 1236                                                     Rochester
## 1237                                               Jackson Heights
## 1238                                                 Islip Terrace
## 1239                                                       Webster
## 1240                                                       Arverne
## 1241                                                    Wellsville
## 1242                                                  White Plains
## 1243                                                         Coram
## 1244                                                     Rochester
## 1245                                                  Hudson Falls
## 1246                                                        Albany
## 1247                                                     Amsterdam
## 1248                                                     Rochester
## 1249                                                         Bronx
## 1250                                                   Westhampton
## 1251                                                      Glendale
## 1252                                                        Oneida
## 1253                                                      Lockport
## 1254                                                   Port Jervis
## 1255                                                        Elmira
## 1256                                                        Sidney
## 1257                                                       Dunkirk
## 1258                                                   Mount Kisco
## 1259                                                         Bronx
## 1260                                                       Buffalo
## 1261                                                 Staten Island
## 1262                                                       Melrose
## 1263                                                    Great Neck
## 1264                                                    Saugerties
## 1265                                                    Binghamton
## 1266                                                        Fulton
## 1267                                                   Plattsburgh
## 1268                                                        Geneva
## 1269                                                      New York
## 1270                                                      Cortland
## 1271                                                         Bronx
## 1272                             Suite UL-5            Garden City
## 1273                                                       Potsdam
## 1274                                        Port Jefferson Station
## 1275                                                  White Plains
## 1276                                                         Bronx
## 1277                                                         Bronx
## 1278                                                         Perry
## 1279                                                 Bedford Hills
## 1280                                                        Oneida
## 1281                                                      Ossining
## 1282                                                    Huntington
## 1283                                                 Margaretville
## 1284                                                     Manhattan
## 1285                                                         Utica
## 1286                                                       Buffalo
## 1287                                                     Rochester
## 1288                                                  New Hartford
## 1289                                                      Woodside
## 1290                                                     Rochester
## 1291                                                    Huntington
## 1292                                                         Bronx
## 1293                                                        Victor
## 1294                                                  Mount Vernon
## 1295                                                      Woodside
## 1296                                                      New York
## 1297                                                        Oneida
## 1298                                                      Syracuse
## 1299                                               West Haverstraw
## 1300                                              Saratoga Springs
## 1301                                                       Yonkers
## 1302                                                         Bronx
## 1303                                                      Brooklyn
## 1304                                                         Owego
## 1305                                                      Flushing
## 1306                                                      Brooklyn
## 1307                                                   Hensonville
## 1308                                                       Amherst
## 1309                                                Sackets Harbor
## 1310                                                 New Hyde Park
## 1311                                                 Montour Falls
## 1312                                                      Brooklyn
## 1313                                                        Walton
## 1314                                                        Cohoes
## 1315                                                     Brockport
## 1316                                            Huntington Station
## 1317                              Suite 213              Scarsdale
## 1318                                                      Purchase
## 1319                                                     Rochester
## 1320                                                       Baldwin
## 1321                                                 Staten Island
## 1322                                                      Brooklyn
## 1323                                                      New York
## 1324                                                     Rochester
## 1325                                                        Canton
## 1326                                                         Bronx
## 1327                                                  Lake Luzerne
## 1328                                                      Brooklyn
## 1329                                                  White Plains
## 1330                                                       Buffalo
## 1331                                                      Brooklyn
## 1332                                                     Hyde Park
## 1333                                                    Munnsville
## 1334                                                         Bronx
## 1335                                                   Hurleyville
## 1336                                                       Jamaica
## 1337                                                        Newark
## 1338                                                     Watertown
## 1339                                                       Macedon
## 1340                                                       Jamaica
## 1341                                                         Bronx
## 1342                                                      New York
## 1343                                            Hastings On Hudson
## 1344                                                          Troy
## 1345                                                         Fonda
## 1346                                                       Warwick
## 1347                                                   Crown Point
## 1348                                                         Owego
## 1349                                                        Oswego
## 1350                                                      New York
## 1351                                                    Cobleskill
## 1352                                                      New York
## 1353                                                      Syracuse
## 1354                                                         Bronx
## 1355                                                          Rome
## 1356                                                      New York
## 1357                                                   Little Neck
## 1358                                                         Utica
## 1359                                                       Yonkers
## 1360                                                 Staten Island
## 1361                                               Oswego New York
## 1362                                                      Brooklyn
## 1363                                                  Fayetteville
## 1364                                              Long Island City
## 1365                                                        Albany
## 1366                                                      New York
## 1367                                                      Woodmere
## 1368                                                     Rochester
## 1369                                                        Roscoe
## 1370                                                  Far Rockaway
## 1371                                                         Bronx
## 1372                                                  Little Falls
## 1373                                                          Troy
## 1374                                                      New York
## 1375                                                  Gloversville
## 1376                                                      New York
## 1377                                                       Waverly
## 1378                                                   Harrisville
## 1379                                                       Jamaica
## 1380                                                        Vestal
## 1381                                                      New York
## 1382                                                      New York
## 1383                                                  Lake Success
## 1384                                                       Liberty
## 1385                                                      Ossining
## 1386                                                      Brooklyn
## 1387                                                      Westbury
## 1388                                                     Roosevelt
## 1389                                                       Jamaica
## 1390                                                         Malta
## 1391                                                          Troy
## 1392                                                    Hicksville
## 1393                                                   Lyons Falls
## 1394                                                      Lynbrook
## 1395                                                      New York
## 1396                                                         Bronx
## 1397                                                 Staten Island
## 1398                                                     Rochester
## 1399                                                 Whitney Point
## 1400                                                     Riverhead
## 1401                                                         Sodus
## 1402                                              Saratoga Springs
## 1403                                                       Laurens
## 1404                                                         Bronx
## 1405                                                      New York
## 1406                                                   Schenectady
## 1407                                                 Staten Island
## 1408                                                      Edmeston
## 1409                                                         Bronx
## 1410                                                        Cohoes
## 1411                                                      Brooklyn
## 1412                                                West Coxsackie
## 1413                                                      Brooklyn
## 1414                                                         Bronx
## 1415                                                          Rome
## 1416                                                    Queensbury
## 1417                                                         Bronx
## 1418                                                      New York
## 1419                                                         Bronx
## 1420                                                       Moravia
## 1421                                                   Guilderland
## 1422                                                      Brooklyn
## 1423                                                    Waterville
## 1424                                                    Port Byron
## 1425                                                      Brooklyn
## 1426                                                   Lake Placid
## 1427                                                      Penn Yan
## 1428                                                      New York
## 1429                                                       Pawling
## 1430                                                      Syracuse
## 1431                                                      Highland
## 1432                                                     Rochester
## 1433                                                     Rochester
## 1434                                                         Bronx
## 1435                                                    Middletown
## 1436                                                       Jamaica
## 1437                                                       Webster
## 1438                                                       Yonkers
## 1439                                                       Batavia
## 1440                                                     Rochester
## 1441                                                     Riverhead
## 1442                                                     Watertown
## 1443                                                 Staten Island
## 1444                                                        Albany
## 1445                                                      Brooklyn
## 1446                                                      Brooklyn
## 1447                                                          Troy
## 1448                                                       Hancock
## 1449                                                 Spring Valley
## 1450                                                        Albany
## 1451                                                      New York
## 1452                                                      New York
## 1453                                                         Bronx
## 1454                                                  Far Rockaway
## 1455                                                      Lowville
## 1456                                                         Lyons
## 1457                                                   Guilderland
## 1458                                                      Fairport
## 1459                                                      Lockport
## 1460                                                  Beaver Falls
## 1461                                                    Ellenville
## 1462                                                 Sleepy Hollow
## 1463                                                       Corning
## 1464                                                        Oswego
## 1465                                                       Yonkers
## 1466                                                  Mount Vernon
## 1467                                                    Lackawanna
## 1468                                                     Watertown
## 1469                                            Huntington Station
## 1470                                                 Sleepy Hollow
## 1471                                                      Brooklyn
## 1472                                                          Troy
## 1473                                                     Jamestown
## 1474                                                        Oswego
## 1475                                                       Hamburg
## 1476                                                  Gloversville
## 1477                                                      New York
## 1478                                                         Bronx
## 1479                                               Cortlandt Manor
## 1480                                                   Mount Kisco
## 1481                                                       Yonkers
## 1482                                                   Springville
## 1483                                                 Staten Island
## 1484                                                    Binghamton
## 1485                                                        Newark
## 1486                                                  Mohegan Lake
## 1487                                                      Brooklyn
## 1488                                                      Brooklyn
## 1489                                                      New York
## 1490                                                         Bronx
## 1491                                                        Nanuet
## 1492                                                    Great Neck
## 1493                                                     Brockport
## 1494                                                 Niagara Falls
## 1495                                                   Stony Brook
## 1496                                                     Bay Shore
## 1497                                                 Spring Valley
## 1498                                                     Hauppauge
## 1499                                                Central Square
## 1500                                                        Le Roy
## 1501                                                      Lockport
## 1502                                                         Bronx
## 1503                                                  White Plains
## 1504                                                    Jamesville
## 1505                                                     Rhinebeck
## 1506                                                         Utica
## 1507                                                         Delhi
## 1508                                                     W Babylon
## 1509                                                     Glen Cove
## 1510                                                        Auburn
## 1511                                                     Rochester
## 1512                                                         Bronx
## 1513                                                      New York
## 1514                                                     Rochester
## 1515                                                   Schenectady
## 1516                                                         Bronx
## 1517                                                    Downsville
## 1518                                                 Staten Island
## 1519                                                      Brooklyn
## 1520                                                         Bronx
## 1521                                                         Bronx
## 1522                                                        Beacon
## 1523                                                     Ridgewood
## 1524                                                     Rochester
## 1525                                                      Brooklyn
## 1526                                                  Poughkeepsie
## 1527                                                         Bronx
## 1528                                                 Middle Island
## 1529                                                     Hempstead
## 1530                                                       Buffalo
## 1531                                                         Bronx
## 1532                                                       Wassaic
## 1533                                                     Rochester
## 1534                                                         Bronx
## 1535                                                         Bronx
## 1536                                                      Yorktown
## 1537                                                         Bronx
## 1538                                                   Irondequoit
## 1539                                                       Buffalo
## 1540                                                      Fairport
## 1541                                                     Brentwood
## 1542                                                        Albany
## 1543                                                    Plattsburg
## 1544                                                   Floral Park
## 1545                                                    Ozone Park
## 1546                                                       Gowanda
## 1547                                                      New York
## 1548                                                 St Johnsville
## 1549                                                      New York
## 1550                                                     Rochester
## 1551                                                     Riverhead
## 1552                                                     Amsterdam
## 1553                                                      Westport
## 1554                                                     Mt Morris
## 1555                                                      Brooklyn
## 1556                                                      Kingston
## 1557                                                         Bronx
## 1558                                                         Bronx
## 1559                                                       Yonkers
## 1560                                                      New York
## 1561                                                   Cheektowaga
## 1562                              Suite 213              Scarsdale
## 1563                                                      Brooklyn
## 1564                                                      Brooklyn
## 1565                                                    Wellsville
## 1566                                                   Southampton
## 1567                                                      New York
## 1568                                                  West Babylon
## 1569                                                     Watertown
## 1570                                                       Clinton
## 1571                                                       Webster
## 1572                                                      New York
## 1573                                                         Bronx
## 1574                                                      Brooklyn
## 1575                                                     Rye Brook
## 1576                                                      Flushing
## 1577                                                    West Islip
## 1578                                                        Ithaca
## 1579                                                  Forest Hills
## 1580                                                         Bronx
## 1581                                                     Rochester
## 1582                                                    Gansevoort
## 1583                                                    Huntington
## 1584                                               Jackson Heights
## 1585                                                     Rochester
## 1586                                                     Patchogue
## 1587                                                        Geneva
## 1588                                                     Glenville
## 1589                                                        Vestal
## 1590                                                  Grand Island
## 1591                               Suite 50                Amherst
## 1592                                                    Gouverneur
## 1593                                                      New York
## 1594                                                          Cuba
## 1595                                              Saratoga Springs
## 1596                                                         Bronx
## 1597                                                    Centereach
## 1598                                                       Buffalo
## 1599                                                       Baldwin
## 1600                                                    Mamaroneck
## 1601                                                         Bronx
## 1602                                              Saratoga Springs
## 1603                                                     Glen Cove
## 1604                                                         Bronx
## 1605                                                        Albany
## 1606                                                      Brooklyn
## 1607                                                     Bay Shore
## 1608                                                        Monroe
## 1609                                                      Brooklyn
## 1610                                                         Bronx
## 1611                                                         Bronx
## 1612                                                      New York
## 1613                                                         Bronx
## 1614                                                     Hempstead
## 1615                                                     Hauppauge
## 1616                                                      New York
## 1617                                              Saratoga Springs
## 1618                                                     Rochester
## 1619                                                   Fort Edward
## 1620                                                      New York
## 1621                                                   Schenectady
## 1622                                                     Rochester
## 1623                                                      Brooklyn
## 1624                                                         Utica
## 1625                                                       Amherst
## 1626                                                 Margaretville
## 1627                                                      Brooklyn
## 1628                                                         Bronx
## 1629                                                       Arverne
## 1630                                                     Niskayuna
## 1631                                                       Buffalo
## 1632                                                         Bronx
## 1633                                                         Bronx
## 1634                                                         Bronx
## 1635                                                      Flushing
## 1636                                                      Brooklyn
## 1637                                                       Oneonta
## 1638                                                         Bronx
## 1639                                                         Moira
## 1640                                                     Manhasset
## 1641                                                        Hudson
## 1642                                                      Brooklyn
## 1643                                                     Rochester
## 1644                                                    Ellenville
## 1645                                                    Binghamton
## 1646                                                  Port Chester
## 1647                                                         Bronx
## 1648                                                         Bronx
## 1649                                                      Brooklyn
## 1650                                                        Goshen
## 1651                                                      Brooklyn
## 1652                                                      Brooklyn
## 1653                                                     Callicoon
## 1654                                                  White Plains
## 1655                                                     Oceanside
## 1656                                                      Brooklyn
## 1657                                                       Clinton
## 1658                                                  Poughkeepsie
## 1659                                                  Lake Success
## 1660                                                    Queensbury
## 1661                                                      New York
## 1662                                                        Albany
## 1663                                                   Plattsburgh
## 1664                                                      Brooklyn
## 1665                                                        Fulton
## 1666                                                        Victor
## 1667                                                      New York
## 1668                                                  Orchard Park
## 1669                                                       Endwell
## 1670                                                      New York
## 1671                                                 Middle Island
## 1672                                                        Albany
## 1673                                                  New Hartford
## 1674                                                      Waterloo
## 1675                                                        Parish
## 1676                                                    Middletown
## 1677                                                         Malta
## 1678                                                      Elmhurst
## 1679                                                       Oneonta
## 1680                                                  New Rochelle
## 1681                                                      Delanson
## 1682                                                      New York
## 1683                                                     Amsterdam
## 1684                                                         Bronx
## 1685                                                    Ozone Park
## 1686                                                     Rochester
## 1687                                                 East Setauket
## 1688                                                       Mineola
## 1689                                                     Rochester
## 1690                                                 Niagara Falls
## 1691                                                    Binghamton
## 1692                                                      Brooklyn
## 1693                                                     Hempstead
## 1694                                                       Pulaski
## 1695                                                      Brooklyn
## 1696                                                         Utica
## 1697                                                  Johnson City
## 1698                                                       Shirley
## 1699                                                     Schoharie
## 1700                                                      Brooklyn
## 1701                                                       Batavia
## 1702                                                    Queensbury
## 1703                                                      Brooklyn
## 1704                                                      Brooklyn
## 1705                                                    Gouverneur
## 1706                                                         Bronx
## 1707                                                         Bronx
## 1708                                                      Brooklyn
## 1709                                                  Lake Success
## 1710                                                      Brooklyn
## 1711                                                         Bronx
## 1712                                                  Clifton Park
## 1713                                                        Albany
## 1714                                                      Brooklyn
## 1715                                                      Brooklyn
## 1716                                                       Buffalo
## 1717                                                        Fulton
## 1718                                                 Staten Island
## 1719                                                 Valley Stream
## 1720                                                      New York
## 1721                                                    Great Neck
## 1722                                               Dekalb Junction
## 1723                                                      New York
## 1724                                               Jackson Heights
## 1725                                                  Mount Vernon
## 1726                                                      Deruyter
## 1727                                                St. Johnsville
## 1728                                                      New York
## 1729                                                        Ithaca
## 1730                                                    West Islip
## 1731                                                      Syracuse
## 1732                                                  White Plains
## 1733                                                         Bronx
## 1734                                                     Patchogue
## 1735                                                 Williamsville
## 1736                                                       Geneseo
## 1737                                                   Lake George
## 1738                                                         Bronx
## 1739                                                         Bronx
## 1740                                                        Verona
## 1741                                                         Ghent
## 1742                                                       Jamaica
## 1743                                                     Rochester
## 1744                                                         Olean
## 1745                                                      New York
## 1746                                              Croton-on-Hudson
## 1747                                                      Syracuse
## 1748                                                      Carthage
## 1749                                                      Brooklyn
## 1750                                                     Amsterdam
## 1751                                                     Rochester
## 1752                                                      Newburgh
## 1753                                              Long Island City
## 1754                                                      Kingston
## 1755                                                         Malta
## 1756                                                        Parish
## 1757                                                     Riverhead
## 1758                                                      Elmsford
## 1759                                                      Brooklyn
## 1760                                                          Troy
## 1761                                                         Bronx
## 1762                                                      Brooklyn
## 1763                                                         Bronx
## 1764                                                    Manorville
## 1765                                                       Potsdam
## 1766                                                     Scarsdale
## 1767                                                        Armonk
## 1768                                                       Kenmore
## 1769                                                      Stamford
## 1770                                                     Hempstead
## 1771                                                  Watkins Glen
## 1772                                                         Bronx
## 1773                                                       Hornell
## 1774                                                   Cooperstown
## 1775                                                      New York
## 1776                                                       Norwich
## 1777                                                     Rochester
## 1778                                                       Amherst
## 1779                                                      Syracuse
## 1780                                                     Rochester
## 1781                                                    Huntington
## 1782                                                      New York
## 1783                                                   Plattsburgh
## 1784                                                        Geneva
## 1785                                           Springfield Gardens
## 1786                                                  Poughkeepsie
## 1787                                                      Penfield
## 1788                                               North Tonawanda
## 1789                                                     N Hornell
## 1790                                                      New York
## 1791                                                        Albany
## 1792                                                       Hewlett
## 1793                                                      Brooklyn
## 1794                                                      Syracuse
## 1795                                                     Manhasset
## 1796                                                        Auburn
## 1797                                                        Ithaca
## 1798                                                       Mineola
## 1799                                                 Margaretville
## 1800                                                       Norwich
## 1801                                                 Staten Island
## 1802                                                 Niagara Falls
## 1803                                                         Bronx
## 1804                                                    Rensselaer
## 1805                                               Clifton Springs
## 1806                                                      New York
## 1807                                                  Forest Hills
## 1808                                                     Rochester
## 1809                                                     Smithtown
## 1810                                                      St James
## 1811                                                     Hempstead
## 1812                                                         Bronx
## 1813                                              Saratoga Springs
## 1814                                               North Tonawanda
## 1815                                                      Brooklyn
## 1816                                                     Woodridge
## 1817                                                      New York
## 1818                                                        Groton
## 1819                                                         Bronx
## 1820                                                   Glens Falls
## 1821                                                     Riverhead
## 1822                                                         Bronx
## 1823                                                       Yonkers
## 1824                                                      New York
## 1825                                                    Waddington
## 1826                                               Clifton Springs
## 1827                                                      Brooklyn
## 1828                                                        Albany
## 1829                                                        Albany
## 1830                                               South Fallsburg
## 1831                                                       Hornell
## 1832                                                        Canton
## 1833                                                      New York
## 1834                                                         Bronx
## 1835                                                     Glenville
## 1836                                                        Carmel
## 1837                                                    Wellsville
## 1838                                                      Syracuse
## 1839                                                   Ticonderoga
## 1840                                               Cortlandt Manor
## 1841                                                     Johnstown
## 1842                                                      Brooklyn
## 1843                                                     Bay Shore
## 1844                                                      Brooklyn
## 1845                                                         Bronx
## 1846                                                   Plattsburgh
## 1847                                                     Amsterdam
## 1848                                                        Cohoes
## 1849                                                      Syracuse
## 1850                                                      Syracuse
## 1851                                                     Mt. Kisco
## 1852                                                       Hamburg
## 1853                                                      Brooklyn
## 1854                                                      Kingston
## 1855                                                       Bayside
## 1856                                                     Rochester
## 1857                                                      Kingston
## 1858                                                         Bronx
## 1859                                                         Bronx
## 1860                                                         Bronx
## 1861                                                      New York
## 1862                                                         Bronx
## 1863                                                      New York
## 1864                                                         Bronx
## 1865                                                       Windsor
## 1866                                                      Ferndale
## 1867                                                      Brooklyn
## 1868                                                       Buffalo
## 1869                                                      New York
## 1870                                                      New York
## 1871                                                       Yonkers
## 1872                                                     Rochester
## 1873                                                  Green Island
## 1874                                                         Bronx
## 1875                                                         Utica
## 1876                                                     Lancaster
## 1877                                                          Rome
## 1878                                                      Brooklyn
## 1879                                                      New York
## 1880                                                       Buffalo
## 1881                                                         Alden
## 1882                                                        Albany
## 1883                                                     Rochester
## 1884                                                 Spring Valley
## 1885                                                       Edwards
## 1886                                                   Garden City
## 1887                                                     Watertown
## 1888                                                     Smithtown
## 1889                                              South Ozone Park
## 1890                                                      Woodbury
## 1891                                                      Endicott
## 1892                                                        Candor
## 1893                                                  Hudson Falls
## 1894                                                     Boonville
## 1895                                                          Troy
## 1896                                                        Wilton
## 1897                                                      New York
## 1898                                                 Williamsville
## 1899                                                      New York
## 1900                                                  Johnson City
## 1901                                                     Liverpool
## 1902                                                      New York
## 1903                                                       Jamaica
## 1904                                                      Penn Yan
## 1905                                                        Morris
## 1906                                                      New York
## 1907                                                      Brooklyn
## 1908                                                        Pomona
## 1909                                                      New York
## 1910                                                        Monsey
## 1911                                                       Liberty
## 1912                                                        Vestal
## 1913                                                      New York
## 1914                                                      Flushing
## 1915                                                       Massena
## 1916                                                 East Setauket
## 1917                              Suite 100                 Latham
## 1918                                                         Bronx
## 1919                                                    Rensselaer
## 1920                                                  Orchard Park
## 1921                                                     Patchogue
## 1922                                                    Stonybrook
## 1923                                                      Brooklyn
## 1924                                                 Staten Island
## 1925                                                   Glens Falls
## 1926                                                      Brooklyn
## 1927                                                         Depew
## 1928                                                       Warwick
## 1929                                                      New York
## 1930                                                        Elmira
## 1931                                                 New Hyde Park
## 1932                                                      New York
## 1933                                                      New York
## 1934                                                      Flushing
## 1935                                                     Rochester
## 1936                                                      Syracuse
## 1937                                                      Brooklyn
## 1938                                                      New York
## 1939                                                     Getzville
## 1940                                                    Binghamton
## 1941                                                      Endicott
## 1942                                                      Herkimer
## 1943                                                  Grand Island
## 1944                                                       Bolivar
## 1945                                                 Williamsville
## 1946                                                         Bronx
## 1947                                                    Great Neck
## 1948                                                     Hempstead
## 1949                                                       Buffalo
## 1950                                                      New York
## 1951                                                    Queensbury
## 1952                                                       Machias
## 1953                                                  Orchard Park
## 1954                                                  Mount Vernon
## 1955                                                        Malone
## 1956                                                      New York
## 1957                                                       Buffalo
## 1958                                                        Elmont
## 1959                                                        Elmira
## 1960                                                     Liverpool
## 1961                                                      New York
## 1962                                                   West Seneca
## 1963                                               Lake Ronkonkoma
## 1964                                                        Albany
## 1965                                                   Garden City
## 1966                                                       Buffalo
## 1967                                                      New York
## 1968                                                         Utica
## 1969                                                        Vestal
## 1970                                                  New Rochelle
## 1971                                                         Bronx
## 1972                                                      Herkimer
## 1973                                                      Brooklyn
## 1974                                                    Massapequa
## 1975                                                      Brooklyn
## 1976                                                    Watervliet
## 1977                                                        Albany
## 1978                                                      Brooklyn
## 1979                                                        Albany
## 1980                                                   Schenectady
## 1981                                                    Middletown
## 1982                             Road North                  Bronx
## 1983                                                      Waterloo
## 1984                                                   West Seneca
## 1985                                                        Ithaca
## 1986                                                        Albany
## 1987                                                         Bronx
## 1988                                                       Warwick
## 1989                                                      Brooklyn
## 1990                                                     Wyandanch
## 1991                                                   Glens Falls
## 1992                                                         Utica
## 1993                                                      Harrison
## 1994                                                       Yonkers
## 1995                                                        Armonk
## 1996                                                     Watertown
## 1997                                                        Hudson
## 1998                                                 New Hyde Park
## 1999                                                  White Plains
## 2000                                                     Rochester
## 2001                                                 Staten Island
## 2002                                                      New York
## 2003                                                       Buffalo
## 2004                                                      Wallkill
## 2005                                                      Catskill
## 2006                                                      Brooklyn
## 2007                                                      New York
## 2008                                                        Albion
## 2009                                                 East Setauket
## 2010                                                      New City
## 2011                                                      Fishkill
## 2012                                                      Flushing
## 2013                                                      Brooklyn
## 2014                                                      Fishkill
## 2015                                                    Binghamton
## 2016                                                          Avon
## 2017                                                    Monticello
## 2018                                                          Troy
## 2019                                                     Pittsford
## 2020                                              Croton on Hudson
## 2021                                                     Niskayuna
## 2022                                                 Staten Island
## 2023                                                 Niagara Falls
## 2024                                                     Rochester
## 2025                                                     Uniondale
## 2026                                                 Niagara Falls
## 2027                                                      Brooklyn
## 2028                                                      Brooklyn
## 2029                                                       Belmont
## 2030                                                      New York
## 2031                                                     Granville
## 2032                                                         Bronx
## 2033                                                      Penfield
## 2034                                                     Salamanca
## 2035                                                      Brooklyn
## 2036                                                    Northville
## 2037                                                        Geneva
## 2038                                                      Brooklyn
## 2039                                                  Far Rockaway
## 2040                                                         Bronx
## 2041                                                 Staten Island
## 2042                                                      Hamilton
## 2043                                                     Bay Shore
## 2044                                                         Bronx
## 2045                                                 New Hyde Park
## 2046                                                      New York
## 2047                                                      New York
## 2048                                                      Brooklyn
## 2049                                                      Kingston
## 2050                                                     Rochester
## 2051                                                        Hudson
## 2052                                                          Rome
## 2053                                                      New York
## 2054                                                     Manhasset
## 2055                                                     Liverpool
## 2056                              Suite 100              Rochester
## 2057                                                         Chili
## 2058                     2nd floor, Suite B             Horseheads
## 2059                                                      Brooklyn
## 2060                                                      Syracuse
## 2061                                                      Glendale
## 2062                                                       Amherst
## 2063                                                         Bronx
## 2064                                                      New York
## 2065                                                   Chittenango
## 2066                                                 Niagara Falls
## 2067                                                      Brooklyn
## 2068                                                      New York
## 2069                                                         Bronx
## 2070                                                      New York
## 2071                                                 Staten Island
## 2072                                                  Far Rockaway
## 2073                                                      Ossining
## 2074                                                      Brooklyn
## 2075                                                      Ossining
## 2076                                                       Syosset
## 2077                                                      Woodside
## 2078                                                     Rochester
## 2079                                                       Macedon
## 2080                                                      New York
## 2081                                                        Malone
## 2082                                                      New York
## 2083                                                     Jamestown
## 2084                                                   Glens Falls
## 2085                                                       Buffalo
## 2086                                                     Salamanca
## 2087                                                      Richford
## 2088                                                        Lisbon
## 2089                                                      Brooklyn
## 2090                                                      Westbury
## 2091                                                   Warrensburg
## 2092                                                         Bronx
## 2093                                                        Albany
## 2094                                                         Bronx
## 2095                                                      New York
## 2096                                                         Lyons
## 2097                                                       Webster
## 2098                                                   No Bellmore
## 2099                                                     Rochester
## 2100                                                   Middleburgh
## 2101                                                  Poughkeepsie
## 2102                                                  Far Rockaway
## 2103                                                   North Creek
## 2104                                                    Dolgeville
## 2105                                                     Rochester
## 2106                                                    Long Beach
## 2107                                                      Brooklyn
## 2108                                                    Binghamton
## 2109                                                        Canton
## 2110                                                         Bronx
## 2111                                                    Haverstraw
## 2112                                                      New York
## 2113                                                         Bronx
## 2114                                                      Marathon
## 2115                                                      Syracuse
## 2116                                                 East New York
## 2117                                                       Norwich
## 2118                                                       Oneonta
## 2119                                                 East Syracuse
## 2120                                                  New Rochelle
## 2121                                                      Woodside
## 2122                                                        Auburn
## 2123                                                        Albany
## 2124                                                      New York
## 2125                                                      Brooklyn
## 2126                                                      Penfield
## 2127                                                     Smithtown
## 2128                                                   Schenectady
## 2129                                                      Brooklyn
## 2130                                                  Mount Vernon
## 2131                                                     Champlain
## 2132                                                      Brooklyn
## 2133                                                        Medina
## 2134                                                       Dunkirk
## 2135                                                      Kingston
## 2136                                                     Millbrook
## 2137                                                    New Cassel
## 2138                                                      Brooklyn
## 2139                                                      Lewiston
## 2140                                                      Carthage
## 2141                                                      New York
## 2142                                                  Slingerlands
## 2143                                                      Brooklyn
## 2144                                                       Norwich
## 2145                                                      New York
## 2146                                                 East Setauket
## 2147                                                 Niagara Falls
## 2148                                                      Waterloo
## 2149                                                 North Hornell
## 2150                                                        Warsaw
## 2151                                                  Johnson City
## 2152                                                      Newburgh
## 2153                                                      Brooklyn
## 2154                                                     Getzville
## 2155                                                         Olean
## 2156                                                   Caroga Lake
## 2157                                                  Poughkeepsie
## 2158                                                      Brooklyn
## 2159                                                    Binghamton
## 2160                                                         Utica
## 2161                                                     Brentwood
## 2162                                                      Ossining
## 2163                                                 Niagara Falls
## 2164                                                        Carmel
## 2165                                                      Brooklyn
## 2166                                                      Brooklyn
## 2167                                                     Smithtown
## 2168                                                       Waverly
## 2169                                                  Gloversville
## 2170                                                       Commack
## 2171                                                  Green Island
## 2172                                                      New York
## 2173                                                         Bronx
## 2174                                                        Auburn
## 2175                                                      Brooklyn
## 2176                                                     Johnstown
## 2177                                                        Sidney
## 2178                                                     Greenlawn
## 2179                                                         Bronx
## 2180                                                     Rochester
## 2181                                                       Hornell
## 2182                                                      Brooklyn
## 2183                                                 New Hyde Park
## 2184                                                      Brooklyn
## 2185                                                      Oriskany
## 2186                                                      Brooklyn
## 2187                                                       Jamaica
## 2188                                                          Troy
## 2189                                                    Binghamton
## 2190                                                     Rochester
## 2191                                                     Rochester
## 2192                                                      Newburgh
## 2193                                                      Brooklyn
## 2194                                                      Penfield
## 2195                                                     Rochester
## 2196                                                 Campbell Hall
## 2197                                                      Fishkill
## 2198                                                   Evans Mills
## 2199                                                      Flushing
## 2200                                                  Little Falls
## 2201                                                      New York
## 2202                                                      Brooklyn
## 2203                                                     Dansville
## 2204                                                   Indian Lake
## 2205                                                      Brooklyn
## 2206                                                    Saugerties
## 2207                                                      New York
## 2208                                                  Far Rockaway
## 2209                                                      New York
## 2210                                                   Stony Brook
## 2211                                                      Hamilton
## 2212                                                      Penfield
## 2213                                                      Highland
## 2214                                                   Plattsburgh
## 2215                                                      Lynbrook
## 2216                                                     Jamestown
## 2217                                                        Dundee
## 2218                                                      Sauquoit
## 2219                                                        Albany
## 2220                                                     Brockport
## 2221                                                      Houghton
## 2222                                                      Brooklyn
## 2223                                                       Buffalo
## 2224                                                      Highland
## 2225                                                      Philmont
## 2226                                                      Brooklyn
## 2227                                                  Saranac Lake
## 2228                                                         Bronx
## 2229                                                         Bronx
## 2230                                                      New York
## 2231                                                      Brooklyn
## 2232                                                      Valhalla
## 2233                                                  Poughkeepsie
## 2234                                                  Port Chester
## 2235                                                      New York
## 2236                                                     Oceanside
## 2237                                                      New York
## 2238                                                    Binghamton
## 2239                                                   Guilderland
## 2240                                                   Kew Gardens
## 2241                                                      Carthage
## 2242                                                   Port Jervis
## 2243                                                         Bronx
## 2244                                                     Greenwich
## 2245                                                      Cortland
## 2246                                                  New Rochelle
## 2247                                                          Troy
## 2248                                                 Williamsville
## 2249                                                       Batavia
## 2250                                                      Flushing
## 2251                                                        Beacon
## 2252                                                         Bronx
## 2253                                                   Southampton
## 2254                                                    Middletown
## 2255                                                      Brooklyn
## 2256                                                       Yonkers
## 2257                                                      Brooklyn
## 2258                                                 Staten Island
## 2259                                                      Brooklyn
## 2260                                                      New York
## 2261                                                      Brooklyn
## 2262                                                     Worcester
## 2263                                                     Rochester
## 2264                                                       Buffalo
## 2265                                                      New York
## 2266                                                 Williamsville
## 2267                                                    Great Neck
## 2268                                                     Rochester
## 2269                                                      Brooklyn
## 2270                                                         Bronx
## 2271                                                      Cornwall
## 2272                                                         Bronx
## 2273                                                 New Hyde Park
## 2274                                                      Kingston
## 2275                                                  Poughkeepsie
## 2276                                                    Binghamton
## 2277                                                      New York
## 2278                                                       Jamaica
## 2279                                                         Bronx
## 2280                                                         Bronx
## 2281                                                      Brooklyn
## 2282                                                    Waterville
## 2283                                                       Oneonta
## 2284                                                         Bronx
## 2285                                                         Utica
## 2286                                                      New City
## 2287                                                        Albany
## 2288                                                   Eastchester
## 2289                                                         Bronx
## 2290                                                      New York
## 2291                                                   Plattsburgh
## 2292                                                     Riverhead
## 2293                                                      New York
## 2294                                                      Brooklyn
## 2295                                                         Olean
## 2296                                               Jackson Heights
## 2297                                                       Buffalo
## 2298                                                      Brooklyn
## 2299                                                 Niagara Falls
## 2300                                                         Bronx
## 2301                                                   Southampton
## 2302                                                    Montgomery
## 2303                                                      New York
## 2304                                                      Brooklyn
## 2305                                                   East Meadow
## 2306                                        Port Jefferson Station
## 2307                                                      New York
## 2308                                                         Bronx
## 2309                                                       Buffalo
## 2310                                                 Williamsville
## 2311                                                       Buffalo
## 2312                                                       Buffalo
## 2313                                                       Amherst
## 2314                                                      New York
## 2315                                                  Lake Success
## 2316                                                     Rochester
## 2317                                                          Rome
## 2318                                                  Clifton Park
## 2319                                                   Glens Falls
## 2320                                                   Canandaigua
## 2321                                                   Schenectady
## 2322                                                   Plattsburgh
## 2323                                                  White Plains
## 2324                                                        Albany
## 2325                                                      Brooklyn
## 2326                                                        Albany
## 2327                                                       Jamaica
## 2328                                                       Webster
## 2329                                                   Cooperstown
## 2330                   305 East 47th Street               New York
## 2331                                                     Hyde Park
## 2332                                                         Bronx
## 2333                                                  Lake Success
## 2334                                                         Bronx
## 2335                                                          Rome
## 2336                                                        Albany
## 2337                                                    Kings Park
## 2338                                                     Rego Park
## 2339                                                 Elizabethtown
## 2340                                                         Olean
## 2341                                                         Bronx
## 2342                                                  Far Rockaway
## 2343                                                    Gouverneur
## 2344                                                      Fishkill
## 2345                                                       Oneonta
## 2346                                                     Rochester
## 2347                                                       Florida
## 2348                                                 Margaretville
## 2349                                                      Penn Yan
## 2350                                                      Lockport
## 2351                                                 Staten Island
## 2352                                                         Bronx
## 2353                                                 Valley Stream
## 2354                                                        Oswego
## 2355                                                         Malta
## 2356                                                 Bedford Hills
## 2357                                                       Pawling
## 2358                                                      Newburgh
## 2359                                                     Rochester
## 2360                                                      Brooklyn
## 2361                                                       Buffalo
## 2362                                              Briarcliff Manor
## 2363                                                       Potsdam
## 2364                                                       Hornell
## 2365                                                       Webster
## 2366                                                      Brooklyn
## 2367                                                      Freeport
## 2368                                                      Brooklyn
## 2369                                                      Lowville
## 2370                                                 Staten Island
## 2371                                              Livingston Manor
## 2372                                                   Canajoharie
## 2373                                                      Brewster
## 2374                                                 Staten Island
## 2375                                                      Brooklyn
## 2376                                                       Honeoye
## 2377                                                     Rochester
## 2378                                                     Rochester
## 2379                                                     Greenport
## 2380                                                 East Syracuse
## 2381                                                  Painted Post
## 2382                                                  Johnson City
## 2383                                                        Oswego
## 2384                                                      Brooklyn
## 2385                                                      New York
## 2386                                                      Brooklyn
## 2387                                                    Huntington
## 2388                                                     Rochester
## 2389                                                       Milford
## 2390                                                     Liverpool
## 2391                                                      Brooklyn
## 2392                                                         Bronx
## 2393                                                 Staten Island
## 2394                                                      New York
## 2395                                                      New York
## 2396                                                      Herkimer
## 2397                                                          Rome
## 2398                                                      Lewiston
## 2399                                                      Syracuse
## 2400                  176-60 Union Turnpike               Flushing
## 2401                                                  Far Rockaway
## 2402                                                    Middletown
## 2403                                                         Bronx
## 2404                                                       Buffalo
## 2405                                                        Newark
## 2406                                                    Mannsville
## 2407                                                  Port Chester
## 2408                                                  Lake Katrine
## 2409                                                         Bronx
## 2410                                                      New York
## 2411                                                     Rochester
## 2412                                                Queens Village
## 2413                                                  Poughkeepsie
## 2414                                                        Somers
## 2415                                                     Rochester
## 2416                                                     Sherburne
## 2417                                                         Utica
## 2418                                                         Bronx
## 2419                                                         Bronx
## 2420                                                  New Hartford
## 2421                                                      Brooklyn
## 2422                                                     Rochester
## 2423                                                        Albany
## 2424                                                     Lakeville
## 2425                                                     Sherburne
## 2426                                                       Jamaica
## 2427                                              Croton On Hudson
## 2428                                                   East Aurora
## 2429                                                       Jamaica
## 2430                                                   Schenectady
## 2431                                                         Bronx
## 2432                                                        Latham
## 2433                                                     Rochester
## 2434                                                     Watertown
## 2435                                                      Brooklyn
## 2436                                                  Hampton Bays
## 2437                                                         Bronx
## 2438                                                     Greenport
## 2439                                                      Cortland
## 2440                                                       Webster
## 2441                                                      Brooklyn
## 2442                                                   Stony Brook
## 2443                                                      Flushing
## 2444                                                          Ovid
## 2445                                                      Brooklyn
## 2446                                                         Owego
## 2447                                                        Elmira
## 2448                                                       Phoenix
## 2449                                                     Rochester
## 2450                                                    Ronkonkoma
## 2451                                                         Fonda
## 2452                                                   Kew Gardens
## 2453                                                    West Islip
## 2454                                                        Ithaca
## 2455                                                          Troy
## 2456                                                      Brooklyn
## 2457                                                       Amherst
## 2458                                                        Cohoes
## 2459                                                     Patchogue
## 2460                                                  New Hartford
## 2461                                                         Utica
## 2462                                                       Yonkers
## 2463                                                        Albany
## 2464                                                 Staten Island
## 2465                                                     New Paltz
## 2466                                                         Bronx
## 2467                                                      Brooklyn
## 2468                                                     Rochester
## 2469                                                     Patchogue
## 2470                                                  Mount Vernon
## 2471                                                 Central Islip
## 2472                                                      New York
## 2473                                                      Brooklyn
## 2474                                                        Elmira
## 2475                                                         Malta
## 2476                                                  Port Chester
## 2477                                                        Canton
## 2478                                                      New York
## 2479                                                      New York
## 2480                                                     Riverhead
## 2481                                                      Syracuse
## 2482                                                      New York
## 2483                                                        Vestal
## 2484                                                  Lake Katrine
## 2485                                                         Bronx
## 2486                                                   Ticonderoga
## 2487                                                      Brooklyn
## 2488                                                        Oneida
## 2489                                                         Otego
## 2490                                                       Norwich
## 2491                                                     Rochester
## 2492                                                      Brooklyn
## 2493                                                     Rhinebeck
## 2494                                                         Utica
## 2495                                                       Yonkers
## 2496                                                 Staten Island
## 2497                                                 East Syracuse
## 2498                                                      Waterloo
## 2499                                                        Dundee
## 2500                                                     Liverpool
## 2501                                                  New Hartford
## 2502                                                     Jamestown
## 2503                                                    West Islip
## 2504                                                     Johnstown
## 2505                                                       Geneseo
## 2506                                                        Elmira
## 2507                                                         Bronx
## 2508                                                        Ithaca
## 2509                                                      Newburgh
## 2510                                                      Brooklyn
## 2511                                                         Owego
## 2512                                                         Bronx
## 2513                                                     Patchogue
## 2514                                                        Newark
## 2515                                                     Liverpool
## 2516                                                      New York
## 2517                                                 Rockaway Park
## 2518                                                        Albany
## 2519                                                     Rochester
## 2520                                                   Stony Brook
## 2521                                                      New York
## 2522                                                      Sayville
## 2523                                                      Brooklyn
## 2524                                                      Fishkill
## 2525                                                        Carmel
## 2526                   4238 State Highway 8             New Berlin
## 2527                                                    Great Neck
## 2528                                                      Brooklyn
## 2529                                                      Cortland
## 2530                                                 Brasher Falls
## 2531                                              Croton-On-Hudson
## 2532                                                      New York
## 2533                                                     Rochester
## 2534                                                        Amenia
## 2535                                                       Buffalo
## 2536                                                        Canton
## 2537                                                       Buffalo
## 2538                                                      Brewster
## 2539                                                      New York
## 2540                                                      New York
## 2541                                                       Jamaica
## 2542                                                      Flushing
## 2543                                                   Lake Placid
## 2544                                                      Brooklyn
## 2545                                                       Norwich
## 2546                                                        Greece
## 2547                                                         Bronx
## 2548                                                     Rochester
## 2549                                                   Shortsville
## 2550                                                      Brooklyn
## 2551                                                        Cohoes
## 2552                                                     Amsterdam
## 2553                                                   Dobbs Ferry
## 2554                                                     Roosevelt
## 2555                                                      Syracuse
## 2556                                                     Watertown
## 2557                                                  Howard Beach
## 2558                                                     Rochester
## 2559                                                      New York
## 2560                                                    Chautauqua
## 2561                                                      New York
## 2562                                                       Baldwin
## 2563                                                      New York
## 2564                                                         Utica
## 2565                                                     Niskayuna
## 2566                                                      Brooklyn
## 2567                                                          Troy
## 2568                                                      Brooklyn
## 2569                                                  Far Rockaway
## 2570                                                      Kingston
## 2571                                                      Brooklyn
## 2572                                                       Amherst
## 2573                                                        Oneida
## 2574                                                        Purdys
## 2575                                                     Rochester
## 2576                                                      Ossining
## 2577                                                        Vestal
## 2578                                                       Oneonta
## 2579                                                      Brooklyn
## 2580                                                 Niagara Falls
## 2581                                                       Jamaica
## 2582                                                      Brooklyn
## 2583                                                       Kenmore
## 2584                                                     Rochester
## 2585                                                      New York
## 2586                                                  Adams Center
## 2587                                                     Rochester
## 2588                                                  White Plains
## 2589                                                          Troy
## 2590                                                         Bronx
## 2591                                                         Bronx
## 2592                                                      Marathon
## 2593                                                         Olean
## 2594                                                         Bronx
## 2595                                                         Utica
## 2596                                                        Oneida
## 2597                                                      Ossining
## 2598                                                 Staten Island
## 2599                                                     Plainview
## 2600                                                       Yonkers
## 2601                                                         Bronx
## 2602                                                  Poughkeepsie
## 2603                                                        Somers
## 2604                                                         Bronx
## 2605                                                   Schenectady
## 2606                                                     Rochester
## 2607                                                        Albany
## 2608                                                      Lakewood
## 2609                                                  Cape Vincent
## 2610                                                  Poughkeepsie
## 2611                                                     Tarrytown
## 2612                                                      Brooklyn
## 2613                                                         Bronx
## 2614                                                     Patchogue
## 2615                                              Rockville Centre
## 2616                                                         Ilion
## 2617                                                       Jamaica
## 2618                                                 East Setauket
## 2619                                                         Olean
## 2620                                                     Riverhead
## 2621                                                     Johnstown
## 2622                                                      New York
## 2623                                                     Rochester
## 2624                                              Saratoga Springs
## 2625                                                      Brooklyn
## 2626                                                       Massena
## 2627                                                     Rochester
## 2628                                                   Plattsburgh
## 2629                                                         Bronx
## 2630                                                      Brooklyn
## 2631                                                       Buffalo
## 2632                                                     Johnstown
## 2633                                              Long Island City
## 2634                                                     Johnstown
## 2635                                                       Endwell
## 2636                                                         Bronx
## 2637                                                     Rochester
## 2638                                                  Johnson City
## 2639                                                  Seneca Falls
## 2640                                                 Spring Valley
## 2641                                                         Islip
## 2642                                                         Bronx
## 2643                                                      Cortland
## 2644                                                     Rochester
## 2645                                                        Newark
## 2646                                                        Albion
## 2647                                                     Watertown
## 2648                                                      Brooklyn
## 2649                                                    Amityville
## 2650                                                        Goshen
## 2651                                                      Brooklyn
## 2652                                                North Bellmore
## 2653                                                       Mineola
## 2654                                                        Oneida
## 2655                                                     Hauppauge
## 2656                                                      Brooklyn
## 2657                                                        Auburn
## 2658                                                        Bergen
## 2659                                                       Norwich
## 2660                                                      Newburgh
## 2661                                                 Central Islip
## 2662                                                         Bronx
## 2663                                                   Schenectady
## 2664                                                     Rochester
## 2665                                                  Lake Success
## 2666                                                     Johnstown
## 2667                                                   Garden City
## 2668                                                    Binghamton
## 2669                                                      Fishkill
## 2670                                                Queens Village
## 2671                                                      New York
## 2672                                                         Utica
## 2673                                                     Hauppauge
## 2674                                                        Warsaw
## 2675                                                    East Hills
## 2676                                                        Monsey
## 2677                                                        Albion
## 2678                                                    Binghamton
## 2679                                                       Wolcott
## 2680                                                         Olean
## 2681                                                  Gloversville
## 2682                                                       Oneonta
## 2683                                                       Yonkers
## 2684                                                        Malone
## 2685                                                      Brooklyn
## 2686                                                      Kingston
## 2687                                                 Fresh Meadows
## 2688                                                      Brooklyn
## 2689                                                       Buffalo
## 2690                                                      New York
## 2691                                                      New York
## 2692                                                      New York
## 2693                                                     Rochester
## 2694                                                     Ridgewood
## 2695                                                      Brooklyn
## 2696                                                         Bronx
## 2697                                                       Oneonta
## 2698                                                      Brooklyn
## 2699                                                 Baldwinsville
## 2700                                                      Bellport
## 2701                                                     Granville
## 2702                                                      Brooklyn
## 2703                                                         Turin
## 2704                                                      Montrose
## 2705                                                      New York
## 2706                                                       Mineola
## 2707                                                        Albany
## 2708                                                        Goshen
## 2709                                                        Albany
## 2710                                                     Glen Cove
## 2711                                                     Bay Shore
## 2712                                                      New York
## 2713                                                      New York
## 2714                                                     Rhinebeck
## 2715                                                   Warrensburg
## 2716                                                  Little Falls
## 2717                                                  White Plains
## 2718                                                         Bronx
## 2719                                                      New York
## 2720                                                     Rochester
## 2721                                               Center Moriches
## 2722                                                    Rensselaer
## 2723                                                     Rhinebeck
## 2724                                                 Richmond Hill
## 2725                                                     Glen Cove
## 2726                                                     Westfield
## 2727                                                      New York
## 2728                                                 Brasher Falls
## 2729                                                         Bronx
## 2730                                                  Poughkeepsie
## 2731                                                     Greenvale
## 2732                                                     Glen Cove
## 2733                                                      Penn Yan
## 2734                                                      New York
## 2735                                                        Geneva
## 2736                                                         Bronx
## 2737                                                West Hempstead
## 2738                                                 East Syracuse
## 2739                                                     Niskayuna
## 2740                                                  Clifton Park
## 2741                                                      Syracuse
## 2742                                                       Buffalo
## 2743                                             Richfield Springs
## 2744                                                 Staten Island
## 2745                                                      New York
## 2746                                                   Schenectady
## 2747                              7th Floor               New York
## 2748                                                      Brooklyn
## 2749                                                      Brooklyn
## 2750                                                      Brooklyn
## 2751                                                      Lowville
## 2752                                                       Yonkers
## 2753                                                      Purchase
## 2754                                                      New York
## 2755                                                        Newark
## 2756                                                        Hudson
## 2757                                                 New Hyde Park
## 2758                                                        Ithaca
## 2759                                                         Bronx
## 2760                                                     Boonville
## 2761                                                      Flushing
## 2762                                                      Flushing
## 2763                                                   Cheektowaga
## 2764                                                         Bronx
## 2765                                                       Livonia
## 2766                                                    Binghamton
## 2767                                                   Cheektowaga
## 2768                                                       Buffalo
## 2769                                                     Barneveld
## 2770                                                  White Plains
## 2771                                                  Old Westbury
## 2772                                                      New York
## 2773                                                         Bronx
## 2774                                                       Shirley
## 2775                                                        Geneva
## 2776                                                      New York
## 2777                                                      Flushing
##      Facility.State Facility.Zip.Code Facility.Phone.Number Facility.Fax.Number
## 1          New York             13850            6077985692                  NA
## 2          New York             13413            3157973114                  NA
## 3          New York             13205            3154751641                  NA
## 4          New York             14569            5857868151                  NA
## 5          New York             14895            5855934400                  NA
## 6          New York             14221            7166323700                  NA
## 7          New York             11530            5168328504                  NA
## 8          New York             14202            7168567500                  NA
## 9          New York             11735            6314656300          6314656533
## 10         New York             10003            2125986570                  NA
## 11         New York             11530            5162273254                  NA
## 12         New York             13421            3153612345                  NA
## 13         New York             11220                    NA                  NA
## 14         New York             13760                    NA                  NA
## 15         New York             14218            7168289500                  NA
## 16         New York             11971                    NA                  NA
## 17         New York             14214            7168984449                  NA
## 18         New York             10019            2123140600                  NA
## 19         New York             12518            8455627711          8455627996
## 20         New York             12986            5183597000                  NA
## 21         New York             13441            3155335747          3155335881
## 22         New York             14760            7167011700                  NA
## 23         New York             14420                    NA                  NA
## 24         New York             12901                    NA                  NA
## 25         New York             11201                    NA                  NA
## 26         New York             10701                    NA                  NA
## 27         New York             10017                    NA                  NA
## 28         New York             11730                    NA                  NA
## 29         New York             11548                    NA                  NA
## 30         New York             12110                    NA                  NA
## 31         New York             12207            5184654771                  NA
## 32         New York             10463            7185192800                  NA
## 33         New York             11235            7186461900          7186464900
## 34         New York             14845            6077390304          6077960540
## 35         New York             10454            7185791702                  NA
## 36         New York             13440            3153344701                  NA
## 37         New York             13820            6075473070                  NA
## 38         New York             10940            8457036101          8457036201
## 39         New York             12601                    NA                  NA
## 40         New York             10460            8888331002                  NA
## 41         New York             11201            2124424064                  NA
## 42         New York             14304            7162984195                  NA
## 43         New York             11434            7183416711                  NA
## 44         New York             11372            7184767643                  NA
## 45         New York             10607            6318930150                  NA
## 46         New York             13367            3153764500                  NA
## 47         New York             11550            5165721322          5164850264
## 48         New York             12180                    NA                  NA
## 49         New York             11237            7184555500                  NA
## 50         New York             10601                    NA                  NA
## 51         New York             11220            7186307300                  NA
## 52         New York             10461            7184307359                  NA
## 53         New York             10954            8456233946                  NA
## 54         New York             11215                    NA                  NA
## 55         New York             10305            7182269515                  NA
## 56         New York             14224            7166670089                  NA
## 57         New York             14424            5853964340          5853964414
## 58         New York             10453                    NA                  NA
## 59         New York             10461            7185972255          7185970272
## 60         New York             14221            7166335400          7166336404
## 61         New York             14510            5853252280          5853252293
## 62         New York             13341                    NA                  NA
## 63         New York             10510            9143661000                  NA
## 64         New York             11205            7182607565                  NA
## 65         New York             11706            6312248787                  NA
## 66         New York             14094            7164391689                  NA
## 67         New York             14513            3153328041          3153328150
## 68         New York             11530            5163213400                  NA
## 69         New York             10025            2125234295                  NA
## 70         New York             12414                    NA                  NA
## 71         New York             12601            8454548500                  NA
## 72         New York             10598                    NA                  NA
## 73         New York             13069            3155923500          3155923501
## 74         New York             14744            7163756978                  NA
## 75         New York             10595            9144937000                  NA
## 76         New York             10306            7189870128                  NA
## 77         New York             14203            7168455101                  NA
## 78         New York             12932                    NA                  NA
## 79         New York             11550            5165654800          5165654966
## 80         New York             14620            5852755658          5852755119
## 81         New York             11223            7183368855                  NA
## 82         New York             11201                    NA                  NA
## 83         New York             10466                    NA                  NA
## 84         New York             11417            5164655203                  NA
## 85         New York             14611            5854368123                  NA
## 86         New York             10461            7188630575                  NA
## 87         New York             12401                    NA                  NA
## 88         New York             11777            6314731320                  NA
## 89         New York             11229                    NA                  NA
## 90         New York             10021            2124343365                  NA
## 91         New York             11719            6312868100          6312868272
## 92         New York             13214            3154469111                  NA
## 93         New York             13654                    NA                  NA
## 94         New York             10956            8456782000          8455173494
## 95         New York             10462            7184309800                  NA
## 96         New York        12828-1811            5188248630                  NA
## 97         New York             13676            3152654065                  NA
## 98         New York             11379            7185654200                  NA
## 99         New York             13502            3156248900          3157356027
## 100        New York             14619            5852352250          5852350011
## 101        New York             13502                    NA                  NA
## 102        New York             10035                    NA                  NA
## 103        New York             10025            2125234295                  NA
## 104        New York             10977            3478860410                  NA
## 105        New York             10520            9147379000                  NA
## 106        New York             12010            5188421900                  NA
## 107        New York             11747                    NA                  NA
## 108        New York             10458                    NA                  NA
## 109        New York             10036            2122654500                  NA
## 110        New York             10595            9149411710          9149410518
## 111        New York             13035            3156555464                  NA
## 112        New York             11224                    NA                  NA
## 113        New York             10028            2127726667                  NA
## 114        New York             11553            2126392000                  NA
## 115        New York             10550                    NA                  NA
## 116        New York             12518            8454589000                  NA
## 117        New York             14526                    NA                  NA
## 118        New York             12742            8457943300          8457943240
## 119        New York             10453                    NA                  NA
## 120        New York             11733                    NA                  NA
## 121        New York             10039                    NA                  NA
## 122        New York             13066            3153297989                  NA
## 123        New York             12110            5188316349                  NA
## 124        New York             10456            7189018800                  NA
## 125        New York             14830            6079624686          6079627520
## 126        New York             11223            7186450300                  NA
## 127        New York             14810            6077768500                  NA
## 128        New York             12110            5187867000                  NA
## 129        New York             14865                    NA                  NA
## 130        New York             10002            2122335372                  NA
## 131        New York             11369            7182058100                  NA
## 132        New York             11427            7184707621                  NA
## 133        New York             12208            5182623474          5182623398
## 134        New York             10595            9144938778                  NA
## 135        New York        12801-4349            5187985274                  NA
## 136        New York             13114                    NA                  NA
## 137        New York             11101            2128091011                  NA
## 138        New York             11787                    NA                  NA
## 139        New York             14489            3159465749                  NA
## 140        New York             10466            7187988900                  NA
## 141        New York             14901            6073241124          6077343392
## 142        New York             13088            3154522014                  NA
## 143        New York             12206            5185333420                  NA
## 144        New York             13492            3157369337                  NA
## 145        New York             12541            5188513041                  NA
## 146        New York             14830            6079620102          6079620140
## 147        New York             13820            6074325680                  NA
## 148        New York             14611            5857535071          5857535188
## 149        New York             14621            7163365040                  NA
## 150        New York             13502            3156245640          3156245735
## 151        New York             13601                    NA                  NA
## 152        New York             11777            6314735400          6314737182
## 153        New York             13219            3154882951                  NA
## 154        New York             10022            6468880450                  NA
## 155        New York             10009            2126777999                  NA
## 156        New York             10940            8453438838                  NA
## 157        New York             14209                    NA                  NA
## 158        New York             10469            7185153500                  NA
## 159        New York             11210            7182539355                  NA
## 160        New York             10467                    NA                  NA
## 161        New York             13057                    NA                  NA
## 162        New York             14609            5852881390                  NA
## 163        New York             12180            5182736646          5182730168
## 164        New York             11432            2125452421                  NA
## 165        New York             14020            5853436030                  NA
## 166        New York             12110                    NA                  NA
## 167        New York             13210            3154707371                  NA
## 168        New York             14850            6072744011                  NA
## 169        New York             10458            7189600600                  NA
## 170        New York             12122            6075473169                  NA
## 171        New York             10017            2126618934                  NA
## 172        New York             10573            9149371200                  NA
## 173        New York             10021            2127747532          2125700648
## 174        New York             10035            2123188000                  NA
## 175        New York             13206            3154339999          3152822882
## 176        New York             10013            2122268866                  NA
## 177        New York             10029            2129874422                  NA
## 178        New York             12801            5189262040                  NA
## 179        New York             11211            7183871800                  NA
## 180        New York             11021            5162333456                  NA
## 181        New York             11768            6312617200                  NA
## 182        New York             11201            7187804651                  NA
## 183        New York             12580            8458894500          8458894309
## 184        New York             13501            3152660614                  NA
## 185        New York             14068            7166393311          7166393309
## 186        New York             11201            7182508000                  NA
## 187        New York             11219            7188513700          7189726120
## 188        New York             14810            6077768500                  NA
## 189        New York             14589                    NA                  NA
## 190        New York             14621            5853425540          5853423539
## 191        New York             11572            5166323000                  NA
## 192        New York             10456            7187164400                  NA
## 193        New York             14075                    NA                  NA
## 194        New York             12180            5182749890                  NA
## 195        New York             11004            7184707764                  NA
## 196        New York             10562            9145021450          9149410993
## 197        New York             13607            3154821229                  NA
## 198        New York             13624            3156862094          3156862821
## 199        New York             11413                    NA                  NA
## 200        New York             12534                    NA                  NA
## 201        New York             11206                    NA                  NA
## 202        New York             12401                    NA                  NA
## 203        New York             10462            7188636200          9145302177
## 204        New York             12866                    NA                  NA
## 205        New York             14895            5855936800                  NA
## 206        New York             13035                    NA                  NA
## 207        New York             11237            7189637101                  NA
## 208        New York             14513            5859223409          5859229489
## 209        New York             10458            7182202020                  NA
## 210        New York             11435            7189479100                  NA
## 211        New York             10457                    NA                  NA
## 212        New York             12203                    NA                  NA
## 213        New York             14214                    NA                  NA
## 214        New York             10029                    NA                  NA
## 215        New York             12801                    NA                  NA
## 216        New York             10458            7184054400                  NA
## 217        New York             12561            8452552930                  NA
## 218        New York             13210            3154645540                  NA
## 219        New York             10454            3472690437          3472690443
## 220        New York             12010                    NA                  NA
## 221        New York             10457            7182945891          7182942468
## 222        New York             11788            5168635100                  NA
## 223        New York             11691            5165624050                  NA
## 224        New York             10007            2127466600                  NA
## 225        New York             10029            2122417005                  NA
## 226        New York             14301            7162050704                  NA
## 227        New York             14227            7166840276                  NA
## 228        New York             11501            5167479480                  NA
## 229        New York             11934            6318788060                  NA
## 230        New York             14456                    NA                  NA
## 231        New York             10011            2123167956                  NA
## 232        New York             12590            4137583088                  NA
## 233        New York             11797            5166223456          5166223450
## 234        New York             10016            2125624132                  NA
## 235        New York             11704            6314224800          6314221562
## 236        New York             14127            7166625001                  NA
## 237        New York             11787            5163604700                  NA
## 238        New York             12078            5187737520                  NA
## 239        New York             12065            6153420410                  NA
## 240        New York             11423                    NA                  NA
## 241        New York             12208            5184541550                  NA
## 242        New York             11550            5169327799          5169321415
## 243        New York             11206            7183369500          7186459300
## 244        New York             10301            7184477800                  NA
## 245        New York             13669            3153949718          3153949810
## 246        New York             14048            7163666710                  NA
## 247        New York             12303            5183466121          5183467512
## 248        New York             14220            7168267000                  NA
## 249        New York             11434            7189457150          7189452596
## 250        New York             10002                    NA                  NA
## 251        New York             12010            5188423100                  NA
## 252        New York             11206            2124424064                  NA
## 253        New York             10469            7183201335                  NA
## 254        New York             12561            8452565910          8452565779
## 255        New York             11772            5163617526                  NA
## 256        New York             14411            5855893225          5855896567
## 257        New York             11203            7187457508          7187457409
## 258        New York             12206            5184892681          5184892532
## 259        New York             12020            5188852288                  NA
## 260        New York             10469            7182315550                  NA
## 261        New York             13903                    NA                  NA
## 262        New York             12701            8454711530          8457964611
## 263        New York             11354                    NA                  NA
## 264        New York             10310            7188166455                  NA
## 265        New York             12203                    NA                  NA
## 266        New York             11219                    NA                  NA
## 267        New York             10461                    NA                  NA
## 268        New York             10022            2126396595          2127946233
## 269        New York             10457            7189603910                  NA
## 270        New York             14424                    NA                  NA
## 271        New York             11570            5165367730          5165364052
## 272        New York             14845            6077398711                  NA
## 273        New York             10532            7184098200                  NA
## 274        New York             14620            5854732200                  NA
## 275        New York             10522            9146936800                  NA
## 276        New York             10456            7189206062                  NA
## 277        New York             13045            6077563646                  NA
## 278        New York             11694            7189456350          7189454640
## 279        New York             13662            3157050101                  NA
## 280        New York             14048            7163661111                  NA
## 281        New York             10029            2122417005                  NA
## 282        New York             14701                    NA                  NA
## 283        New York             10461            7189183422                  NA
## 284        New York             13126            3153495526                  NA
## 285        New York             13350            3158663330                  NA
## 286        New York             14094            7164394417                  NA
## 287        New York             13212            3154223591          3154223597
## 288        New York             13601            3157863770                  NA
## 289        New York             12047            5182715059                  NA
## 290        New York             10025            2122167917                  NA
## 291        New York             14580            5858727359                  NA
## 292        New York             12401                    NA                  NA
## 293        New York             14304            7162158000                  NA
## 294        New York             11385                    NA                  NA
## 295        New York             11203            7186293900                  NA
## 296        New York             10303                    NA                  NA
## 297        New York             13126            3153493545                  NA
## 298        New York             13126            3155984735                  NA
## 299        New York             14701            7164870141          7166648336
## 300        New York             14020            5853452000                  NA
## 301        New York             12550            8452203110          8455342940
## 302        New York             12075                    NA                  NA
## 303        New York             11542            5166740500          5166747546
## 304        New York             13905                    NA                  NA
## 305        New York             13413            3157356484                  NA
## 306        New York             11215                    NA                  NA
## 307        New York             11354            7188885228                  NA
## 308        New York             11553            5165651900          5165655818
## 309        New York             10704            7189202001                  NA
## 310        New York             12401            8453342750          8453313238
## 311        New York             11238            3479152140          7182304185
## 312        New York             12110            5187835381                  NA
## 313        New York             14221            7166306831                  NA
## 314        New York             14760            7163731910                  NA
## 315        New York             11733            6316755399                  NA
## 316        New York             11432                    NA                  NA
## 317        New York             10027            2129873707          2129872018
## 318        New York             12804            5182230155                  NA
## 319        New York             12809            5186388274                  NA
## 320        New York             11757                    NA                  NA
## 321        New York             12553                    NA                  NA
## 322        New York             14141            7165922871                  NA
## 323        New York             10029            2122416500                  NA
## 324        New York             14830            6077374231          6077374447
## 325        New York             14607            5859227900          5859227905
## 326        New York             14214            7168292836                  NA
## 327        New York             11717            6312734700          6312739734
## 328        New York             11224            7182650900                  NA
## 329        New York             14420            5857851000          5853956036
## 330        New York             14223            7168745536                  NA
## 331        New York             11501                    NA                  NA
## 332        New York             11373            7183344000                  NA
## 333        New York             13214            3154645726                  NA
## 334        New York             14424            5853966536                  NA
## 335        New York             11238            7187896262                  NA
## 336        New York             12144            5184772011                  NA
## 337        New York             11211                    NA                  NA
## 338        New York             13502            3156247070          3153160377
## 339        New York             14625            7164643357                  NA
## 340        New York             14433            3159233640                  NA
## 341        New York             13601                    NA                  NA
## 342        New York             11233            7184981001                  NA
## 343        New York             12205                    NA                  NA
## 344        New York             11701            5168541001                  NA
## 345        New York             11432                    NA                  NA
## 346        New York             11797            5168327100                  NA
## 347        New York             13126                    NA                  NA
## 348        New York             11360            7182818800          7182792141
## 349        New York             11691            7188687320                  NA
## 350        New York             10019            2122654500                  NA
## 351        New York             10310                    NA                  NA
## 352        New York             11214            7182835880                  NA
## 353        New York             10453            7187164400                  NA
## 354        New York             14411            7165294429                  NA
## 355        New York        12885-1890            5186232844                  NA
## 356        New York             12501            8453739006                  NA
## 357        New York             13662            3157698950          3157696039
## 358        New York             10452            7184831240                  NA
## 359        New York             14843                    NA                  NA
## 360        New York             10459                    NA                  NA
## 361        New York        13905-1899                    NA                  NA
## 362        New York             13502            3156248600                  NA
## 363        New York             10029            2122417005                  NA
## 364        New York             10928            8452203110          8455342940
## 365        New York             10021            2124342060                  NA
## 366        New York             10940            8453430801          8453431838
## 367        New York             11435                    NA                  NA
## 368        New York             11366                    NA                  NA
## 369        New York             14718                    NA                  NA
## 370        New York             11360            7187051000                  NA
## 371        New York             12871                    NA                  NA
## 372        New York             11215            2124202873                  NA
## 373        New York             11354            3476426220          7185195663
## 374        New York             11423            7184791010                  NA
## 375        New York             12804            5187931000                  NA
## 376        New York             13365            3158232080          3158232139
## 377        New York             10032            2123059532                  NA
## 378        New York             12561            8452550830          8452550855
## 379        New York             14626            5853686700                  NA
## 380        New York             12946            5185233311                  NA
## 381        New York             14620            5852758387                  NA
## 382        New York             12204            5184495352                  NA
## 383        New York             10453            2127162229                  NA
## 384        New York             11694                    NA                  NA
## 385        New York             10032            2123059904                  NA
## 386        New York             10033            2127406334                  NA
## 387        New York             10461            7188926600                  NA
## 388        New York             12020                    NA                  NA
## 389        New York             11217                    NA                  NA
## 390        New York             11375            7187933200                  NA
## 391        New York             11554                    NA                  NA
## 392        New York             14020            5853442580                  NA
## 393        New York        12814-0539            5186232844                  NA
## 394        New York             12180            5182713300                  NA
## 395        New York             10019                    NA                  NA
## 396        New York             10956            8456344974          8456347549
## 397        New York             10022                    NA                  NA
## 398        New York             12110                    NA                  NA
## 399        New York             10994            8453685277          8453685348
## 400        New York             13607            3154822511                  NA
## 401        New York             10032            2129282590                  NA
## 402        New York             10598            9145566266                  NA
## 403        New York             11042            5167348500                  NA
## 404        New York             14043            7168985072                  NA
## 405        New York             12524                    NA                  NA
## 406        New York             14414                    NA                  NA
## 407        New York             10471            7185430283          7185430284
## 408        New York             13040            6077533797                  NA
## 409        New York             13045            6077533774                  NA
## 410        New York             12010            5188420285          5188420376
## 411        New York             13212            3153622060          3153622097
## 412        New York             10543                    NA                  NA
## 413        New York             14214            7168312200                  NA
## 414        New York             10027                    NA                  NA
## 415        New York             14204                    NA                  NA
## 416        New York             11501            5166632300                  NA
## 417        New York             14626                    NA                  NA
## 418        New York             10034            2123046920                  NA
## 419        New York             10520            9149411300          9149412742
## 420        New York             11788            6319516707                  NA
## 421        New York             11249            7182604600                  NA
## 422        New York             12306                    NA                  NA
## 423        New York             14513            5853966770                  NA
## 424        New York             14214            7167062048                  NA
## 425        New York             10303            7188156560          7188156570
## 426        New York             13210            3154735100                  NA
## 427        New York             11217            7186946700          7186946710
## 428        New York             10031                    NA                  NA
## 429        New York             11226            7184628100                  NA
## 430        New York             10032            2123423060          2127467902
## 431        New York             11226            7182840039                  NA
## 432        New York             14621            5859225520                  NA
## 433        New York             11354            7187626100                  NA
## 434        New York             10924                    NA                  NA
## 435        New York             10901            8453685000                  NA
## 436        New York             14727            5859682000                  NA
## 437        New York             14411            7166375319                  NA
## 438        New York             13820            5182547092          5188234006
## 439        New York             14120            7162784301          7162784054
## 440        New York             11226                    NA                  NA
## 441        New York             13219            3154882831                  NA
## 442        New York             11050            5167199400          5167199512
## 443        New York             10990            8459875656                  NA
## 444        New York             14217            7168742600          7168732265
## 445        New York             11207                    NA                  NA
## 446        New York             11901            6312084460                  NA
## 447        New York             11229                    NA                  NA
## 448        New York             11365                    NA                  NA
## 449        New York             11206                    NA                  NA
## 450        New York             11968                    NA                  NA
## 451        New York             11717            6312734500                  NA
## 452        New York             11232            7186307608                  NA
## 453        New York             12180            5182702520                  NA
## 454        New York             10456            7189018779                  NA
## 455        New York             14623            5852755658                  NA
## 456        New York             11590            5168772400                  NA
## 457        New York             10461                    NA                  NA
## 458        New York             10461                    NA                  NA
## 459        New York             11558            5164320300          5164320728
## 460        New York             10601            8005404485                  NA
## 461        New York             11365            7185914010                  NA
## 462        New York             14424            5854235800          5854232806
## 463        New York             10603                    NA                  NA
## 464        New York             12084            5184648100                  NA
## 465        New York             13440            3153393210                  NA
## 466        New York             13656                    NA                  NA
## 467        New York             12309            5182431313                  NA
## 468        New York             10607            9144287876                  NA
## 469        New York             11776            5164731320                  NA
## 470        New York             10021            2127467000                  NA
## 471        New York             13811                    NA                  NA
## 472        New York             14215            7168985544                  NA
## 473        New York             10451            7182920100                  NA
## 474        New York             13637            3156294525          3156295751
## 475        New York             10002            2126731122                  NA
## 476        New York             11021            5164658500                  NA
## 477        New York             11230            7184341444          7184341445
## 478        New York             13690            3158483351                  NA
## 479        New York             12937                    NA                  NA
## 480        New York             14608                    NA                  NA
## 481        New York             11435            2123584119                  NA
## 482        New York             10452            7185388343                  NA
## 483        New York             13790            6077299206                  NA
## 484        New York             10924            8452949708                  NA
## 485        New York             12065            5183711400                  NA
## 486        New York             14626            7162250950                  NA
## 487        New York             11434                    NA                  NA
## 488        New York             11203                    NA                  NA
## 489        New York             10011            2125441860                  NA
## 490        New York             13088            6074610209          6074610298
## 491        New York             11777            6314733877          6314733091
## 492        New York             10977            8453549300          8453549448
## 493        New York             12901                    NA                  NA
## 494        New York             14895            5855931100                  NA
## 495        New York             12157            5182957946                  NA
## 496        New York             10011                    NA                  NA
## 497        New York             11228            7182704293          7182706382
## 498        New York             11040            5163275555                  NA
## 499        New York             10463            7185548801          7184327296
## 500        New York             10459            3474077103                  NA
## 501        New York             11542            5166710858          5166710988
## 502        New York             12110                    NA                  NA
## 503        New York             11205            7182604600                  NA
## 504        New York             14621            5856976086          5853361705
## 505        New York             10021                    NA                  NA
## 506        New York             13142            3152986564                  NA
## 507        New York             10461            7184058440                  NA
## 508        New York             10310                    NA                  NA
## 509        New York             13118            3154970440          3154979631
## 510        New York             12206            5184822455                  NA
## 511        New York             10704            9143768574                  NA
## 512        New York             11230            7182529800                  NA
## 513        New York             11219            7188714600          7188714780
## 514        New York             14221                    NA                  NA
## 515        New York             14304            7162843264          7162058004
## 516        New York             11103            7185455050          7185455052
## 517        New York             10472            3474077103                  NA
## 518        New York             12208            5185257600                  NA
## 519        New York             12401            8453386400                  NA
## 520        New York             10454            3472183464                  NA
## 521        New York             10305                    NA                  NA
## 522        New York             11214            7183332121          7183339585
## 523        New York             10011                    NA                  NA
## 524        New York             10032            9143685550          9143685551
## 525        New York             14620            5852567894          5852567793
## 526        New York             10550            9146991600                  NA
## 527        New York             12701                    NA                  NA
## 528        New York             12308                    NA                  NA
## 529        New York             10012            2123611600                  NA
## 530        New York             11418                    NA                  NA
## 531        New York             11772            6316547360                  NA
## 532        New York             10016                    NA                  NA
## 533        New York             11769            6312185900          6312185905
## 534        New York             12866            5188856884                  NA
## 535        New York             12189                    NA                  NA
## 536        New York             13601            3157854400                  NA
## 537        New York             14210            7164476475                  NA
## 538        New York             12816            5186773961                  NA
## 539        New York             12866                    NA                  NA
## 540        New York             11978                    NA                  NA
## 541        New York             11042            7184707621                  NA
## 542        New York             10509            9145021452          9145021456
## 543        New York             12206            5185251030                  NA
## 544        New York             10018            2123546000                  NA
## 545        New York             12117                    NA                  NA
## 546        New York             14120            7166947700                  NA
## 547        New York             10034            2126330800          2126914610
## 548        New York             11222                    NA                  NA
## 549        New York             10472            3474077103                  NA
## 550        New York             14544            5855544825                  NA
## 551        New York             11212            7186887000                  NA
## 552        New York             12518            8455347711                  NA
## 553        New York             10454                    NA                  NA
## 554        New York             11901            5168521818                  NA
## 555        New York             12508            8454401600                  NA
## 556        New York             10461                    NA                  NA
## 557        New York             13850            6072402800          6072042983
## 558        New York             12572            8458713760                  NA
## 559        New York             11365            7186618800                  NA
## 560        New York             11209            7188335800                  NA
## 561        New York             11434            7187402060                  NA
## 562        New York             12603            8454736144                  NA
## 563        New York             14215                    NA                  NA
## 564        New York             10591            9146667616          9146660145
## 565        New York             14048                    NA                  NA
## 566        New York             10455            7189206063                  NA
## 567        New York             14850            6072720212          6072720237
## 568        New York             11030            5165628000          5165628074
## 569        New York             10017            2122247900                  NA
## 570        New York             10701            9149634000                  NA
## 571        New York             10452            7185798875                  NA
## 572        New York             10038                    NA                  NA
## 573        New York             11229            7183369100          7183362328
## 574        New York             14527            3155362311                  NA
## 575        New York             11004            7183430770                  NA
## 576        New York             12167            6076522000                  NA
## 577        New York             11219            7186867600                  NA
## 578        New York             14513            3153315065                  NA
## 579        New York        12853-0420            5186232844                  NA
## 580        New York             11206            2123664500                  NA
## 581        New York             10970            8456782000          8456782071
## 582        New York             11432            7188832350                  NA
## 583        New York             14225            7165055630                  NA
## 584        New York             13210            3154755540                  NA
## 585        New York             11203                    NA                  NA
## 586        New York             13088            3154107400                  NA
## 587        New York             13731                    NA                  NA
## 588        New York             10801            9142356878          9146326258
## 589        New York             10960                    NA                  NA
## 590        New York             14625            5859226200          5859226260
## 591        New York             14621            5852662840                  NA
## 592        New York             11355                    NA                  NA
## 593        New York             10512            8452782727                  NA
## 594        New York             10016            2125986054                  NA
## 595        New York             10306            7189870128                  NA
## 596        New York             10065            7187156276          7813729693
## 597        New York             12801                    NA                  NA
## 598        New York             12065            5184539088                  NA
## 599        New York             10029            7186308526                  NA
## 600        New York             12188                    NA                  NA
## 601        New York             12866                    NA                  NA
## 602        New York             13820            6074336470                  NA
## 603        New York             14075            7168318892                  NA
## 604        New York             12202            5184631160                  NA
## 605        New York             14456            5857874730                  NA
## 606        New York             12202            5184494019                  NA
## 607        New York             11937            6317268436                  NA
## 608        New York             14623            5857847848                  NA
## 609        New York             12207                    NA                  NA
## 610        New York             13601                    NA                  NA
## 611        New York             11545            5166864400                  NA
## 612        New York             14437            5853353416          5853358695
## 613        New York             12538            8452291020                  NA
## 614        New York             11767            6313618800          6313619528
## 615        New York             14850            6072730466                  NA
## 616        New York             10035            2124202873                  NA
## 617        New York             10475                    NA                  NA
## 618        New York             10466            7182983900          7182983901
## 619        New York             12603                    NA                  NA
## 620        New York             13667                    NA                  NA
## 621        New York             12804            5187616540          5187616590
## 622        New York             14865            6075357121                  NA
## 623        New York             10458            7189332400                  NA
## 624        New York             14208            7168839487                  NA
## 625        New York             10018            7182372389          7182370632
## 626        New York             13350                    NA                  NA
## 627        New York             14870            6079377200                  NA
## 628        New York             11432            7182987800          7182628839
## 629        New York             14724            7163552248                  NA
## 630        New York             14760            7163738050                  NA
## 631        New York             10566            9147348800                  NA
## 632        New York             11797            5166223456          5166223450
## 633        New York             12065            5182684800                  NA
## 634        New York             12205                    NA                  NA
## 635        New York             11229                    NA                  NA
## 636        New York             10457            7182991100                  NA
## 637        New York             11432            7182918200                  NA
## 638        New York             11791            5163849145                  NA
## 639        New York             11040            5164654377                  NA
## 640        New York             12801                    NA                  NA
## 641        New York             10003            2126736320                  NA
## 642        New York             14612            5854829290                  NA
## 643        New York             11706            6319566060                  NA
## 644        New York             10924            8456512298          8456712299
## 645        New York             10566            9147348800                  NA
## 646        New York             14215                    NA                  NA
## 647        New York             10456            2129494971                  NA
## 648        New York             10304            7188761200          7188761393
## 649        New York             13367            3153765200                  NA
## 650        New York             12211            5188692231                  NA
## 651        New York             14225            7168945399                  NA
## 652        New York             14221            7168598478                  NA
## 653        New York             12010            5188413514                  NA
## 654        New York             11779                    NA                  NA
## 655        New York             13027            3156382521                  NA
## 656        New York             11423            7182066000                  NA
## 657        New York             10989            8452689339                  NA
## 658        New York             10314            7183173000                  NA
## 659        New York             14606            7166472000                  NA
## 660        New York             13031            3154883489                  NA
## 661        New York             14048            7164832344                  NA
## 662        New York             13021            3152557209                  NA
## 663        New York             14227            7166861900          7166868181
## 664        New York             13031            3155608510                  NA
## 665        New York             11746            5168544400                  NA
## 666        New York             14623            5852141000                  NA
## 667        New York             11747                    NA                  NA
## 668        New York             10532            9147690114                  NA
## 669        New York             14450            7163966527                  NA
## 670        New York             11763            5162898000                  NA
## 671        New York             12980            5188974774                  NA
## 672        New York             10461            7189042001                  NA
## 673        New York             10452            7186964067                  NA
## 674        New York             11010            5167752100          5167750811
## 675        New York             10001            2129242510                  NA
## 676        New York             13440                    NA                  NA
## 677        New York             11385            7188498701                  NA
## 678        New York             12953            5184811710          5184839378
## 679        New York             14623            5854860600          5854860649
## 680        New York             10977            8453560567          8453522704
## 681        New York             10603            9149647310                  NA
## 682        New York             11229            7183686250          7183686255
## 683        New York             13790            6077638008          6077638019
## 684        New York             13502            3157246146          3157240308
## 685        New York             10030                    NA                  NA
## 686        New York             11561            5168701010                  NA
## 687        New York             14221                    NA                  NA
## 688        New York             11206            7186307608                  NA
## 689        New York             13142            3152985188                  NA
## 690        New York             12932            5188733570                  NA
## 691        New York             14217            7168719988          7168713456
## 692        New York             11221                    NA                  NA
## 693        New York             14450            5852925250          5854615297
## 694        New York             13753                    NA                  NA
## 695        New York             11725            6317152740                  NA
## 696        New York             14450            5853770350                  NA
## 697        New York             14623            5852794900                  NA
## 698        New York             12804            5189262000                  NA
## 699        New York             13676            3152650745                  NA
## 700        New York             11105            3472832396                  NA
## 701        New York             13753            6074644444          6074644445
## 702        New York             11021            5163659229          5163030286
## 703        New York             12047            5182354044                  NA
## 704        New York             12325            5184898336                  NA
## 705        New York             14843            6077346646          6077343392
## 706        New York             11218            7183073000                  NA
## 707        New York             10952            8453526800                  NA
## 708        New York             14701            7164870141          7166648336
## 709        New York        12804-7821            5188248610                  NA
## 710        New York             13440            3153387000                  NA
## 711        New York             10456            7188427550                  NA
## 712        New York             12019                    NA                  NA
## 713        New York             13440                    NA                  NA
## 714        New York             10595            9148312582          9143473865
## 715        New York             12901            5185654848                  NA
## 716        New York             10562            9149417300                  NA
## 717        New York             10940                    NA                  NA
## 718        New York             13210            3154644202          3154642605
## 719        New York             10453            7184831240                  NA
## 720        New York             14626            5855462771          5854547001
## 721        New York             11378            7189693293                  NA
## 722        New York             14607            5857214680                  NA
## 723        New York             10011            2126756880          2127270821
## 724        New York             11561            5168971110          5168971224
## 725        New York             11208            7183459000          7183368772
## 726        New York             14425            5852893211          5852899363
## 727        New York             10451            7184831240                  NA
## 728        New York             10466            7183250700                  NA
## 729        New York             13905            6077782802                  NA
## 730        New York             11374                    NA                  NA
## 731        New York             11743            6317607746                  NA
## 732        New York             14423                    NA                  NA
## 733        New York             14305            7162982249          7162973302
## 734        New York             13849            6073692271                  NA
## 735        New York             10920            9142672500                  NA
## 736        New York             14450            5853774000                  NA
## 737        New York             11207            7182400499                  NA
## 738        New York             10010            2125986154          2125986186
## 739        New York             13204            3154354452                  NA
## 740        New York             11236            7186307300                  NA
## 741        New York             11772            6312897700                  NA
## 742        New York             14742            7164835000                  NA
## 743        New York             12302                    NA                  NA
## 744        New York             11946            6317234213                  NA
## 745        New York             13205            3154986200                  NA
## 746        New York             11743            6314270254                  NA
## 747        New York             12078            5187735611                  NA
## 748        New York             11234            7185353100                  NA
## 749        New York             12189                    NA                  NA
## 750        New York             13490            3158015071                  NA
## 751        New York             12508            8457398105                  NA
## 752        New York             10016            2122635500                  NA
## 753        New York             13204                    NA                  NA
## 754        New York             12110            5187866270                  NA
## 755        New York             10601            9149255994                  NA
## 756        New York             13491            3158228348                  NA
## 757        New York             11233            7182408700                  NA
## 758        New York             14220                    NA                  NA
## 759        New York             11358            7186703400                  NA
## 760        New York             13216            3155984790          3155924111
## 761        New York             11530            7184707621                  NA
## 762        New York             14620                    NA                  NA
## 763        New York             10458            7189331900          7185634039
## 764        New York             10301            2129657094          7184483057
## 765        New York             12159            5184757000                  NA
## 766        New York             13350            3158671112                  NA
## 767        New York             14092            7162970310                  NA
## 768        New York             11361            7183520080                  NA
## 769        New York             10583            9144723200          9143582002
## 770        New York             10805            9146322870          9146658703
## 771        New York             14052            7166552525                  NA
## 772        New York             11101            7187845696          7182260187
## 773        New York             12308            5183824500                  NA
## 774        New York             14213            7167687600                  NA
## 775        New York             10924            8452948806                  NA
## 776        New York             13830            6073354114                  NA
## 777        New York             10305            7182261166                  NA
## 778        New York             14850            6072744159          6072744675
## 779        New York             11211            7183877628                  NA
## 780        New York             10475            7183205300                  NA
## 781        New York             11553            5162228881          5162226893
## 782        New York             10467            7185193300                  NA
## 783        New York             13440            3153392220                  NA
## 784        New York             11101                    NA                  NA
## 785        New York             10451            7186964070                  NA
## 786        New York             12771            8458565351                  NA
## 787        New York             11212            7184957283                  NA
## 788        New York             13850            6077544105                  NA
## 789        New York             14620                    NA                  NA
## 790        New York             11232            7186307399                  NA
## 791        New York             11691                    NA                  NA
## 792        New York             10005                    NA                  NA
## 793        New York             13601            3157860983                  NA
## 794        New York             10467            7189202001                  NA
## 795        New York             11030            7184707621                  NA
## 796        New York             14605            5854232801                  NA
## 797        New York             12516                    NA                  NA
## 798        New York             10467            7188813000                  NA
## 799        New York             12304                    NA                  NA
## 800        New York             11971            6314775353                  NA
## 801        New York             13428            5186735212                  NA
## 802        New York             13676            3152615460          3152616460
## 803        New York             10458                    NA                  NA
## 804        New York             11776            6314737100                  NA
## 805        New York             13045            6072725891                  NA
## 806        New York             11694            7189454600                  NA
## 807        New York             10031            2128620054                  NA
## 808        New York             14526            5852758387                  NA
## 809        New York             11226                    NA                  NA
## 810        New York             13210            8004246589          3154108030
## 811        New York        14606-3481            5852256296          5852252839
## 812        New York             12564            8458555700                  NA
## 813        New York             14626            5852250450          5852254306
## 814        New York             10601            9147234900                  NA
## 815        New York             10455                    NA                  NA
## 816        New York             11318            3477837700          3477837737
## 817        New York             12831            5189263701                  NA
## 818        New York             13820            6074315052                  NA
## 819        New York             14218            7168282300                  NA
## 820        New York             12754            8452928640                  NA
## 821        New York             12180            6153420410                  NA
## 822        New York             11030            7184707621                  NA
## 823        New York             11226            7182824300          7187039437
## 824        New York             11691            7184707621                  NA
## 825        New York             13205            3154133708                  NA
## 826        New York             11201            7188557080          7188557082
## 827        New York             10805            9146362800                  NA
## 828        New York             10019            2125861550                  NA
## 829        New York             10566                    NA                  NA
## 830        New York             11220            7185670255                  NA
## 831        New York             11968                    NA                  NA
## 832        New York             12110            5187835381                  NA
## 833        New York             10451            7186964071                  NA
## 834        New York             10035            2124103147                  NA
## 835        New York             10457                    NA                  NA
## 836        New York             12828            5187479019          5186813071
## 837        New York             11375            5165624060                  NA
## 838        New York             12534            5188283358                  NA
## 839        New York             12020            5182434147                  NA
## 840        New York             14048            7163636050                  NA
## 841        New York             11203            7182702401                  NA
## 842        New York             13203            3154741561                  NA
## 843        New York             13317                    NA                  NA
## 844        New York             12305            5183827932          5183825699
## 845        New York             14513            5859223409          5859229489
## 846        New York             13208            3154767921                  NA
## 847        New York             12601            8454714243          8454710642
## 848        New York             13753            6077462130                  NA
## 849        New York             11230            7184342100                  NA
## 850        New York             10460            6462567571                  NA
## 851        New York             14075            7168982100                  NA
## 852        New York             11357            7189611212                  NA
## 853        New York             12208                    NA                  NA
## 854        New York             11944            6314773800          6314773900
## 855        New York             14580            5857872233          5857879726
## 856        New York             11777            6314746600                  NA
## 857        New York             12866                    NA                  NA
## 858        New York             10580            9149674100                  NA
## 859        New York             13502                    NA                  NA
## 860        New York             11238            7186224488                  NA
## 861        New York             10002            2122278401                  NA
## 862        New York             10457            7186964070                  NA
## 863        New York             14031            7167596985                  NA
## 864        New York             14127            7162097200          7162097206
## 865        New York             10705            9143771959                  NA
## 866        New York             10451            7185899588                  NA
## 867        New York             10027            2127493507                  NA
## 868        New York             13326            6075442600          6075442604
## 869        New York             11203            7182453901                  NA
## 870        New York             13032                    NA                  NA
## 871        New York             13212                    NA                  NA
## 872        New York             10027                    NA                  NA
## 873        New York             13202            3154354030                  NA
## 874        New York             12304                    NA                  NA
## 875        New York             14569            7167863230                  NA
## 876        New York             11550            5167502502          5164833556
## 877        New York             11550            5166638878          5166634828
## 878        New York             10552            9145135860          9145135622
## 879        New York             12118                    NA                  NA
## 880        New York             10941            8456929900                  NA
## 881        New York             14569            5857867978          5857867991
## 882        New York             12887            5187923151                  NA
## 883        New York             14787            7163264921                  NA
## 884        New York             10461            7189206062                  NA
## 885        New York             10461            7184091909                  NA
## 886        New York             10314            7186988800                  NA
## 887        New York             11213            7189357000                  NA
## 888        New York             11223            7189543200                  NA
## 889        New York             12866                    NA                  NA
## 890        New York             11213            7184677300                  NA
## 891        New York             10002            2122335372                  NA
## 892        New York             14626            5852761900                  NA
## 893        New York             10453            7189602781                  NA
## 894        New York             14218            7168225944                  NA
## 895        New York             11714            5165796000                  NA
## 896        New York             13440            3153378584          3153391434
## 897        New York             14225                    NA                  NA
## 898        New York             11224                    NA                  NA
## 899        New York             10305            7182269515                  NA
## 900        New York             13031            3157019378          3157010871
## 901        New York             14203                    NA                  NA
## 902        New York             14424                    NA                  NA
## 903        New York             10502            9146938787                  NA
## 904        New York             14779                    NA                  NA
## 905        New York             12095            5187628215          5187624109
## 906        New York             14228            7162503108                  NA
## 907        New York             10016                    NA                  NA
## 908        New York             11211            7182604600                  NA
## 909        New York             11021            5165624050                  NA
## 910        New York             14201            7168472500          7168471312
## 911        New York             12401            8453397700                  NA
## 912        New York             10035                    NA                  NA
## 913        New York             10001            2122371707                  NA
## 914        New York             10002                    NA                  NA
## 915        New York             11432            3475057000          3475052500
## 916        New York        12870-0292            5186232844                  NA
## 917        New York             11368            7186514000                  NA
## 918        New York             11207            3475050801          7183466879
## 919        New York             13326            6075473456                  NA
## 920        New York             12184            5188288244                  NA
## 921        New York             11234                    NA                  NA
## 922        New York             10550            9146686828                  NA
## 923        New York             13045            6077567525                  NA
## 924        New York             10454            7185795700                  NA
## 925        New York             14150            7168374466          7163323520
## 926        New York             10467            7186553568                  NA
## 927        New York             11232            7188329449                  NA
## 928        New York             14482            5857682561          5857684335
## 929        New York             14212                    NA                  NA
## 930        New York             14437                    NA                  NA
## 931        New York             10002                    NA                  NA
## 932        New York             10705                    NA                  NA
## 933        New York             13838            6075612021                  NA
## 934        New York             10701            9144677338                  NA
## 935        New York             12065            6075612100                  NA
## 936        New York             10012            2129255000                  NA
## 937        New York             13057            3154325960          3154325979
## 938        New York             11003            5164373600                  NA
## 939        New York             11743            6316300398                  NA
## 940        New York             11791            6312464100          6313520032
## 941        New York             13905            6077985328                  NA
## 942        New York             12027            5188311550                  NA
## 943        New York             14850            6072523500                  NA
## 944        New York             14580            5856976999          5853471122
## 945        New York             10024            2125234295                  NA
## 946        New York             14502            3159862100          3155380047
## 947        New York             12601            8454529220                  NA
## 948        New York             13669            3153933780                  NA
## 949        New York             10023            2127697879                  NA
## 950        New York             10019            2127747026                  NA
## 951        New York             12901            5185624616                  NA
## 952        New York             14094            7165145700          7165145549
## 953        New York             12208            5182621200                  NA
## 954        New York             10460            7188018779                  NA
## 955        New York             11101            7187521601                  NA
## 956        New York             11219                    NA                  NA
## 957        New York             11787            6318623900          6318623983
## 958        New York             12144                    NA                  NA
## 959        New York             10463            7186018400                  NA
## 960        New York             10031            2128620054                  NA
## 961        New York             10901                    NA                  NA
## 962        New York             11354            7189615300                  NA
## 963        New York             11204                    NA                  NA
## 964        New York             10003            7187156276          7813729693
## 965        New York             13367                    NA                  NA
## 966        New York             13210            3154707921                  NA
## 967        New York             10504            9146811200                  NA
## 968        New York             11787            6317242200          6317240062
## 969        New York             14850            6072728282                  NA
## 970        New York             14120            7166944500                  NA
## 971        New York             13815            6073349931                  NA
## 972        New York             14011            5853447373                  NA
## 973        New York             14760            7163798474                  NA
## 974        New York             14618            5852419683                  NA
## 975        New York             11238            7186137375                  NA
## 976        New York             11215                    NA                  NA
## 977        New York             13617            3157143135          3157143147
## 978        New York             14620            5857606500                  NA
## 979        New York             12601                    NA                  NA
## 980        New York             11211            7182508005          7186254109
## 981        New York             10514            9144588700          9146661953
## 982        New York             11577            5166268355                  NA
## 983        New York             11224                    NA                  NA
## 984        New York             13803                    NA                  NA
## 985        New York             11743            6318122678                  NA
## 986        New York             12771                    NA                  NA
## 987        New York             13662            3157698017                  NA
## 988        New York             11210                    NA                  NA
## 989        New York             13778            6076564115          6076569553
## 990        New York             14304            7162970798                  NA
## 991        New York             10453            7185839000                  NA
## 992        New York             10303            7184470200                  NA
## 993        New York             10009                    NA                  NA
## 994        New York             12946            5188978531                  NA
## 995        New York             10528            9147778400          9147778401
## 996        New York             13208            3154767921                  NA
## 997        New York             10543            9147619565                  NA
## 998        New York             12010            5188432575                  NA
## 999        New York             10016            2127315372                  NA
## 1000       New York             11224                    NA                  NA
## 1001       New York             11791            5164966400                  NA
## 1002       New York             11204            7182594272          7182591582
## 1003       New York             13905            6075844500          6075844584
## 1004       New York             14057            7169923987                  NA
## 1005       New York             14618            5854610370                  NA
## 1006       New York             12302            5183704700          5183705048
## 1007       New York             12201            5184474580                  NA
## 1008       New York             13421            3153633950          3153631017
## 1009       New York             12010            5188423100                  NA
## 1010       New York             10701                    NA                  NA
## 1011       New York             14757            7167534314                  NA
## 1012       New York             14103            5857982000          5857988444
## 1013       New York             10467                    NA                  NA
## 1014       New York             10522                    NA                  NA
## 1015       New York             14623            5859223409                  NA
## 1016       New York             14203            7168595600                  NA
## 1017       New York             12754            8452920100                  NA
## 1018       New York             11427            7184707621                  NA
## 1019       New York             12866            5185873600                  NA
## 1020       New York             14048            7163636050                  NA
## 1021       New York             12206                    NA                  NA
## 1022       New York             11788            6312276650                  NA
## 1023       New York             11219            7182832900                  NA
## 1024       New York             11795                    NA                  NA
## 1025       New York             10467            7186551700                  NA
## 1026       New York             10475            7188629238                  NA
## 1027       New York             11570            5165368000          5165367765
## 1028       New York             14850            6072738072          6072730373
## 1029       New York             14843                    NA                  NA
## 1030       New York             14456            3157896828                  NA
## 1031       New York             11205                    NA                  NA
## 1032       New York             12701            8457963308                  NA
## 1033       New York             11572            5166324023                  NA
## 1034       New York             10471            7185492200                  NA
## 1035       New York             12845            5187616415                  NA
## 1036       New York             10025            2128705000                  NA
## 1037       New York             10038                    NA                  NA
## 1038       New York             12065                    NA                  NA
## 1039       New York             10473            7189914833          3475908053
## 1040       New York             13655                    NA                  NA
## 1041       New York             10805            9146329600          9146324766
## 1042       New York             12208                    NA                  NA
## 1043       New York             12534            5188287695                  NA
## 1044       New York             10552            9145135860          9145135622
## 1045       New York             13037            3156879169          3156879720
## 1046       New York             10037            2125436400          2125436419
## 1047       New York             11236            7187716961          7187710409
## 1048       New York             11230                    NA                  NA
## 1049       New York             11021                    NA                  NA
## 1050       New York             10032            2123058527                  NA
## 1051       New York             12754            8452920100                  NA
## 1052       New York             10304            7183906000                  NA
## 1053       New York             14213                    NA                  NA
## 1054       New York             13673            3156420216                  NA
## 1055       New York             11432            7182625504                  NA
## 1056       New York             10021            2126061236                  NA
## 1057       New York             14103            5857982000                  NA
## 1058       New York             10950            8457830989                  NA
## 1059       New York             12524                    NA                  NA
## 1060       New York             11590            5167468013          5167467172
## 1061       New York             11211            7184653265          7184797358
## 1062       New York             13131                    NA                  NA
## 1063       New York             10016            2122635221          2122638460
## 1064       New York             13078            3154460123                  NA
## 1065       New York             14620            5857606500                  NA
## 1066       New York             10924            8452947961                  NA
## 1067       New York             11228            7185671820          7185671833
## 1068       New York             12401            8453342750          8453313238
## 1069       New York             14623                    NA                  NA
## 1070       New York             12144            5188806300                  NA
## 1071       New York             11702            6313212100                  NA
## 1072       New York             10030            2123045209                  NA
## 1073       New York             13760            6077570444          6077573385
## 1074       New York             12122                    NA                  NA
## 1075       New York             12601            8454548500                  NA
## 1076       New York             13210            3154641900                  NA
## 1077       New York             13057            3154695570                  NA
## 1078       New York             13820            5182547092          5188234006
## 1079       New York             14221            7168858318                  NA
## 1080       New York             12534                    NA                  NA
## 1081       New York             14218                    NA                  NA
## 1082       New York             11435            7182985100                  NA
## 1083       New York             12110            5187135400          5187135401
## 1084       New York             14221            7166326152                  NA
## 1085       New York             12601            8454547600          8454548234
## 1086       New York             12043                    NA                  NA
## 1087       New York             10601            9149491000                  NA
## 1088       New York             11218                    NA                  NA
## 1089       New York             10026            2127522404          6467941400
## 1090       New York             13601            3157853783                  NA
## 1091       New York             13021            3152557188                  NA
## 1092       New York             14624            5853683360                  NA
## 1093       New York             11368                    NA                  NA
## 1094       New York             13350            3158663330                  NA
## 1095       New York             11355            7186705918                  NA
## 1096       New York             10473            2126330800          2123593264
## 1097       New York             10029            2123486637          2128769362
## 1098       New York             10023                    NA                  NA
## 1099       New York             11692            7186342155                  NA
## 1100       New York             13856            6078656543                  NA
## 1101       New York             11226                    NA                  NA
## 1102       New York             10021                    NA                  NA
## 1103       New York             10022                    NA                  NA
## 1104       New York             13413            3157977500                  NA
## 1105       New York             10065                    NA                  NA
## 1106       New York             14843            6073245404                  NA
## 1107       New York             13326            6077469332                  NA
## 1108       New York             11354            7189614300          7189398429
## 1109       New York             14606            7164732200                  NA
## 1110       New York             11693            7186349384                  NA
## 1111       New York             12037                    NA                  NA
## 1112       New York             13204            3154763101          3154779378
## 1113       New York             10520            9149411300          9149412742
## 1114       New York             12983            5188910046                  NA
## 1115       New York             11435            7182066290                  NA
## 1116       New York             11788            6318533069          6318533063
## 1117       New York             11208            2123664500                  NA
## 1118       New York             11224            7186164100                  NA
## 1119       New York             10524            8454243616                  NA
## 1120       New York             11230                    NA                  NA
## 1121       New York             10030                    NA                  NA
## 1122       New York             10034                    NA                  NA
## 1123       New York             12047            5182375630                  NA
## 1124       New York             11375            7182634600                  NA
## 1125       New York             12801            5187923151                  NA
## 1126       New York             11229            7183766655                  NA
## 1127       New York             14618            5853416711          5853418350
## 1128       New York             11727            8454769359                  NA
## 1129       New York             11355            7186702530                  NA
## 1130       New York             11691            7184707621                  NA
## 1131       New York             10035            2122418015                  NA
## 1132       New York             14209            7168592732                  NA
## 1133       New York             10470            7188638000          7188638077
## 1134       New York             10003            2124202873                  NA
## 1135       New York             10532            9145925858                  NA
## 1136       New York             11215            7188586675          7188584988
## 1137       New York             14605                    NA                  NA
## 1138       New York             12025                    NA                  NA
## 1139       New York             14608            7165278300                  NA
## 1140       New York             10035            2122417005                  NA
## 1141       New York             13601            3157792140          3157792145
## 1142       New York             11580            5162566700          5162566601
## 1143       New York             14094            7165145700                  NA
## 1144       New York             11561            5168891100          5164310398
## 1145       New York             10305                    NA                  NA
## 1146       New York             10309            7182269515                  NA
## 1147       New York             13215            3154496000          3154495520
## 1148       New York             12010            5188421900                  NA
## 1149       New York             10701            9149684898                  NA
## 1150       New York             13905            6077985111                  NA
## 1151       New York             13204                    NA                  NA
## 1152       New York             10595            9144938204                  NA
## 1153       New York             13850            6077634400                  NA
## 1154       New York             11772            6314478800          6314478830
## 1155       New York             10706            9144783700                  NA
## 1156       New York             10591            9149221000                  NA
## 1157       New York             12953            5184833000                  NA
## 1158       New York             14760            7167011700                  NA
## 1159       New York             14612            5853686100                  NA
## 1160       New York             13057                    NA                  NA
## 1161       New York             11691            7187342750          7187342274
## 1162       New York             10566            9147378400                  NA
## 1163       New York             10451            2124424064                  NA
## 1164       New York             13326            6075474202                  NA
## 1165       New York             11901            5168522680                  NA
## 1166       New York             12901                    NA                  NA
## 1167       New York             11797            5169213900          5166227870
## 1168       New York             13411            6078477000                  NA
## 1169       New York             11572                    NA                  NA
## 1170       New York             13619            3154931000                  NA
## 1171       New York             10473            7186964071                  NA
## 1172       New York             10550            9144287876                  NA
## 1173       New York             14424            5853937040          5853944218
## 1174       New York             14513            3153322316          3153322796
## 1175       New York             12601            8454716300          8454716398
## 1176       New York             14510            5852437290                  NA
## 1177       New York             12180            5182832000                  NA
## 1178       New York             11203            7186045000                  NA
## 1179       New York             11201                    NA                  NA
## 1180       New York             10601            9146812007                  NA
## 1181       New York             10467            7185193500                  NA
## 1182       New York             11730                    NA                  NA
## 1183       New York             14622                    NA                  NA
## 1184       New York             12550                    NA                  NA
## 1185       New York             13669            3153930730                  NA
## 1186       New York             14098            5856375319          5856374990
## 1187       New York             14424            7163966527                  NA
## 1188       New York             10474                    NA                  NA
## 1189       New York             11735            5166949800          5166946496
## 1190       New York             11530            7184707621                  NA
## 1191       New York             12009            5188615141          5188615437
## 1192       New York             12305                    NA                  NA
## 1193       New York             12401            8453397700                  NA
## 1194       New York             10454            7187164400                  NA
## 1195       New York             13408            3156849595                  NA
## 1196       New York             14086            7166836165                  NA
## 1197       New York             10013            2123347940                  NA
## 1198       New York             12095            5187361911          5187361935
## 1199       New York             11207                    NA                  NA
## 1200       New York             13660            3157135043          3157135066
## 1201       New York             11691            7184715000                  NA
## 1202       New York             12901            5183243380                  NA
## 1203       New York             12159            5184512107                  NA
## 1204       New York             13413            3157973114                  NA
## 1205       New York             11229            7183761004          7183767465
## 1206       New York             11435            7186577088                  NA
## 1207       New York             11023            5168297876                  NA
## 1208       New York             11207                    NA                  NA
## 1209       New York             10304            7189795000                  NA
## 1210       New York             10514            9142420600                  NA
## 1211       New York             13905            6077227225                  NA
## 1212       New York             10029                    NA                  NA
## 1213       New York             14305                    NA                  NA
## 1214       New York             10453            7189018800                  NA
## 1215       New York             11213                    NA                  NA
## 1216       New York             10460            7185421906                  NA
## 1217       New York             12401            8453382906                  NA
## 1218       New York             13815            6073346861                  NA
## 1219       New York             13203                    NA                  NA
## 1220       New York             11423            7187403500          7187400759
## 1221       New York             11212                    NA                  NA
## 1222       New York             13152                    NA                  NA
## 1223       New York             10021            2124343365                  NA
## 1224       New York             11042                    NA                  NA
## 1225       New York             10463            2123046076                  NA
## 1226       New York             13045            6077539631          6077562968
## 1227       New York             10029            2122417005                  NA
## 1228       New York             11213            7186308526                  NA
## 1229       New York             11207            7184849588                  NA
## 1230       New York             11212            7183455503                  NA
## 1231       New York             14526            5859229700          5859229701
## 1232       New York             14843            6073247740                  NA
## 1233       New York             12831                    NA                  NA
## 1234       New York             10304            6464031686                  NA
## 1235       New York             11733                    NA                  NA
## 1236       New York             14609            5856970004          5856970046
## 1237       New York             11372                    NA                  NA
## 1238       New York             11752            6315819330                  NA
## 1239       New York             14580            5858721800                  NA
## 1240       New York             11692            7189450400          7189455954
## 1241       New York             14895            5855964129                  NA
## 1242       New York             10606            9146868880          9146868860
## 1243       New York             11727            9147348503                  NA
## 1244       New York             14626            5857237007          5857237770
## 1245       New York             12839            5187478001                  NA
## 1246       New York             12203            5182621191                  NA
## 1247       New York             12010            5188426790                  NA
## 1248       New York             14611                    NA                  NA
## 1249       New York             10454            7184831240                  NA
## 1250       New York             11977            6312880101          6312880238
## 1251       New York             11385                    NA                  NA
## 1252       New York             13421            3153636000                  NA
## 1253       New York             14094            7164332025          7164337759
## 1254       New York             12771            8458582854          8458582857
## 1255       New York             14901            6077336541                  NA
## 1256       New York             13838            6075612021                  NA
## 1257       New York             14048                    NA                  NA
## 1258       New York             10549            9142446789                  NA
## 1259       New York             10461            7185182244                  NA
## 1260       New York             14211                    NA                  NA
## 1261       New York             10304                    NA                  NA
## 1262       New York             10451                    NA                  NA
## 1263       New York             11021            5164658500                  NA
## 1264       New York             12477            8453342750          8453313238
## 1265       New York             13903            6077623281                  NA
## 1266       New York             13069            3155984790          3153428803
## 1267       New York             12903            5183100900          5183100885
## 1268       New York             14456            3157874000                  NA
## 1269       New York             10025            2127697200                  NA
## 1270       New York             13045            6077533797                  NA
## 1271       New York             10458            7188177903                  NA
## 1272       New York             11530            5166633907                  NA
## 1273       New York             13676            3152653300                  NA
## 1274       New York             11776                    NA                  NA
## 1275       New York             10605            9145974094          9145974012
## 1276       New York             10459                    NA                  NA
## 1277       New York             10457                    NA                  NA
## 1278       New York             14530            5855035484                  NA
## 1279       New York             10507            9142421823          9142422716
## 1280       New York             13421            3156245352          3156245745
## 1281       New York             10562            9145028214                  NA
## 1282       New York             11743                    NA                  NA
## 1283       New York             12455            8455862631                  NA
## 1284       New York             10032                    NA                  NA
## 1285       New York             13501            3157973570                  NA
## 1286       New York             14207            7168752904                  NA
## 1287       New York             14692            5857535071          5857535188
## 1288       New York             13413            3157378300                  NA
## 1289       New York             11377            7186312931                  NA
## 1290       New York             14607            5852449000                  NA
## 1291       New York             11743            6318363400                  NA
## 1292       New York             10475            7183203700                  NA
## 1293       New York             14564                    NA                  NA
## 1294       New York             10553                    NA                  NA
## 1295       New York             11377            7182050287          7188030694
## 1296       New York             10034            2123044488                  NA
## 1297       New York             13421            3153612351                  NA
## 1298       New York             13210                    NA                  NA
## 1299       New York             10993            8457864000                  NA
## 1300       New York             12866            6153420410                  NA
## 1301       New York             10701            9149644200                  NA
## 1302       New York             10454            2126777400                  NA
## 1303       New York             11245                    NA                  NA
## 1304       New York             13827            6076872594          6076879470
## 1305       New York             11354            7189397500                  NA
## 1306       New York             11220            7184917100          7187595384
## 1307       New York             12439            5187343260                  NA
## 1308       New York             14228                    NA                  NA
## 1309       New York             13685            3156467119          3156467127
## 1310       New York             11042            5163266500                  NA
## 1311       New York             14865            6075358611                  NA
## 1312       New York             11216                    NA                  NA
## 1313       New York             13856            6078656579                  NA
## 1314       New York             12047            5182715059                  NA
## 1315       New York             14420            5856373905                  NA
## 1316       New York             11746            6314233200          6315926409
## 1317       New York             10583            9147876158          9147256382
## 1318       New York             10573            9149378800                  NA
## 1319       New York             14618            5854610770          5854736891
## 1320       New York             11510            5163775000                  NA
## 1321       New York             10305                    NA                  NA
## 1322       New York             11209            7182835880                  NA
## 1323       New York             10032            2123052500                  NA
## 1324       New York             14604            5855467501          5852637653
## 1325       New York             13617            3153861156                  NA
## 1326       New York             10462                    NA                  NA
## 1327       New York             12846            5187610300                  NA
## 1328       New York        11212-3139            7182405276                  NA
## 1329       New York             10604            9146821484          9146829425
## 1330       New York             14214            7168282029                  NA
## 1331       New York             11231            7187804651                  NA
## 1332       New York             12601                    NA                  NA
## 1333       New York             13409            3154952690                  NA
## 1334       New York             10469                    NA                  NA
## 1335       New York             12747            8454340376                  NA
## 1336       New York             11432                    NA                  NA
## 1337       New York             14513            3153322022                  NA
## 1338       New York             13601            3157829450                  NA
## 1339       New York             14502                    NA                  NA
## 1340       New York             11435                    NA                  NA
## 1341       New York             10453            7187164400                  NA
## 1342       New York             10021            2126061236                  NA
## 1343       New York             10706                    NA                  NA
## 1344       New York             12180            5182744125                  NA
## 1345       New York             12068                    NA                  NA
## 1346       New York             10990            8459889905                  NA
## 1347       New York             12928                    NA                  NA
## 1348       New York             13827            6077684622                  NA
## 1349       New York             13126            3153498259                  NA
## 1350       New York             10024            6465053500          2128730658
## 1351       New York             12043            5182343325          5182344277
## 1352       New York             10011            2122717214                  NA
## 1353       New York             13210            3154641616          3154641617
## 1354       New York             10458                    NA                  NA
## 1355       New York             13440                    NA                  NA
## 1356       New York             10032                    NA                  NA
## 1357       New York             11362            7184236400          7184234768
## 1358       New York             13502            3156246001                  NA
## 1359       New York             10701            9143753333                  NA
## 1360       New York             10304                    NA                  NA
## 1361       New York             13126            3153422365                  NA
## 1362       New York             11219                    NA                  NA
## 1363       New York             13066            3153297203                  NA
## 1364       New York             11101            2129657083          9292962219
## 1365       New York             12206            5184892681                  NA
## 1366       New York             10021            2127462520                  NA
## 1367       New York             11598            5163749300                  NA
## 1368       New York             14610            5854823500                  NA
## 1369       New York             12776            6074984524                  NA
## 1370       New York             11691            5165624050                  NA
## 1371       New York             10458                    NA                  NA
## 1372       New York             13365            3158234546          3158234760
## 1373       New York             12180            5182702520                  NA
## 1374       New York             10010            2129989652                  NA
## 1375       New York             12078            5187258621                  NA
## 1376       New York             10065            6464224300                  NA
## 1377       New York             14892            6075652861                  NA
## 1378       New York             13648            3155375003          3155375027
## 1379       New York             11435                    NA                  NA
## 1380       New York             13850                    NA                  NA
## 1381       New York             10035                    NA                  NA
## 1382       New York             10003            2124202873                  NA
## 1383       New York             11042            5167348000                  NA
## 1384       New York             12754                    NA                  NA
## 1385       New York             10562            9147621600                  NA
## 1386       New York             11234            7189513000                  NA
## 1387       New York             11590            5168765300          5168765284
## 1388       New York             11575                    NA                  NA
## 1389       New York             11433                    NA                  NA
## 1390       New York             12020                    NA                  NA
## 1391       New York             12180                    NA                  NA
## 1392       New York             11801            7184707621                  NA
## 1393       New York             13368            3153765293                  NA
## 1394       New York             11563            5168870890                  NA
## 1395       New York             10065            6469285900                  NA
## 1396       New York             10469                    NA                  NA
## 1397       New York             10301            7182731300                  NA
## 1398       New York             14620            5854427470                  NA
## 1399       New York             13862            6077985328          6077987681
## 1400       New York             11901            5163617526                  NA
## 1401       New York             14551            3154831199                  NA
## 1402       New York             12866                    NA                  NA
## 1403       New York             13796                    NA                  NA
## 1404       New York             10461                    NA                  NA
## 1405       New York             10016            6467542000          6467549690
## 1406       New York             12303            5183563139                  NA
## 1407       New York             10302            7182266294                  NA
## 1408       New York             13335            6079658900                  NA
## 1409       New York             10453                    NA                  NA
## 1410       New York             12047            5182354044                  NA
## 1411       New York             11230            2126836700                  NA
## 1412       New York             12192                    NA                  NA
## 1413       New York             11205            7182604640          7182604646
## 1414       New York             10459            7185884460          7188935493
## 1415       New York             13440            3153387000                  NA
## 1416       New York             12804                    NA                  NA
## 1417       New York             10462            7188636200                  NA
## 1418       New York             10010            2124202873                  NA
## 1419       New York             10459                    NA                  NA
## 1420       New York             13118            6077533797          6077536677
## 1421       New York             12203                    NA                  NA
## 1422       New York             11220            8176307300                  NA
## 1423       New York             13480            3158414937                  NA
## 1424       New York             13140            3157817447          3157717444
## 1425       New York             11200                    NA                  NA
## 1426       New York             12946            5185232464                  NA
## 1427       New York             14527            3155312000                  NA
## 1428       New York             10006            2128180001                  NA
## 1429       New York             12564            8458557300          8454277051
## 1430       New York             13210            3154644202          3154642605
## 1431       New York             12528            8456919225          8456916408
## 1432       New York             14621                    NA                  NA
## 1433       New York             14618            5853419242                  NA
## 1434       New York             10467            7189204167          7185155419
## 1435       New York             10940            8453426601                  NA
## 1436       New York             11434            7189491600          7185259363
## 1437       New York             14580            5852758387                  NA
## 1438       New York             10701            7189202001                  NA
## 1439       New York             14020            7165462595                  NA
## 1440       New York             14616            5859223409          5859229489
## 1441       New York             11901            6317279654          6317279681
## 1442       New York             13601            3157820415          3157860417
## 1443       New York             10301            2129494958                  NA
## 1444       New York             12206            5184387638                  NA
## 1445       New York             11235            7186465700                  NA
## 1446       New York             11213            7189532302                  NA
## 1447       New York             12180            5182685000                  NA
## 1448       New York             13783            6076375700                  NA
## 1449       New York             10977            8454267577                  NA
## 1450       New York             12207            5184654771                  NA
## 1451       New York             10027            2124424064                  NA
## 1452       New York             10040            2125676200                  NA
## 1453       New York             10458            7182205665                  NA
## 1454       New York             11691            7188698000          7188698055
## 1455       New York             13367            3153765200                  NA
## 1456       New York             14489                    NA                  NA
## 1457       New York             12084            5184526701                  NA
## 1458       New York             14450            5853893080          5853893081
## 1459       New York             14094            7164787500                  NA
## 1460       New York             13305            3153466824          3153466825
## 1461       New York             12428            7182062000                  NA
## 1462       New York             10591                    NA                  NA
## 1463       New York             14830                    NA                  NA
## 1464       New York             13126            3153423166                  NA
## 1465       New York             10701            9149643333                  NA
## 1466       New York             10550                    NA                  NA
## 1467       New York             14218            7168195101                  NA
## 1468       New York             13601            3157854121          3157854343
## 1469       New York             11746            6314234320                  NA
## 1470       New York             10591            9146314141          9146311867
## 1471       New York             11210            7189518800                  NA
## 1472       New York             12180                    NA                  NA
## 1473       New York             14701            7167209430                  NA
## 1474       New York             13126            3153495300                  NA
## 1475       New York             14219                    NA                  NA
## 1476       New York             12078            5187733400                  NA
## 1477       New York             10027                    NA                  NA
## 1478       New York             10060                    NA                  NA
## 1479       New York             10567                    NA                  NA
## 1480       New York             10549            9146661303                  NA
## 1481       New York             10701                    NA                  NA
## 1482       New York             14141            7165922871                  NA
## 1483       New York             10306            7189791800                  NA
## 1484       New York             13905            6075844552                  NA
## 1485       New York             14513            3154147002                  NA
## 1486       New York             10547            9145282000                  NA
## 1487       New York             11230                    NA                  NA
## 1488       New York             11204            7184077300                  NA
## 1489       New York             10002            2126738500                  NA
## 1490       New York             10461            7188224940                  NA
## 1491       New York             10954            8456233904                  NA
## 1492       New York             11021            5165624050                  NA
## 1493       New York             14220                    NA                  NA
## 1494       New York             14305                    NA                  NA
## 1495       New York             11794            6316328966                  NA
## 1496       New York             11706            6316654960          6316659411
## 1497       New York             10977            8455739860          8455738965
## 1498       New York             11788            5168537373                  NA
## 1499       New York             13036            3156685212          3156685242
## 1500       New York             14482            5857682620          5857682694
## 1501       New York             14094            7169869199                  NA
## 1502       New York             10467            7189206035          7182316314
## 1503       New York             10607            9146997200          9146990837
## 1504       New York             13078            3154691300                  NA
## 1505       New York             12572            8458713001                  NA
## 1506       New York             13501            3157971230          3156240966
## 1507       New York             13753            6077463166                  NA
## 1508       New York             11704            6315870600          6315870053
## 1509       New York             11542            5166761100          5167590216
## 1510       New York             13021                    NA                  NA
## 1511       New York             14611                    NA                  NA
## 1512       New York             10466            7187164400                  NA
## 1513       New York             10032                    NA                  NA
## 1514       New York             14620                    NA                  NA
## 1515       New York             12305            5183827932          5183825699
## 1516       New York             10470            7189209000                  NA
## 1517       New York             13755            6073632517                  NA
## 1518       New York             10303                    NA                  NA
## 1519       New York             11205            7185969800          7185969889
## 1520       New York             10453            7185845746                  NA
## 1521       New York             10457                    NA                  NA
## 1522       New York             12508            8454318109          8454853762
## 1523       New York             11354            7183661111                  NA
## 1524       New York             14618            5854277760                  NA
## 1525       New York             11230            7186777600                  NA
## 1526       New York             12540            8454272894                  NA
## 1527       New York             10455            7184841247          7189755448
## 1528       New York             11953            6319248830          6319242661
## 1529       New York             11550            5169337000                  NA
## 1530       New York             14209            7168983331                  NA
## 1531       New York             10459            7188225008                  NA
## 1532       New York             12592            8456776593                  NA
## 1533       New York             14621            5855444000                  NA
## 1534       New York             10459            7185894844                  NA
## 1535       New York             10472            2126330800                  NA
## 1536       New York             10598            9142455200          9142452930
## 1537       New York             10463            7188844300                  NA
## 1538       New York             14617            5859222800          5853363031
## 1539       New York             14209            7168853838                  NA
## 1540       New York             14450            5856020440                  NA
## 1541       New York             11717            6312314455                  NA
## 1542       New York             12202            5184631160                  NA
## 1543       New York             12901            5185612000                  NA
## 1544       New York             11001            5164843660                  NA
## 1545       New York             11416                    NA                  NA
## 1546       New York             14070            7165325700          7165325703
## 1547       New York             10021            2127465454                  NA
## 1548       New York             13452            5185687145                  NA
## 1549       New York             10011            2126330800                  NA
## 1550       New York             14620            5852920076          5852920081
## 1551       New York             11901            6315486260          6315486273
## 1552       New York             12866                    NA                  NA
## 1553       New York             12993                    NA                  NA
## 1554       New York             14510            5852437200                  NA
## 1555       New York             11226            7182508000                  NA
## 1556       New York             12401            8453403390                  NA
## 1557       New York             10451            7189977100                  NA
## 1558       New York             10467            7187981100                  NA
## 1559       New York             10701                    NA                  NA
## 1560       New York        10001-6708            2126044908          2126041798
## 1561       New York             14225            7168917429                  NA
## 1562       New York             10583            9147876158          9147256382
## 1563       New York             11235            7186163000                  NA
## 1564       New York             11208            3474737475                  NA
## 1565       New York             14895            5855939410          5855939411
## 1566       New York             11968            6317268200                  NA
## 1567       New York             10029            2122417005                  NA
## 1568       New York             11704                    NA                  NA
## 1569       New York             13601            3157829450                  NA
## 1570       New York             13323            3158535550          3158535549
## 1571       New York             14580                    NA                  NA
## 1572       New York             10016            2128895477                  NA
## 1573       New York             10471            7185811000                  NA
## 1574       New York             11220            7186307300                  NA
## 1575       New York             10573            9149350011                  NA
## 1576       New York             11354            7188880700                  NA
## 1577       New York             11795            6313763058                  NA
## 1578       New York             14850            6072731513                  NA
## 1579       New York             11375            7182758900                  NA
## 1580       New York             10459            7189914833                  NA
## 1581       New York             14621            7162663880                  NA
## 1582       New York             12831                    NA                  NA
## 1583       New York             11743            6313512200                  NA
## 1584       New York             11372            7186625100                  NA
## 1585       New York             14624            5853686899                  NA
## 1586       New York             11772            6314446300                  NA
## 1587       New York             14456                    NA                  NA
## 1588       New York             12302                    NA                  NA
## 1589       New York             13850            6077622015                  NA
## 1590       New York             14072                    NA                  NA
## 1591       New York             14221            7166326420          7166337642
## 1592       New York             13642            3152874440          3153799938
## 1593       New York             10017            2128680668                  NA
## 1594       New York             14727            7163756978                  NA
## 1595       New York             12866            5188856884                  NA
## 1596       New York             10456            7189914833                  NA
## 1597       New York             11720                    NA                  NA
## 1598       New York             14220            7165665252          7168250335
## 1599       New York             11510            5163775000          5163775050
## 1600       New York             10543            9146986005                  NA
## 1601       New York             10456            7186964070                  NA
## 1602       New York             12866            5186934400                  NA
## 1603       New York             11542            5166761100                  NA
## 1604       New York             10452                    NA                  NA
## 1605       New York             12206            5185251030                  NA
## 1606       New York             11204            7182340073                  NA
## 1607       New York             11706            6314146800                  NA
## 1608       New York             10950            8457837040                  NA
## 1609       New York             11207            7182405212                  NA
## 1610       New York             10451            7186818700          7182926349
## 1611       New York             10451            7182924451                  NA
## 1612       New York             10010                    NA                  NA
## 1613       New York             10463            7187965800                  NA
## 1614       New York             11550            5164836702                  NA
## 1615       New York             11788            5168540800                  NA
## 1616       New York             10011            2122415866                  NA
## 1617       New York             12866            5185838357                  NA
## 1618       New York        14623-2607            5852721930          5856722527
## 1619       New York             12828            5187472811                  NA
## 1620       New York             10032            2125441867          2127467902
## 1621       New York             12303            5186883422                  NA
## 1622       New York             14692            5857535071          5857535188
## 1623       New York             11214            7183731700                  NA
## 1624       New York             13502            3156247333          3157929698
## 1625       New York             14226                    NA                  NA
## 1626       New York             12455            8455862631                  NA
## 1627       New York             11231            7187804651                  NA
## 1628       New York             10466            7189209000                  NA
## 1629       New York             11692            7184745200          7184743524
## 1630       New York             12309                    NA                  NA
## 1631       New York             14201                    NA                  NA
## 1632       New York             10460                    NA                  NA
## 1633       New York             10459            7184831240                  NA
## 1634       New York             10452            7186818700          7185882107
## 1635       New York             11365            7183598700                  NA
## 1636       New York             11207            7186497000                  NA
## 1637       New York             13820            6074322252                  NA
## 1638       New York             10469            7183798100                  NA
## 1639       New York             12957                    NA                  NA
## 1640       New York             11030            5165628000          5165628074
## 1641       New York             12534            5184344979                  NA
## 1642       New York             11220                    NA                  NA
## 1643       New York             14623            5853416780                  NA
## 1644       New York             12428            8456474500                  NA
## 1645       New York             13903            6077712220          6077712225
## 1646       New York             10573                    NA                  NA
## 1647       New York             10453            7185833300                  NA
## 1648       New York             10455            7184831270                  NA
## 1649       New York             11206            2124424064                  NA
## 1650       New York             10924            8453601207          8452913737
## 1651       New York             11206            7182602931                  NA
## 1652       New York             11201            7186433768                  NA
## 1653       New York             12723            8457943300          8457943240
## 1654       New York             10601            9145935050                  NA
## 1655       New York             11572            5166789640                  NA
## 1656       New York             11229            7183756111          7183756619
## 1657       New York             13323                    NA                  NA
## 1658       New York             12601                    NA                  NA
## 1659       New York             11042            7184707621                  NA
## 1660       New York             12804                    NA                  NA
## 1661       New York             10021            2128210744                  NA
## 1662       New York             12206                    NA                  NA
## 1663       New York             12901            5185627700                  NA
## 1664       New York             11225            2123664500                  NA
## 1665       New York             13069            3155936670                  NA
## 1666       New York             14564            5852760800                  NA
## 1667       New York             10002            2126775710                  NA
## 1668       New York             14127            7166670001                  NA
## 1669       New York             13760            6077573102          6077573103
## 1670       New York             10032            2127400130                  NA
## 1671       New York             11953            5163618800                  NA
## 1672       New York             12205            5184649999                  NA
## 1673       New York             13413            3157344978          3152357498
## 1674       New York             13165                    NA                  NA
## 1675       New York             13131            3152986569                  NA
## 1676       New York             10940            8456951200          8456951380
## 1677       New York             12020                    NA                  NA
## 1678       New York             11373            7182057772                  NA
## 1679       New York             13820            6074336470                  NA
## 1680       New York             10801            9146374720                  NA
## 1681       New York             12053            5188952000                  NA
## 1682       New York             10034            2129324000                  NA
## 1683       New York             12010            3158421900                  NA
## 1684       New York             10467            7186551991                  NA
## 1685       New York             11417                    NA                  NA
## 1686       New York             14621                    NA                  NA
## 1687       New York             11733                    NA                  NA
## 1688       New York             11501            5167425576                  NA
## 1689       New York             14626            5853686406          5853684439
## 1690       New York             14301            7162288224          7162858232
## 1691       New York             13905            6077782889                  NA
## 1692       New York             11233            7182212600          7182212691
## 1693       New York             11550            5169327799          5169321415
## 1694       New York             13142            3153873620                  NA
## 1695       New York             11230            7182587700                  NA
## 1696       New York             13502                    NA                  NA
## 1697       New York             13790            6077987818                  NA
## 1698       New York             11967            5168521000                  NA
## 1699       New York             12157            5182958365                  NA
## 1700       New York             11207            7182602931                  NA
## 1701       New York             14020            5853440584          5853444685
## 1702       New York             12804            5187920994          5187987458
## 1703       New York             11236            7184986400                  NA
## 1704       New York             11220                    NA                  NA
## 1705       New York             13642                    NA                  NA
## 1706       New York             10456            3474077103                  NA
## 1707       New York             10451                    NA                  NA
## 1708       New York             11229            7187434600          7187436400
## 1709       New York             11042            5166227400                  NA
## 1710       New York             11218            7186333300                  NA
## 1711       New York             10458                    NA                  NA
## 1712       New York             12065            5182684800                  NA
## 1713       New York             12208            5185257600                  NA
## 1714       New York             11204                    NA                  NA
## 1715       New York             11235            7187694100                  NA
## 1716       New York             14208            7168864377          7168860036
## 1717       New York             13069            3155987400                  NA
## 1718       New York             10305            7189875942                  NA
## 1719       New York             11580            5168234444                  NA
## 1720       New York             10010                    NA                  NA
## 1721       New York             11021                    NA                  NA
## 1722       New York             13630            3153473830                  NA
## 1723       New York             10128            2128971006                  NA
## 1724       New York             11372                    NA                  NA
## 1725       New York             10552            9146990800                  NA
## 1726       New York             13052            6077533797                  NA
## 1727       New York             13452            5185683403                  NA
## 1728       New York             10035                    NA                  NA
## 1729       New York             14850                    NA                  NA
## 1730       New York             11795            6316692555          6316695787
## 1731       New York             13203            3157036700                  NA
## 1732       New York             10604                    NA                  NA
## 1733       New York             10461                    NA                  NA
## 1734       New York             11772                    NA                  NA
## 1735       New York             14221            7166348132                  NA
## 1736       New York             14454            5853356001                  NA
## 1737       New York             12845            5187616415                  NA
## 1738       New York             10461                    NA                  NA
## 1739       New York             10466            7182983900          7182983901
## 1740       New York             13478            3153636000          3153612043
## 1741       New York             12075            5188280717                  NA
## 1742       New York             11434            7189457150          7189452596
## 1743       New York             14624            5852737600          5854245122
## 1744       New York             14760            7163738050                  NA
## 1745       New York             10002            2125666820                  NA
## 1746       New York             10520            9143661000          9143661017
## 1747       New York             13202            3154644237          3154649069
## 1748       New York             13619            3155195872                  NA
## 1749       New York             11219            7186867600                  NA
## 1750       New York             12010                    NA                  NA
## 1751       New York             14609            5853416732          5854821466
## 1752       New York             12550            8455641700          8455641727
## 1753       New York             11106            7184827772                  NA
## 1754       New York             12401            8453342750          8453313238
## 1755       New York             12020                    NA                  NA
## 1756       New York             13131            3156254388          3156254535
## 1757       New York             11901            6315486000                  NA
## 1758       New York             10523            9145925858                  NA
## 1759       New York             11205                    NA                  NA
## 1760       New York             12180            5182744125                  NA
## 1761       New York             10471            7188844201                  NA
## 1762       New York             11207                    NA                  NA
## 1763       New York             10456            7186964070                  NA
## 1764       New York             11941            6313665832                  NA
## 1765       New York             13676            3152654065          3152650012
## 1766       New York             10583                    NA                  NA
## 1767       New York             10504                    NA                  NA
## 1768       New York             14217            7164476100                  NA
## 1769       New York             12167            6076522537                  NA
## 1770       New York             11550            5164977520                  NA
## 1771       New York             14891                    NA                  NA
## 1772       New York             10462            7188636200          9145302177
## 1773       New York             14843            6073248110          6073248960
## 1774       New York             13326            6075472800                  NA
## 1775       New York             10035            6469689068                  NA
## 1776       New York             13815            6073371660                  NA
## 1777       New York             14604            7165302130                  NA
## 1778       New York             14226            7168352543                  NA
## 1779       New York             13202            3154353155                  NA
## 1780       New York             14626            5857237000                  NA
## 1781       New York             11743            6313858677                  NA
## 1782       New York        10065-6800                    NA                  NA
## 1783       New York             12901                    NA                  NA
## 1784       New York             14456            3157899821          3157897042
## 1785       New York             11413                    NA                  NA
## 1786       New York             12601            8454544100                  NA
## 1787       New York             14526            5855867433                  NA
## 1788       New York             14120            7166966193                  NA
## 1789       New York             14843            6073246900          6073246994
## 1790       New York             10035            6466860057          6466860081
## 1791       New York             12204            5184713221                  NA
## 1792       New York             11557            5163748830                  NA
## 1793       New York             11218            7182821036                  NA
## 1794       New York             13210            3154643165                  NA
## 1795       New York             11030            7184707621                  NA
## 1796       New York             13021            2126330800                  NA
## 1797       New York             14850            6072739111                  NA
## 1798       New York             11501            5166630333                  NA
## 1799       New York             12455                    NA                  NA
## 1800       New York             13815            6073374174                  NA
## 1801       New York             10305                    NA                  NA
## 1802       New York             14301            7162853421                  NA
## 1803       New York             10456            7185037700          7185037712
## 1804       New York             12144                    NA                  NA
## 1805       New York             14432            3154629561                  NA
## 1806       New York             10012            2129654839          2129656996
## 1807       New York             11375            5165624060                  NA
## 1808       New York             14642            5852758387          5852731118
## 1809       New York             11787            6314746034                  NA
## 1810       New York             11780            6318628000          6318626456
## 1811       New York             11550            5165354102          5162920565
## 1812       New York             10461            7184845639          7184101355
## 1813       New York             12866            5185873222                  NA
## 1814       New York             14120            7166944500                  NA
## 1815       New York             11215                    NA                  NA
## 1816       New York             12789            7182604600                  NA
## 1817       New York             10001            2122732500          2127361149
## 1818       New York             13073            6078985876                  NA
## 1819       New York             10452            7185582347                  NA
## 1820       New York             12801            5189261000                  NA
## 1821       New York             11901            6315486432          6315486435
## 1822       New York             10463            7185491203                  NA
## 1823       New York             10701            9143286080                  NA
## 1824       New York             10013            2122268866                  NA
## 1825       New York             13694                    NA                  NA
## 1826       New York             14432            3154620586                  NA
## 1827       New York             11217                    NA                  NA
## 1828       New York             12205            5184532361                  NA
## 1829       New York             12206            5184822455                  NA
## 1830       New York             12779            8453549300          8453549448
## 1831       New York             14843            6073248113                  NA
## 1832       New York             13617            3153799667                  NA
## 1833       New York             10011            2124638305          2124630952
## 1834       New York             10456            7189018800                  NA
## 1835       New York             12302                    NA                  NA
## 1836       New York             10512            8452795711                  NA
## 1837       New York             14895            7165931100                  NA
## 1838       New York             13210                    NA                  NA
## 1839       New York        12883-4004            5186232844                  NA
## 1840       New York             10567            9147379000                  NA
## 1841       New York             12095            5187628215          5187624109
## 1842       New York             11203            7182457000                  NA
## 1843       New York             11706            5169683000                  NA
## 1844       New York             11226                    NA                  NA
## 1845       New York             10472            7188636700                  NA
## 1846       New York             12901            5185623650          5185623801
## 1847       New York             12010            5187707557                  NA
## 1848       New York             12047                    NA                  NA
## 1849       New York             13224                    NA                  NA
## 1850       New York             13204                    NA                  NA
## 1851       New York             10549            9142421903                  NA
## 1852       New York             14075            7168592229                  NA
## 1853       New York             11223            7187487447          7187481287
## 1854       New York             12401            8459436022                  NA
## 1855       New York             11361            7184236638          7184233959
## 1856       New York             14609            5852758387                  NA
## 1857       New York             12401            9143313131                  NA
## 1858       New York             10452            7182062000                  NA
## 1859       New York             10467                    NA                  NA
## 1860       New York             10459            7188421412                  NA
## 1861       New York             10003            2129794300                  NA
## 1862       New York             10463            7184831270                  NA
## 1863       New York             10016            2125986726                  NA
## 1864       New York             10467            6174601114                  NA
## 1865       New York             13865            6077636130                  NA
## 1866       New York             12734            8454340376                  NA
## 1867       New York             11230            7184367600                  NA
## 1868       New York             14204            7168199200                  NA
## 1869       New York             10004            9173057700                  NA
## 1870       New York             10037            2126907400          2126908763
## 1871       New York             10705            9149659771                  NA
## 1872       New York             14610                    NA                  NA
## 1873       New York             12183                    NA                  NA
## 1874       New York             10453                    NA                  NA
## 1875       New York             13501            3158230808                  NA
## 1876       New York             14086            7166843000                  NA
## 1877       New York             13440            3157985888          3152666138
## 1878       New York             11229            7186151100          7184670103
## 1879       New York             10038            6464586100                  NA
## 1880       New York             14208                    NA                  NA
## 1881       New York             14004            7168621902                  NA
## 1882       New York             12206                    NA                  NA
## 1883       New York             14618            5852031055                  NA
## 1884       New York             10977            8454829395                  NA
## 1885       New York             13635            3155621055                  NA
## 1886       New York             11530            5166639556                  NA
## 1887       New York             13601            3157863770          3157863761
## 1888       New York             11787            6318647100                  NA
## 1889       New York             11420            7187402060                  NA
## 1890       New York             11797            5166924100          5166927571
## 1891       New York             13760            6077542323          6077541846
## 1892       New York             13743            6077636130                  NA
## 1893       New York             12893            5187473376                  NA
## 1894       New York             13309            3159423212                  NA
## 1895       New York             12182            5182351410                  NA
## 1896       New York             12831                    NA                  NA
## 1897       New York             10029            2126330800                  NA
## 1898       New York             14221            7166896681                  NA
## 1899       New York             10029            2124238993          2124238535
## 1900       New York             13790                    NA                  NA
## 1901       New York             13088            3154582800                  NA
## 1902       New York             10040            2125673500                  NA
## 1903       New York             11434            7183222500                  NA
## 1904       New York             14527            3157818448          3157818444
## 1905       New York             13808                    NA                  NA
## 1906       New York             10011            2122717250                  NA
## 1907       New York             11205            7189630800          7185345221
## 1908       New York             10970            8453642512                  NA
## 1909       New York             10010            6464387800                  NA
## 1910       New York             10952            8453526800                  NA
## 1911       New York             12754            8452924200                  NA
## 1912       New York             13850            6077721274          6077721642
## 1913       New York             10035                    NA                  NA
## 1914       New York             11354            7184281500                  NA
## 1915       New York             13662            3157694234                  NA
## 1916       New York             11733            6314440186                  NA
## 1917       New York             12110            5187135400          5187135401
## 1918       New York             10463                    NA                  NA
## 1919       New York             12144                    NA                  NA
## 1920       New York             14127            7167120600                  NA
## 1921       New York             11772                    NA                  NA
## 1922       New York             11790            6314448606          6314448575
## 1923       New York             11223            7185815799          7186767792
## 1924       New York             10302            7188761732                  NA
## 1925       New York             12801            5189265601                  NA
## 1926       New York             11225            7186867600                  NA
## 1927       New York             14043            7166840649                  NA
## 1928       New York             10990            8459875150                  NA
## 1929       New York             10035            6465534475          6465534480
## 1930       New York             14901            6077342984                  NA
## 1931       New York             11040            5165861500          5165861696
## 1932       New York             10128            2122897166                  NA
## 1933       New York             10025            2128654104                  NA
## 1934       New York             11354            7184615000                  NA
## 1935       New York             14623            5857842985                  NA
## 1936       New York             13215                    NA                  NA
## 1937       New York             11212            7184856000                  NA
## 1938       New York             10030                    NA                  NA
## 1939       New York             14068            7166393330                  NA
## 1940       New York             13904            6077242477                  NA
## 1941       New York             13760            6077542705                  NA
## 1942       New York             13350            3158666165                  NA
## 1943       New York             14072            7167735900                  NA
## 1944       New York             14715            5859281600                  NA
## 1945       New York             14221            7169295800                  NA
## 1946       New York             10457                    NA                  NA
## 1947       New York             11021            5162333456                  NA
## 1948       New York             11550            5165387171          5164813688
## 1949       New York             14202            7168476610                  NA
## 1950       New York             10025            2126782861                  NA
## 1951       New York             12804            5186934635                  NA
## 1952       New York             14101            7163538516                  NA
## 1953       New York             14127            7166620500                  NA
## 1954       New York             10552            9146686828                  NA
## 1955       New York             12953            5184818000          5184818028
## 1956       New York             10021            2126061236                  NA
## 1957       New York             14212            7169133916                  NA
## 1958       New York             11003            5165718208                  NA
## 1959       New York             14905            6077374230                  NA
## 1960       New York             13088            3154516911                  NA
## 1961       New York             10038                    NA                  NA
## 1962       New York             14224            7165581105                  NA
## 1963       New York             11779            5167376689                  NA
## 1964       New York             12207                    NA                  NA
## 1965       New York             11530            5169353737          5169325537
## 1966       New York             14211                    NA                  NA
## 1967       New York             10002                    NA                  NA
## 1968       New York             13501            3157988868                  NA
## 1969       New York             13850            6077985081                  NA
## 1970       New York             10805            9146322804                  NA
## 1971       New York             10469                    NA                  NA
## 1972       New York             13350            3158666964                  NA
## 1973       New York             11219            7182836000                  NA
## 1974       New York             11758            5167981800          5167981821
## 1975       New York             11230            6462611195                  NA
## 1976       New York             12189                    NA                  NA
## 1977       New York             12203            5184567831          5184567597
## 1978       New York             11208                    NA                  NA
## 1979       New York             12203                    NA                  NA
## 1980       New York             12308            5183824500                  NA
## 1981       New York             10940            8453437614          8453435390
## 1982       New York             10460            7186657565          7186657595
## 1983       New York             13165            3157874991                  NA
## 1984       New York             14224            7168280500                  NA
## 1985       New York             14850            6077374100                  NA
## 1986       New York             12208            5184346565          5184346611
## 1987       New York             10467            7189204067                  NA
## 1988       New York             10990            8459862276                  NA
## 1989       New York             11214            7182326700          7182599180
## 1990       New York             11798                    NA                  NA
## 1991       New York        12801-4328                    NA                  NA
## 1992       New York             13502            3157381428                  NA
## 1993       New York             10528            9149255300          9149255156
## 1994       New York             10701            9143787000                  NA
## 1995       New York             10504                    NA                  NA
## 1996       New York             13601            3157863710                  NA
## 1997       New York             12534                    NA                  NA
## 1998       New York             11040            7182892350                  NA
## 1999       New York             10601            9146810600                  NA
## 2000       New York             14623            5852141000          5852141136
## 2001       New York             10303            7187202245                  NA
## 2002       New York             10011                    NA                  NA
## 2003       New York             14211                    NA                  NA
## 2004       New York             12589                    NA                  NA
## 2005       New York             12414            5189439380          5189432306
## 2006       New York             11226                    NA                  NA
## 2007       New York             10013            2129250404                  NA
## 2008       New York             14411            5857982000          5857988444
## 2009       New York             11733            6314444500                  NA
## 2010       New York             10956            8453547000                  NA
## 2011       New York             12524            8454401280          8454401282
## 2012       New York             11354            7184751000          7184751001
## 2013       New York             11203            7186045221          7186045622
## 2014       New York             12524                    NA                  NA
## 2015       New York             13904            6072962300          6072962287
## 2016       New York             14414            5852262225                  NA
## 2017       New York             12701            8457941400                  NA
## 2018       New York             12180            5182685000                  NA
## 2019       New York             14534            5857580800                  NA
## 2020       New York             10520            9147343200          9147343428
## 2021       New York             12309            5183469400                  NA
## 2022       New York             10314            7188184442                  NA
## 2023       New York             14304            7162367887          7162367898
## 2024       New York             14620            5853418113          5852755119
## 2025       New York             11553            5167941868                  NA
## 2026       New York             14304                    NA                  NA
## 2027       New York             11201            7188586400          7185965067
## 2028       New York             11203            2124137298                  NA
## 2029       New York             14813            5852689250                  NA
## 2030       New York             10018            2129715471          2122908039
## 2031       New York             12832                    NA                  NA
## 2032       New York             10459            9176459225                  NA
## 2033       New York             14526            5859220475          5853850969
## 2034       New York             14779            7169451800                  NA
## 2035       New York             11231                    NA                  NA
## 2036       New York             12134            5188634200                  NA
## 2037       New York             14456            3157812250          3157810733
## 2038       New York             11220            7182837228          7186358250
## 2039       New York             11691            7184717400                  NA
## 2040       New York             10459                    NA                  NA
## 2041       New York             10306            7182266450          7182266607
## 2042       New York             13346            3158246230                  NA
## 2043       New York             11706                    NA                  NA
## 2044       New York             10452            7182991777                  NA
## 2045       New York             11040            7182892669          7182892323
## 2046       New York             10003            2126630800                  NA
## 2047       New York             10025            2123167917                  NA
## 2048       New York             11222            7182508005          7186254109
## 2049       New York             12401            8453397700                  NA
## 2050       New York             14623            5852758387                  NA
## 2051       New York             12534                    NA                  NA
## 2052       New York             13440                    NA                  NA
## 2053       New York             10024            2127462520          2127468596
## 2054       New York             11030            5165628730                  NA
## 2055       New York             13088                    NA                  NA
## 2056       New York             14623            5853340213          5854872213
## 2057       New York             14624                    NA                  NA
## 2058       New York             14845            6077955199          6077955198
## 2059       New York             11206                    NA                  NA
## 2060       New York             13202            3154354031                  NA
## 2061       New York             11385                    NA                  NA
## 2062       New York             14226                    NA                  NA
## 2063       New York             10453            7184831240                  NA
## 2064       New York             10021                    NA                  NA
## 2065       New York             13037            3156875100                  NA
## 2066       New York             14305                    NA                  NA
## 2067       New York             11228            7182585600          7182565828
## 2068       New York             10065            2126392000                  NA
## 2069       New York             10451                    NA                  NA
## 2070       New York             10037            2129391000                  NA
## 2071       New York             10304            7189795000                  NA
## 2072       New York             11691            7183272909                  NA
## 2073       New York             10562            9149411263          9149410093
## 2074       New York             11224            7182665700                  NA
## 2075       New York             10562            9149417300                  NA
## 2076       New York             11791            5164966400                  NA
## 2077       New York             11377            7182050287                  NA
## 2078       New York             14623            5854612000                  NA
## 2079       New York             14502            5859225070          5859229489
## 2080       New York             10021            2126061231          2125700648
## 2081       New York             12953            5185610605                  NA
## 2082       New York             10031            2125234295                  NA
## 2083       New York             14701            7166654905                  NA
## 2084       New York        12801-4348                    NA                  NA
## 2085       New York             14203            7168787000                  NA
## 2086       New York             14779                    NA                  NA
## 2087       New York             13835                    NA                  NA
## 2088       New York             13658                    NA                  NA
## 2089       New York             11215                    NA                  NA
## 2090       New York             11590            5165423636                  NA
## 2091       New York             12885            5187610300                  NA
## 2092       New York             10474            7185894312                  NA
## 2093       New York             12204            5184270473          5184270032
## 2094       New York             10451                    NA                  NA
## 2095       New York             10035            2125375363                  NA
## 2096       New York             14489            5855444400          5855544402
## 2097       New York             14580            5857878315                  NA
## 2098       New York             11710            5168261160          5168261163
## 2099       New York             14611            5857237000                  NA
## 2100       New York             12122            5188277730                  NA
## 2101       New York             12601            8454713720                  NA
## 2102       New York             11691            7184713400                  NA
## 2103       New York             12853            5182512447          5182514207
## 2104       New York             13329            3154298714                  NA
## 2105       New York             14559            5857237007          5857237770
## 2106       New York             11561            5164314400          5164312105
## 2107       New York             11226            7189405934                  NA
## 2108       New York             13903            6077622200                  NA
## 2109       New York             13617                    NA                  NA
## 2110       New York             10451            7186964070                  NA
## 2111       New York             10927            8454295381                  NA
## 2112       New York             10025            7187156276          7813729693
## 2113       New York             10457            7187163999                  NA
## 2114       New York             13803            6077533797                  NA
## 2115       New York             13204            3154767921                  NA
## 2116       New York             11207            6464599400                  NA
## 2117       New York             13815            6073374111                  NA
## 2118       New York             13820            6074315980                  NA
## 2119       New York             13057            3152800681          3152800706
## 2120       New York             10805            9146363947                  NA
## 2121       New York             11377                    NA                  NA
## 2122       New York             13021            3152557011                  NA
## 2123       New York             12208            5185257600                  NA
## 2124       New York             10003            2125338400                  NA
## 2125       New York             11207                    NA                  NA
## 2126       New York             14526            5858510700          5853888502
## 2127       New York             11787                    NA                  NA
## 2128       New York             12305            5183745353          5183825753
## 2129       New York             11218                    NA                  NA
## 2130       New York             10551            9146648000                  NA
## 2131       New York        12919-4966                    NA                  NA
## 2132       New York             11237            7189602985                  NA
## 2133       New York             14103            5857984100          5857985275
## 2134       New York             14048            7163661111                  NA
## 2135       New York             12401            8459436022                  NA
## 2136       New York             12545            8456775924                  NA
## 2137       New York             11590            5165719500                  NA
## 2138       New York             11231            7188021111                  NA
## 2139       New York             14092            7162974800                  NA
## 2140       New York             13619            3154933100                  NA
## 2141       New York             10019            6468782350                  NA
## 2142       New York             12159            5184512107                  NA
## 2143       New York             11201                    NA                  NA
## 2144       New York             13815            6073361618                  NA
## 2145       New York             10032            2128514512                  NA
## 2146       New York             11733            5164444240                  NA
## 2147       New York             14304            7168453500                  NA
## 2148       New York             13165            3157874920                  NA
## 2149       New York             14843                    NA                  NA
## 2150       New York             14569            5857868940                  NA
## 2151       New York             13790            6077638946          6077638949
## 2152       New York             12550                    NA                  NA
## 2153       New York             11201                    NA                  NA
## 2154       New York             14068            7166888822                  NA
## 2155       New York             14760            7165433255                  NA
## 2156       New York             12032            5188352341                  NA
## 2157       New York             12601            8452141910          8454836334
## 2158       New York             11212            7182405775                  NA
## 2159       New York             13903                    NA                  NA
## 2160       New York             13501            3157387186                  NA
## 2161       New York             11717            6318533456          6318533493
## 2162       New York             10562                    NA                  NA
## 2163       New York             14304            7162822041          7162821266
## 2164       New York             10512            8455820371          8453631416
## 2165       New York             11208            7182408600                  NA
## 2166       New York             11236            7189276300          7189276301
## 2167       New York             11787            6313612020                  NA
## 2168       New York             14892            6076872495          6076878179
## 2169       New York             12078                    NA                  NA
## 2170       New York             11725            6314996500          6317152908
## 2171       New York             12183                    NA                  NA
## 2172       New York             10026            2129326522          2133161479
## 2173       New York             10453            7184831208          7182946912
## 2174       New York             13021            3152538477                  NA
## 2175       New York             11219                    NA                  NA
## 2176       New York             12095            5187627553                  NA
## 2177       New York             13838            6075638022                  NA
## 2178       New York             11740                    NA                  NA
## 2179       New York             10456            7186964071                  NA
## 2180       New York             14618                    NA                  NA
## 2181       New York             14843            6073248000                  NA
## 2182       New York             11211            7183843475                  NA
## 2183       New York             11040            5165861500          5165861696
## 2184       New York             11221                    NA                  NA
## 2185       New York             13424            3157369311                  NA
## 2186       New York             11219            7182838930                  NA
## 2187       New York             11432            2125452447                  NA
## 2188       New York             12182            5188336900                  NA
## 2189       New York             13904                    NA                  NA
## 2190       New York             14611            5853683881                  NA
## 2191       New York             14624            5852477880                  NA
## 2192       New York             12550            2123244696                  NA
## 2193       New York             11206                    NA                  NA
## 2194       New York             14526            5855988505                  NA
## 2195       New York             14618            5857563790                  NA
## 2196       New York             10916            8452948154                  NA
## 2197       New York             12524            8458963636                  NA
## 2198       New York             13637                    NA                  NA
## 2199       New York             11355            7186701021                  NA
## 2200       New York             13365            3158231000                  NA
## 2201       New York             10037                    NA                  NA
## 2202       New York             11223                    NA                  NA
## 2203       New York             14437            7163356001                  NA
## 2204       New York        12842-2021            5186232844                  NA
## 2205       New York             11224                    NA                  NA
## 2206       New York             12477            8453342750          8453313238
## 2207       New York             10022            7182062000                  NA
## 2208       New York             11691            7188688230                  NA
## 2209       New York             10035            2124202873                  NA
## 2210       New York             11790            6314449404                  NA
## 2211       New York             13346                    NA                  NA
## 2212       New York             14526                    NA                  NA
## 2213       New York             12528            8456919225          8456916408
## 2214       New York             12901            5185618465          5185613182
## 2215       New York             11563            5165964101                  NA
## 2216       New York             14701            7164833470                  NA
## 2217       New York             14837                    NA                  NA
## 2218       New York             13456                    NA                  NA
## 2219       New York             12206            5184654771                  NA
## 2220       New York             14420            7166376822                  NA
## 2221       New York             14744            5855672207                  NA
## 2222       New York             11207            7183455000          7183455794
## 2223       New York             14203            7168858318                  NA
## 2224       New York             12528            8456917201                  NA
## 2225       New York             12565            5186724021                  NA
## 2226       New York             11223                    NA                  NA
## 2227       New York             12983            5188914141                  NA
## 2228       New York             10456            7182931500                  NA
## 2229       New York             10460            7188601111                  NA
## 2230       New York             10029            2123602600                  NA
## 2231       New York             11207            7184853400                  NA
## 2232       New York             10595            9144937018          9144938027
## 2233       New York             12601            8454852273          8454857321
## 2234       New York             10573            9147378899                  NA
## 2235       New York             10065                    NA                  NA
## 2236       New York             11572            5162558413                  NA
## 2237       New York             10027            2126621826                  NA
## 2238       New York             13905                    NA                  NA
## 2239       New York             12084            5184526701                  NA
## 2240       New York             11415            7187933341                  NA
## 2241       New York             13619            3154933220                  NA
## 2242       New York             12771            8458565351                  NA
## 2243       New York             10458            7189603805                  NA
## 2244       New York             12834            5186929861                  NA
## 2245       New York             13045            6076624521          6077536566
## 2246       New York             10801            9148135176                  NA
## 2247       New York             12180            5182702640                  NA
## 2248       New York             14221            7168458711                  NA
## 2249       New York             14020            5853431300          5853443756
## 2250       New York             11366            7185918300                  NA
## 2251       New York             12508            8458318704          8458313602
## 2252       New York             10469            7186552848                  NA
## 2253       New York             11968            5168693700                  NA
## 2254       New York             10940                    NA                  NA
## 2255       New York             11210            7187588920                  NA
## 2256       New York             10705            9143781071                  NA
## 2257       New York             11234            7189681515                  NA
## 2258       New York             10304                    NA                  NA
## 2259       New York             11229            7183761004          7183826814
## 2260       New York             10026            2129494379                  NA
## 2261       New York             11205            7183996234                  NA
## 2262       New York             12197                    NA                  NA
## 2263       New York             14605            5854235824                  NA
## 2264       New York             14222            7168839487                  NA
## 2265       New York             10065                    NA                  NA
## 2266       New York             14221            7163321000                  NA
## 2267       New York             11021            5164663001          5164981685
## 2268       New York             14606            5854532700          5852271418
## 2269       New York             11230            7182835880                  NA
## 2270       New York             10467                    NA                  NA
## 2271       New York             12518            8454587800                  NA
## 2272       New York             10466                    NA                  NA
## 2273       New York             11040            5165861575          5165861690
## 2274       New York             12401            9143313131                  NA
## 2275       New York             12603            8454869494                  NA
## 2276       New York             13902            6077227225          6077720061
## 2277       New York             10021            2128791600                  NA
## 2278       New York             11435            7184804025                  NA
## 2279       New York             10466            2122355100          2122355411
## 2280       New York             10453            7184231270                  NA
## 2281       New York             11201            7187801224          7187802592
## 2282       New York             13480            3158246083          3158243182
## 2283       New York             13820                    NA                  NA
## 2284       New York             10455            7187420700                  NA
## 2285       New York             13502            3156248900          3157356027
## 2286       New York             10956            8456344648                  NA
## 2287       New York             12205            5184892663                  NA
## 2288       New York             10709            9147871070                  NA
## 2289       New York             10463                    NA                  NA
## 2290       New York             10019                    NA                  NA
## 2291       New York             12901            5185635440          5185631206
## 2292       New York             11901            6312845500                  NA
## 2293       New York             10011                    NA                  NA
## 2294       New York             11205                    NA                  NA
## 2295       New York             14760            7163757300                  NA
## 2296       New York             11372                    NA                  NA
## 2297       New York             14203            7167483101          7167483288
## 2298       New York             11249            7188586200                  NA
## 2299       New York             14304            7162985800                  NA
## 2300       New York             10457            7185831800                  NA
## 2301       New York             11968            6312681008                  NA
## 2302       New York             12549            8454573155          8454579663
## 2303       New York             10027            2129232525                  NA
## 2304       New York             11211            2124424064                  NA
## 2305       New York             11554            5165725906                  NA
## 2306       New York             11776            6318285554                  NA
## 2307       New York             10001            2126097300          2122900751
## 2308       New York             10463            7185487900                  NA
## 2309       New York             14207            7168716072                  NA
## 2310       New York             14221            7166344050                  NA
## 2311       New York             14201            7168752904                  NA
## 2312       New York             14211            7164476475                  NA
## 2313       New York             14228            7168398000                  NA
## 2314       New York             10009            2124778864                  NA
## 2315       New York             11042            5167348000                  NA
## 2316       New York             14620            5852718700                  NA
## 2317       New York             13440            3153387540          3153387695
## 2318       New York             12065                    NA                  NA
## 2319       New York             12801            5189267200                  NA
## 2320       New York             14424            5853964343                  NA
## 2321       New York             12304            5183934117                  NA
## 2322       New York             12901            5185612000                  NA
## 2323       New York             10606            9144280910                  NA
## 2324       New York             12208            5184898336                  NA
## 2325       New York             11201                    NA                  NA
## 2326       New York             12206            5184654771                  NA
## 2327       New York             11433            7182979100          7182970625
## 2328       New York             14580            5856714300                  NA
## 2329       New York             13326            6075477820                  NA
## 2330       New York             10017            2127512100          2127512101
## 2331       New York             12538            8452291020                  NA
## 2332       New York             10453            7184231207          7182946912
## 2333       New York             11042                    NA                  NA
## 2334       New York             10459            2123664500                  NA
## 2335       New York             13440            3153365400                  NA
## 2336       New York             12203                    NA                  NA
## 2337       New York             11754            6312695800          6312695876
## 2338       New York             11374            7189755202                  NA
## 2339       New York             12932            5188733500                  NA
## 2340       New York             14760            7163756171          7163756394
## 2341       New York             10465            3473291800                  NA
## 2342       New York             11691            7184712600                  NA
## 2343       New York             13642            3152874863          3155359235
## 2344       New York             12524            8458966978          8458962130
## 2345       New York             13820            6074325563                  NA
## 2346       New York             14613            5859223409                  NA
## 2347       New York             10921            8456512144          8456510982
## 2348       New York             12455            8455861800                  NA
## 2349       New York             14527            3155312700                  NA
## 2350       New York             14094            7164397435                  NA
## 2351       New York             10305                    NA                  NA
## 2352       New York             10453                    NA                  NA
## 2353       New York             11580            5162566000                  NA
## 2354       New York             13126            1312600000                  NA
## 2355       New York             12020            5185873222                  NA
## 2356       New York             10507            9142421823          9142422716
## 2357       New York             12564            8458557300          8454277051
## 2358       New York             12550                    NA                  NA
## 2359       New York             14621            5859225700                  NA
## 2360       New York             11215                    NA                  NA
## 2361       New York             14214            7168352510                  NA
## 2362       New York             10510            9149415100          9149414752
## 2363       New York             13676            3152651055          3152651058
## 2364       New York             14843            6073240490                  NA
## 2365       New York             14580            7167871250                  NA
## 2366       New York             11209            7187485219                  NA
## 2367       New York             11520            5166233600                  NA
## 2368       New York             11206                    NA                  NA
## 2369       New York             13367            3153765308          3153765435
## 2370       New York             10309            7182269515                  NA
## 2371       New York             12758            8454393579                  NA
## 2372       New York             13317            5188421900                  NA
## 2373       New York             10509            8452783636          8452785723
## 2374       New York             10303            7187202245                  NA
## 2375       New York             11213            7182400499                  NA
## 2376       New York             14471            7163966527                  NA
## 2377       New York             14625            5859229700                  NA
## 2378       New York             14621            5859224325          5854135011
## 2379       New York             11944            6314771000                  NA
## 2380       New York             13057            3154644202          3154642605
## 2381       New York             14870            6079364108                  NA
## 2382       New York             13790            6077636666                  NA
## 2383       New York             13126            3153431800                  NA
## 2384       New York             11218            7186863734                  NA
## 2385       New York             10034            2129494379                  NA
## 2386       New York             11233                    NA                  NA
## 2387       New York             11743            6312715800                  NA
## 2388       New York             14618            5852958500                  NA
## 2389       New York             13807            6075476336                  NA
## 2390       New York             13088            3156341100          3156341111
## 2391       New York             11212                    NA                  NA
## 2392       New York             10451            2129654806          7185858275
## 2393       New York             10314                    NA                  NA
## 2394       New York             10021            2123277511                  NA
## 2395       New York             10016            2122638400                  NA
## 2396       New York             13350            3155742300                  NA
## 2397       New York             13440            3153387640                  NA
## 2398       New York             14092            7162982009          7162982476
## 2399       New York             13202            3154767921                  NA
## 2400       New York             11366            7184253300          7184253399
## 2401       New York             11691            7184717000          7184719813
## 2402       New York             10940            8453437614                  NA
## 2403       New York             10456            7182931500          7187720765
## 2404       New York             14201            7168874830                  NA
## 2405       New York             14513            3153322700                  NA
## 2406       New York             13661            3157828450                  NA
## 2407       New York             10573            9149347980                  NA
## 2408       New York             12449            8453367235                  NA
## 2409       New York             10467                    NA                  NA
## 2410       New York             10018                    NA                  NA
## 2411       New York             14623            5853416711                  NA
## 2412       New York             11429            7184641800                  NA
## 2413       New York             12601            8454863400                  NA
## 2414       New York             10589            9143736585          9142328346
## 2415       New York             14625            5852678200          5852678256
## 2416       New York             13460            6072344051          6072345004
## 2417       New York             13501            3157988100                  NA
## 2418       New York             10463            7185978500                  NA
## 2419       New York             10467            7182316700                  NA
## 2420       New York             13413            3157357287          3156246936
## 2421       New York             11225                    NA                  NA
## 2422       New York             14620            5852731953                  NA
## 2423       New York             12208            5185251305                  NA
## 2424       New York             14480                    NA                  NA
## 2425       New York             13460                    NA                  NA
## 2426       New York             11432                    NA                  NA
## 2427       New York             10520            9142715151                  NA
## 2428       New York             14052            7166521560                  NA
## 2429       New York             11418            7182066000                  NA
## 2430       New York             12308            5186883422                  NA
## 2431       New York             10460            7186964071                  NA
## 2432       New York             12110            5187821181                  NA
## 2433       New York             14605            5855462595                  NA
## 2434       New York             13601            3157887323          3157889653
## 2435       New York             11235            7188914400          7184841076
## 2436       New York             11946                    NA                  NA
## 2437       New York             10461            7189185000                  NA
## 2438       New York             11944            6314472678                  NA
## 2439       New York             13045            6077569921          6077568954
## 2440       New York             14580            5859220580                  NA
## 2441       New York             11203            7187035917                  NA
## 2442       New York             11794            6316328942                  NA
## 2443       New York             11355            7186703400                  NA
## 2444       New York             14521            6074030065          6074030093
## 2445       New York             11201            7182602931                  NA
## 2446       New York             13827            6076878600                  NA
## 2447       New York             14902            6077336541          6077377839
## 2448       New York             13135            3156954700          3156954706
## 2449       New York             14626            5857237205                  NA
## 2450       New York             11779            6316380657          6316380623
## 2451       New York             12068            5188533531                  NA
## 2452       New York             11415            7182611000                  NA
## 2453       New York             11795            6313764144                  NA
## 2454       New York             14850            6072744011                  NA
## 2455       New York             12180                    NA                  NA
## 2456       New York             11237            7189637101          7189637196
## 2457       New York             14226            7168319435                  NA
## 2458       New York             12047            5182351100                  NA
## 2459       New York             11772            6317583600                  NA
## 2460       New York             13413            3154927666          3157929698
## 2461       New York             13502                    NA                  NA
## 2462       New York             10701            9145935050                  NA
## 2463       New York             12207            5184633882                  NA
## 2464       New York             10305                    NA                  NA
## 2465       New York             12561            9147348967          9147348958
## 2466       New York             10457            7189606100                  NA
## 2467       New York             11235            7186464441          7186156381
## 2468       New York             14623            5852758387                  NA
## 2469       New York             11772            8454769359                  NA
## 2470       New York             10550            9149647300                  NA
## 2471       New York             11722            5162340550                  NA
## 2472       New York             10013            2129419090                  NA
## 2473       New York             11236            7182515600                  NA
## 2474       New York             14902            6077347107                  NA
## 2475       New York             12010            5185802626                  NA
## 2476       New York             10573                    NA                  NA
## 2477       New York             13617            3152653300                  NA
## 2478       New York             10029            2123603600                  NA
## 2479       New York             10010            2122545350                  NA
## 2480       New York             11901            6313692005                  NA
## 2481       New York             13212            3154986200                  NA
## 2482       New York             10021            2126061236                  NA
## 2483       New York             13850            6077981916                  NA
## 2484       New York             12449            8453363500          8453367899
## 2485       New York             10469            7187988600                  NA
## 2486       New York             12883            5185856771          5185853866
## 2487       New York             11203            7186045000          7186045536
## 2488       New York             13421            3153636000                  NA
## 2489       New York             13825            6079882854                  NA
## 2490       New York             13815            6073363915          6073371026
## 2491       New York             14617            7164671070                  NA
## 2492       New York             11209            7187450860          7187450867
## 2493       New York             12572            8458713001                  NA
## 2494       New York             13502            3157977392                  NA
## 2495       New York             10710                    NA                  NA
## 2496       New York             10305                    NA                  NA
## 2497       New York             13057            3154467085          3154707509
## 2498       New York             13165            3155391920                  NA
## 2499       New York             14837            6072437881                  NA
## 2500       New York             13088            3154579946                  NA
## 2501       New York             13413            3156248500          3156248515
## 2502       New York             14701            7167534314                  NA
## 2503       New York             11795            6313764109                  NA
## 2504       New York             12095            5187626731                  NA
## 2505       New York             14454            7162431400                  NA
## 2506       New York             14905            6077374230                  NA
## 2507       New York             10461            7182391790                  NA
## 2508       New York             14850            6072665310                  NA
## 2509       New York             12550            8455653138                  NA
## 2510       New York             11229            7186925300                  NA
## 2511       New York             13827            6076874222                  NA
## 2512       New York             10457            7184831270                  NA
## 2513       New York             11772            6317583600                  NA
## 2514       New York             14513                    NA                  NA
## 2515       New York             13090            3156528696                  NA
## 2516       New York             10027            7182602931                  NA
## 2517       New York             11694            7186341400                  NA
## 2518       New York             12203            5188691044                  NA
## 2519       New York             14618            5852561330                  NA
## 2520       New York             11794            6314442701                  NA
## 2521       New York             10014            2122556690                  NA
## 2522       New York             11782            6315679300          6315670374
## 2523       New York             11212            7184954680                  NA
## 2524       New York             12524            8458388111                  NA
## 2525       New York             10512            8452795711                  NA
## 2526       New York             13411            6077469332                  NA
## 2527       New York             11021                    NA                  NA
## 2528       New York             11232            3475992100                  NA
## 2529       New York             13045                    NA                  NA
## 2530       New York             13613            3153895181                  NA
## 2531       New York             10520            9147396700                  NA
## 2532       New York             10025            2123045429                  NA
## 2533       New York             14626                    NA                  NA
## 2534       New York             12501            9147348542                  NA
## 2535       New York             14214            7169869199                  NA
## 2536       New York             13617            3153868821                  NA
## 2537       New York             14215            7168318892                  NA
## 2538       New York             10509            8458789078                  NA
## 2539       New York             10035            2122896650                  NA
## 2540       New York             10016                    NA                  NA
## 2541       New York             11434            5165465203                  NA
## 2542       New York             11354            7189613500          7184611784
## 2543       New York             12946                    NA                  NA
## 2544       New York             11209            7188368444                  NA
## 2545       New York             13815            6073361361                  NA
## 2546       New York             14626            5852251422                  NA
## 2547       New York             10452            7189602781                  NA
## 2548       New York             14607            5854611991                  NA
## 2549       New York             14548            5852893560                  NA
## 2550       New York             11237            7189637101                  NA
## 2551       New York             12047            5182375630                  NA
## 2552       New York             12010            5188424360          5188426009
## 2553       New York             10522            9146936800          9146930188
## 2554       New York             11575            5163782000                  NA
## 2555       New York             13219            3154751433          3154750944
## 2556       New York             13601            3157829450                  NA
## 2557       New York             11414            7183229800                  NA
## 2558       New York             14623            5852925830                  NA
## 2559       New York             10012            2124316177          2129667160
## 2560       New York             14722            7167932200                  NA
## 2561       New York             10040            2127819800                  NA
## 2562       New York             11510                    NA                  NA
## 2563       New York             10035            2128442020                  NA
## 2564       New York             13501            3157344484                  NA
## 2565       New York             12309            5183469400                  NA
## 2566       New York             11220                    NA                  NA
## 2567       New York             12180            5182746200          5182742908
## 2568       New York             11204                    NA                  NA
## 2569       New York             11691            7183274503          7183270043
## 2570       New York             12401            8453389711                  NA
## 2571       New York             11226                    NA                  NA
## 2572       New York             14221            7165683600                  NA
## 2573       New York             13421                    NA                  NA
## 2574       New York             10578            9142773691                  NA
## 2575       New York             14620            5855468400                  NA
## 2576       New York             10562            9143337061                  NA
## 2577       New York             13903            6076581003          6076581006
## 2578       New York             13820            6074328501                  NA
## 2579       New York             11238            7182602931                  NA
## 2580       New York             14302            7162784000                  NA
## 2581       New York             11432            7182641111                  NA
## 2582       New York             11232            2127742950                  NA
## 2583       New York             14217            7164476600                  NA
## 2584       New York             14621            5854547530                  NA
## 2585       New York             10010            2129989930                  NA
## 2586       New York             13606            3157829450                  NA
## 2587       New York             14620            5852758439          5852428707
## 2588       New York             10605            9149480050                  NA
## 2589       New York             12180                    NA                  NA
## 2590       New York             10456            7184663255                  NA
## 2591       New York             10461            7184058550                  NA
## 2592       New York             13803            6077533797                  NA
## 2593       New York             14760            7163737134                  NA
## 2594       New York             10462            7189206062                  NA
## 2595       New York             13501            3157243987                  NA
## 2596       New York             13421            3153638711                  NA
## 2597       New York             10562            9144068124                  NA
## 2598       New York             10310                    NA                  NA
## 2599       New York             11803            5164330600          5164335512
## 2600       New York             10703            9149647300                  NA
## 2601       New York             10469                    NA                  NA
## 2602       New York             12540            8454272894                  NA
## 2603       New York             10589                    NA                  NA
## 2604       New York             10473            7188612334                  NA
## 2605       New York             12303            5183563139                  NA
## 2606       New York             14607            5852412100                  NA
## 2607       New York             12204            5184713221                  NA
## 2608       New York             14750            7163380033          7163381576
## 2609       New York             13618            3156542530                  NA
## 2610       New York             12601            8454318117          8454853762
## 2611       New York             10591            9143327599                  NA
## 2612       New York             11207            7183452273          7184859236
## 2613       New York             10468            7185630757                  NA
## 2614       New York             11772            6316874195                  NA
## 2615       New York             11570            5167052525                  NA
## 2616       New York             13357            3154441900                  NA
## 2617       New York             11432            7186576363                  NA
## 2618       New York             11733            6314444601                  NA
## 2619       New York             14760            7163725735                  NA
## 2620       New York             11901            6317277744          6317277223
## 2621       New York             12095            5187250055                  NA
## 2622       New York             10023                    NA                  NA
## 2623       New York             14605            5859227404                  NA
## 2624       New York             12866            5185847460                  NA
## 2625       New York             11238            7186136653                  NA
## 2626       New York             13662            3157699956                  NA
## 2627       New York             14612            5852250920          5852255126
## 2628       New York             12901            5185633261          5185621367
## 2629       New York             10469            7188826400                  NA
## 2630       New York             11208                    NA                  NA
## 2631       New York             14207                    NA                  NA
## 2632       New York             12095                    NA                  NA
## 2633       New York             11106            2125955810                  NA
## 2634       New York             12095            5187624546                  NA
## 2635       New York             13760            6077547148                  NA
## 2636       New York             10459            7183202577          3475908053
## 2637       New York             14618            5852744626                  NA
## 2638       New York             13790            6077636000                  NA
## 2639       New York             13148                    NA                  NA
## 2640       New York             10977                    NA                  NA
## 2641       New York             11751            6314397237          6314397290
## 2642       New York             10463            7187968100                  NA
## 2643       New York             13045            6077567200                  NA
## 2644       New York             14607            5852758387                  NA
## 2645       New York             14513                    NA                  NA
## 2646       New York             14411            5855890809                  NA
## 2647       New York             13601            3158362200                  NA
## 2648       New York             11220            7186307300                  NA
## 2649       New York             11701            6312640222          6313960024
## 2650       New York             10924            8454711530          8452941180
## 2651       New York             11220            3478035541                  NA
## 2652       New York             11710                    NA                  NA
## 2653       New York             11501            5166632599                  NA
## 2654       New York             13421            3153634419          3153634427
## 2655       New York             11788            6314449600          6314449623
## 2656       New York             11219            7188511000                  NA
## 2657       New York             13021            3152536796                  NA
## 2658       New York             14416            5853445349                  NA
## 2659       New York             13815            6073343556          6073343688
## 2660       New York             12550            8452202146                  NA
## 2661       New York             11722            6315435100                  NA
## 2662       New York             10461            7184098200                  NA
## 2663       New York             12305            5183721160                  NA
## 2664       New York             14620            5852629106          5852622046
## 2665       New York             11042            5162333780                  NA
## 2666       New York             12095                    NA                  NA
## 2667       New York             11530            5163570004                  NA
## 2668       New York             13901            6077223417          6077718282
## 2669       New York             12524            8458961500                  NA
## 2670       New York             11429            7182176200                  NA
## 2671       New York             10034            7187164400                  NA
## 2672       New York             13501            3157246907                  NA
## 2673       New York             11788            6318513810                  NA
## 2674       New York             14569            5852281195          5852281200
## 2675       New York             11576                    NA                  NA
## 2676       New York             10952            8453529000                  NA
## 2677       New York             14411                    NA                  NA
## 2678       New York             13903                    NA                  NA
## 2679       New York             14590            3155949444                  NA
## 2680       New York             14760            7167016831                  NA
## 2681       New York             12078            5187254545                  NA
## 2682       New York             13820            6074327924          6074325836
## 2683       New York             10701            9143787358          9143781042
## 2684       New York             12953            5184811710                  NA
## 2685       New York             11220                    NA                  NA
## 2686       New York             12401            8453382500                  NA
## 2687       New York             11365            7186701021                  NA
## 2688       New York             11201            7189076248                  NA
## 2689       New York             14216            7168874830                  NA
## 2690       New York             10029            2128606300          2127224104
## 2691       New York             10025            2126782600                  NA
## 2692       New York             10010            2126961550                  NA
## 2693       New York             14618            5854425320                  NA
## 2694       New York             11385            7185716300          7185716396
## 2695       New York             11218            7186867600                  NA
## 2696       New York             10475            7182396500                  NA
## 2697       New York             13820            6075473456                  NA
## 2698       New York             11234            7182528440                  NA
## 2699       New York             13027            3156226595                  NA
## 2700       New York             11713                    NA                  NA
## 2701       New York             12832            5186422710          5186421318
## 2702       New York             11127                    NA                  NA
## 2703       New York             13473            3153765852                  NA
## 2704       New York             10548            9147886000                  NA
## 2705       New York             10029            2122417005                  NA
## 2706       New York             11501            5166638000          5166639489
## 2707       New York             12202            5184495170                  NA
## 2708       New York             10924            8452914740                  NA
## 2709       New York             12203            5182640797                  NA
## 2710       New York             11542            5166747588                  NA
## 2711       New York             11706            6316475550                  NA
## 2712       New York             10031            2124912300                  NA
## 2713       New York             10032                    NA                  NA
## 2714       New York             12572            8458765400                  NA
## 2715       New York        12885-1837            5186233918                  NA
## 2716       New York             13365            3158234546                  NA
## 2717       New York             10605            9146821480          9146821477
## 2718       New York             10471            7185485100                  NA
## 2719       New York             10019            2122317778          2125811870
## 2720       New York             14620            7162483288                  NA
## 2721       New York             11934            6318784400          6318786865
## 2722       New York             12144            5184772011                  NA
## 2723       New York             12572            8458762071                  NA
## 2724       New York             11418            7182062000                  NA
## 2725       New York             11542            5167502501          5164833556
## 2726       New York             14787            7163264646                  NA
## 2727       New York             10065            2126392000                  NA
## 2728       New York             13613            3153895004          3153895504
## 2729       New York             10460            7188240245                  NA
## 2730       New York             12601                    NA                  NA
## 2731       New York             11548            5166292033                  NA
## 2732       New York             11542            5166740500          5166747546
## 2733       New York             14527            3155365160                  NA
## 2734       New York             10036            2129384001                  NA
## 2735       New York             14456            3157818448                  NA
## 2736       New York             10474                    NA                  NA
## 2737       New York             11552            7184707621                  NA
## 2738       New York             13057            3156567218                  NA
## 2739       New York             12309            5182625447                  NA
## 2740       New York             12065            5183831783          5183835797
## 2741       New York             13208            3154557591                  NA
## 2742       New York             14214            7168621000                  NA
## 2743       New York             13439            6077469332                  NA
## 2744       New York             10314            7188761234                  NA
## 2745       New York             10027            2125311300                  NA
## 2746       New York             12307            5183824141                  NA
## 2747       New York             10017            2124191016          2128670342
## 2748       New York             11220            7186307300                  NA
## 2749       New York             11201            7188587200                  NA
## 2750       New York             11219                    NA                  NA
## 2751       New York             13367                    NA                  NA
## 2752       New York             10701            9143787777                  NA
## 2753       New York             10577            9145972133                  NA
## 2754       New York             10003            2129794300                  NA
## 2755       New York             14513            3153314690                  NA
## 2756       New York             12534                    NA                  NA
## 2757       New York        11042-1109            5164719300          5163028656
## 2758       New York             14850            6072725891                  NA
## 2759       New York             10473            7185188892                  NA
## 2760       New York             13309            3157986001                  NA
## 2761       New York             11354            7188860700                  NA
## 2762       New York             11368            7185926400                  NA
## 2763       New York             14225            7166308000                  NA
## 2764       New York             10461            7185182465                  NA
## 2765       New York             14487            5853463001                  NA
## 2766       New York             13903                    NA                  NA
## 2767       New York             14225            7168912400                  NA
## 2768       New York             14215                    NA                  NA
## 2769       New York             13304            3157246907                  NA
## 2770       New York             10603            9146997200          9146990837
## 2771       New York             11568            5165464239                  NA
## 2772       New York             10032            2127401780                  NA
## 2773       New York             10460                    NA                  NA
## 2774       New York             11967            6312059090                  NA
## 2775       New York             14456            3157899821          3157895768
## 2776       New York             10012            2129656914          2129656996
## 2777       New York             11354            7186700700                  NA
##                                                       Facility.Website
## 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                                   https://www.urbanhealthplan.org/
## 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                               https://stcharleshospital.chsli.org/
## 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                                 https://www.leroyvillagegreen.com/
## 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                                                                  
## 1001                                                                  
## 1002                                                                  
## 1003                                                                  
## 1004                                                                  
## 1005                                                                  
## 1006                                                                  
## 1007                                                                  
## 1008                                                                  
## 1009                                                                  
## 1010                                                                  
## 1011                                                                  
## 1012                                                                  
## 1013                                                                  
## 1014                                                                  
## 1015                                                                  
## 1016                                                                  
## 1017                                                                  
## 1018                                                                  
## 1019                                                                  
## 1020                                                                  
## 1021                                                                  
## 1022                                                                  
## 1023                                                                  
## 1024                                                                  
## 1025                                                                  
## 1026                                                                  
## 1027                                                                  
## 1028                                                                  
## 1029                                                                  
## 1030                                                                  
## 1031                                                                  
## 1032                                                                  
## 1033                                                                  
## 1034                                                                  
## 1035                                                                  
## 1036                                                                  
## 1037                                                                  
## 1038                                                                  
## 1039                                                                  
## 1040                                                                  
## 1041                                                                  
## 1042                                                                  
## 1043                                                                  
## 1044                                                                  
## 1045                                                                  
## 1046                                                                  
## 1047                                                                  
## 1048                                                                  
## 1049                                                                  
## 1050                                                                  
## 1051                                                                  
## 1052                                                                  
## 1053                                                                  
## 1054                                                                  
## 1055                                                                  
## 1056                                                                  
## 1057                                                                  
## 1058                                                                  
## 1059                                                                  
## 1060                                                                  
## 1061                                                                  
## 1062                                                                  
## 1063                                                                  
## 1064                                                                  
## 1065                                                                  
## 1066                                                                  
## 1067                                                                  
## 1068                                                                  
## 1069                                                                  
## 1070                                                                  
## 1071                                                                  
## 1072                                                                  
## 1073                                                                  
## 1074                                                                  
## 1075                                                                  
## 1076                                                                  
## 1077                                                                  
## 1078                                                                  
## 1079                                                                  
## 1080                                                                  
## 1081                                                                  
## 1082                                                                  
## 1083                                                                  
## 1084                                                                  
## 1085                                                                  
## 1086                                                                  
## 1087                                                                  
## 1088                                                                  
## 1089                                                                  
## 1090                                                                  
## 1091                                                                  
## 1092                                                                  
## 1093                                                                  
## 1094                                                                  
## 1095                                                                  
## 1096                                                                  
## 1097                                                                  
## 1098                                                                  
## 1099                                                                  
## 1100                                                                  
## 1101                                                                  
## 1102                                                                  
## 1103                                                                  
## 1104                                                                  
## 1105                                                                  
## 1106                                                                  
## 1107                                                                  
## 1108                                                                  
## 1109                                                                  
## 1110                                                                  
## 1111                                                                  
## 1112                                                                  
## 1113                                                                  
## 1114                                                                  
## 1115                                                                  
## 1116                                                                  
## 1117                                                                  
## 1118                                                                  
## 1119                                                                  
## 1120                                                                  
## 1121                                                                  
## 1122                                                                  
## 1123                                                                  
## 1124                                                                  
## 1125                                                                  
## 1126                                                                  
## 1127                                                                  
## 1128                                                                  
## 1129                                                                  
## 1130                                                                  
## 1131                                                                  
## 1132                                                                  
## 1133                                                                  
## 1134                                                                  
## 1135                                                                  
## 1136                                                                  
## 1137                                                                  
## 1138                                                                  
## 1139                                                                  
## 1140                                                                  
## 1141                                                                  
## 1142                                                                  
## 1143                                                                  
## 1144                                                                  
## 1145                                                                  
## 1146                                                                  
## 1147                                                                  
## 1148                                                                  
## 1149                                                                  
## 1150                                                                  
## 1151                                                                  
## 1152                                                                  
## 1153                                                                  
## 1154                                                                  
## 1155                                                                  
## 1156                                                                  
## 1157                                                                  
## 1158                                                                  
## 1159                                                                  
## 1160                                                                  
## 1161                                                                  
## 1162                                                                  
## 1163                                                                  
## 1164                                                                  
## 1165                                                                  
## 1166                                                                  
## 1167                                                                  
## 1168                                                                  
## 1169                                                                  
## 1170                                                                  
## 1171                                                                  
## 1172                                                                  
## 1173                                                                  
## 1174                                                                  
## 1175                                                                  
## 1176                                                                  
## 1177                                                                  
## 1178                                                                  
## 1179                                                                  
## 1180                                                                  
## 1181                                                                  
## 1182                                                                  
## 1183                                                                  
## 1184                                                                  
## 1185                                                                  
## 1186                                                                  
## 1187                                                                  
## 1188                                                                  
## 1189                                                                  
## 1190                                                                  
## 1191                                                                  
## 1192                                                                  
## 1193                                                                  
## 1194                                                                  
## 1195                                                                  
## 1196                                                                  
## 1197                                                                  
## 1198                                                                  
## 1199                                                                  
## 1200                                                                  
## 1201                                                                  
## 1202                                                                  
## 1203                                                                  
## 1204                                                                  
## 1205                                                                  
## 1206                                                                  
## 1207                                                                  
## 1208                                                                  
## 1209                                                                  
## 1210                                                                  
## 1211                                                                  
## 1212                                                                  
## 1213                                                                  
## 1214                                                                  
## 1215                                                                  
## 1216                                                                  
## 1217                                                                  
## 1218                                                                  
## 1219                                                                  
## 1220                                                                  
## 1221                                                                  
## 1222                                                                  
## 1223                                                                  
## 1224                                                                  
## 1225                                                                  
## 1226                                                                  
## 1227                                                                  
## 1228                                                                  
## 1229                                                                  
## 1230                                                                  
## 1231                                                                  
## 1232                                                                  
## 1233                                                                  
## 1234                                                                  
## 1235                                                                  
## 1236                                                                  
## 1237                                                                  
## 1238                                                                  
## 1239                                                                  
## 1240                                                                  
## 1241                                                                  
## 1242                                                                  
## 1243                                                                  
## 1244                                                                  
## 1245                                                                  
## 1246                                                                  
## 1247                                                                  
## 1248                                                                  
## 1249                                                                  
## 1250                                                                  
## 1251                                                                  
## 1252                                                                  
## 1253                                                                  
## 1254                                                                  
## 1255                                                                  
## 1256 https://www.bassett.org/locations/ao-fox-hospital-tri-town-campus
## 1257                                                                  
## 1258                                                                  
## 1259                                                                  
## 1260                                                                  
## 1261                                                                  
## 1262                                                                  
## 1263                                                                  
## 1264                                                                  
## 1265                                                                  
## 1266                                                                  
## 1267                                                                  
## 1268                                                                  
## 1269                                                                  
## 1270                                                                  
## 1271                                                                  
## 1272                                                                  
## 1273                                                                  
## 1274                                                                  
## 1275                                                                  
## 1276                                                                  
## 1277                                                                  
## 1278                                                                  
## 1279                                                                  
## 1280                                                                  
## 1281                                                                  
## 1282                                                                  
## 1283                                                                  
## 1284                                                                  
## 1285                                                                  
## 1286                                                                  
## 1287                                                                  
## 1288                                                                  
## 1289                                                                  
## 1290                                                                  
## 1291                                                                  
## 1292                                                                  
## 1293                                                                  
## 1294                                                                  
## 1295                                                                  
## 1296                                                                  
## 1297                                                                  
## 1298                                                                  
## 1299                                                                  
## 1300                                                                  
## 1301                                                                  
## 1302                                                                  
## 1303                                                                  
## 1304                                                                  
## 1305                                                                  
## 1306                                                                  
## 1307                                                                  
## 1308                                                                  
## 1309                                                                  
## 1310                                                                  
## 1311                                                                  
## 1312                                                                  
## 1313                                                                  
## 1314                                                                  
## 1315                                                                  
## 1316                                                                  
## 1317                                                                  
## 1318                                                                  
## 1319                                                                  
## 1320                                                                  
## 1321                                                                  
## 1322                                                                  
## 1323                                                                  
## 1324                                                                  
## 1325                                                                  
## 1326                                                                  
## 1327                                                                  
## 1328                                                                  
## 1329                                                                  
## 1330                                                                  
## 1331                                                                  
## 1332                                                                  
## 1333                                                                  
## 1334                                                                  
## 1335                                                                  
## 1336                                                                  
## 1337                                                                  
## 1338                                                                  
## 1339                                                                  
## 1340                                                                  
## 1341                                                                  
## 1342                                                                  
## 1343                                                                  
## 1344                                                                  
## 1345                                                                  
## 1346                                                                  
## 1347                                                                  
## 1348                                                                  
## 1349                                                                  
## 1350                                                                  
## 1351                                                                  
## 1352                                                                  
## 1353                                                                  
## 1354                                                                  
## 1355                                                                  
## 1356                                                                  
## 1357                                                                  
## 1358                                                                  
## 1359                                                                  
## 1360                                                                  
## 1361                                                                  
## 1362                                                                  
## 1363                                                                  
## 1364                                                                  
## 1365                                                                  
## 1366                                                                  
## 1367                                                                  
## 1368                                                                  
## 1369                                                                  
## 1370                                                                  
## 1371                                                                  
## 1372                                                                  
## 1373                                                                  
## 1374                                                                  
## 1375                                                                  
## 1376                                                                  
## 1377                                                                  
## 1378                                                                  
## 1379                                                                  
## 1380                                                                  
## 1381                                                                  
## 1382                                                                  
## 1383                                                                  
## 1384                                                                  
## 1385                                                                  
## 1386                                                                  
## 1387                                                                  
## 1388                                                                  
## 1389                                                                  
## 1390                                                                  
## 1391                                                                  
## 1392                                                                  
## 1393                                                                  
## 1394                                                                  
## 1395                                                                  
## 1396                                                                  
## 1397                                                                  
## 1398                                                                  
## 1399                                                                  
## 1400                                                                  
## 1401                                                                  
## 1402                                                                  
## 1403                                                                  
## 1404                                                                  
## 1405                                                                  
## 1406                                                                  
## 1407                                                                  
## 1408                                                                  
## 1409                                                                  
## 1410                                                                  
## 1411                                                                  
## 1412                                                                  
## 1413                                                                  
## 1414                                                                  
## 1415                                                                  
## 1416                                                                  
## 1417                                                                  
## 1418                                                                  
## 1419                                                                  
## 1420                                                                  
## 1421                                                                  
## 1422                                                                  
## 1423                                                                  
## 1424                                                                  
## 1425                                                                  
## 1426                                                                  
## 1427                                                                  
## 1428                                                                  
## 1429                                                                  
## 1430                                                                  
## 1431                                                                  
## 1432                                                                  
## 1433                                                                  
## 1434                                                                  
## 1435                                                                  
## 1436                                                                  
## 1437                                                                  
## 1438                                                                  
## 1439                                                                  
## 1440                                                                  
## 1441                                                                  
## 1442                                                                  
## 1443                                                                  
## 1444                                                                  
## 1445                                                                  
## 1446                                                                  
## 1447                                                                  
## 1448                                                                  
## 1449                                                                  
## 1450                                                                  
## 1451                                                                  
## 1452                                                                  
## 1453                                                                  
## 1454                                                                  
## 1455                                                                  
## 1456                                                                  
## 1457                                                                  
## 1458                                                                  
## 1459                                                                  
## 1460                                                                  
## 1461                                                                  
## 1462                                                                  
## 1463                                                                  
## 1464                                                                  
## 1465                                                                  
## 1466                                                                  
## 1467                                                                  
## 1468                                                                  
## 1469                                                                  
## 1470                                                                  
## 1471                                                                  
## 1472                                                                  
## 1473                                                                  
## 1474                                                                  
## 1475                                                                  
## 1476                                                                  
## 1477                                                                  
## 1478                                                                  
## 1479                                                                  
## 1480                                                                  
## 1481                                                                  
## 1482                                                                  
## 1483                                                                  
## 1484                                                                  
## 1485                                                                  
## 1486                                                                  
## 1487                                                                  
## 1488                                                                  
## 1489                                                                  
## 1490                                                                  
## 1491                                                                  
## 1492                                                                  
## 1493                                                                  
## 1494                                                                  
## 1495                                                                  
## 1496                                                                  
## 1497                                                                  
## 1498                                                                  
## 1499                                                                  
## 1500                                                                  
## 1501                                                                  
## 1502                                                                  
## 1503                                                                  
## 1504                                                                  
## 1505                                                                  
## 1506                                                                  
## 1507                                                                  
## 1508                                                                  
## 1509                                                                  
## 1510                                                                  
## 1511                                                                  
## 1512                                                                  
## 1513                                                                  
## 1514                                                                  
## 1515                                                                  
## 1516                                                                  
## 1517                                                                  
## 1518                                                                  
## 1519                                                                  
## 1520                                                                  
## 1521                                                                  
## 1522                                                                  
## 1523                                                                  
## 1524                                                                  
## 1525                                                                  
## 1526                                                                  
## 1527                                                                  
## 1528                                                                  
## 1529                                                                  
## 1530                                         https://wnybloodcare.org/
## 1531                                                                  
## 1532                                                                  
## 1533                                                                  
## 1534                                                                  
## 1535                                                                  
## 1536                                                                  
## 1537                                                                  
## 1538                                                                  
## 1539                                                                  
## 1540                                                                  
## 1541                                                                  
## 1542                                                                  
## 1543                                                                  
## 1544                                                                  
## 1545                                                                  
## 1546                                                                  
## 1547                                                                  
## 1548                                                                  
## 1549                                                                  
## 1550                                                                  
## 1551                                                                  
## 1552                                                                  
## 1553                                                                  
## 1554                                                                  
## 1555                                                                  
## 1556                                                                  
## 1557                                                                  
## 1558                                                                  
## 1559                                                                  
## 1560                                                                  
## 1561                                                                  
## 1562                                                                  
## 1563                                                                  
## 1564                                                                  
## 1565                                                                  
## 1566                                                                  
## 1567                                                                  
## 1568                                                                  
## 1569                                                                  
## 1570                                                                  
## 1571                                                                  
## 1572                                                                  
## 1573                                                                  
## 1574                                                                  
## 1575                                                                  
## 1576                                                                  
## 1577                                                                  
## 1578                                                                  
## 1579                                                                  
## 1580                                  https://www.urbanhealthplan.org/
## 1581                                                                  
## 1582                                                                  
## 1583                                                                  
## 1584                                                                  
## 1585                                                                  
## 1586                                                                  
## 1587                                                                  
## 1588                                                                  
## 1589                                                                  
## 1590                                                                  
## 1591                                                                  
## 1592                                                                  
## 1593                                                                  
## 1594                                                                  
## 1595                                                                  
## 1596                                                                  
## 1597                                                                  
## 1598                                                                  
## 1599                                                                  
## 1600                                                                  
## 1601                                                                  
## 1602                                                                  
## 1603                                                                  
## 1604                                                                  
## 1605                                                                  
## 1606                                                                  
## 1607                                                                  
## 1608                                                                  
## 1609                                                                  
## 1610                                                                  
## 1611                                                                  
## 1612                                                                  
## 1613                                                                  
## 1614                                                                  
## 1615                                                                  
## 1616                                                                  
## 1617                                                                  
## 1618                                                                  
## 1619                                                                  
## 1620                                                                  
## 1621                                                                  
## 1622                                                                  
## 1623                                                                  
## 1624                                                                  
## 1625                                                                  
## 1626                                                                  
## 1627                                                                  
## 1628                                                                  
## 1629                                                                  
## 1630                                                                  
## 1631                                                                  
## 1632                                                                  
## 1633                                                                  
## 1634                                                                  
## 1635                                                                  
## 1636                                                                  
## 1637                                                                  
## 1638                                                                  
## 1639                                                                  
## 1640                                                                  
## 1641                                                                  
## 1642                                                                  
## 1643                                                                  
## 1644                                                                  
## 1645                                                                  
## 1646                                                                  
## 1647                                                                  
## 1648                                                                  
## 1649                                                                  
## 1650                                                                  
## 1651                                                                  
## 1652                                                                  
## 1653                                                                  
## 1654                                                                  
## 1655                                                                  
## 1656                                                                  
## 1657                                                                  
## 1658                                                                  
## 1659                                                                  
## 1660                                                                  
## 1661                                                                  
## 1662                                                                  
## 1663                                                                  
## 1664                                                                  
## 1665                                                                  
## 1666                                                                  
## 1667                                                                  
## 1668                                                                  
## 1669                                                                  
## 1670                                                                  
## 1671                                                                  
## 1672                                                                  
## 1673                                                                  
## 1674                                                                  
## 1675                                                                  
## 1676                                                                  
## 1677                                                                  
## 1678                                                                  
## 1679                                                                  
## 1680                                                                  
## 1681                                                                  
## 1682                                                                  
## 1683                                                                  
## 1684                                                                  
## 1685                                                                  
## 1686                                                                  
## 1687                                                                  
## 1688                                                                  
## 1689                                                                  
## 1690                                                                  
## 1691                                                                  
## 1692                                                                  
## 1693                                                                  
## 1694                                                                  
## 1695                                                                  
## 1696                                                                  
## 1697                                                                  
## 1698                                                                  
## 1699                                                                  
## 1700                                                                  
## 1701                                                                  
## 1702                                                                  
## 1703                                                                  
## 1704                                                                  
## 1705                                                                  
## 1706                                                                  
## 1707                                                                  
## 1708                                                                  
## 1709                                                                  
## 1710                                                                  
## 1711                                                                  
## 1712                                                                  
## 1713                                                                  
## 1714                                                                  
## 1715                                                                  
## 1716                                                                  
## 1717                                                                  
## 1718                                                                  
## 1719                                                                  
## 1720                                                                  
## 1721                                                                  
## 1722                                                                  
## 1723                                                                  
## 1724                                                                  
## 1725                                                                  
## 1726                                                                  
## 1727                                                                  
## 1728                                                                  
## 1729                                                                  
## 1730                                                                  
## 1731                                                                  
## 1732                                                                  
## 1733                                                                  
## 1734                                                                  
## 1735                                                                  
## 1736                                                                  
## 1737                                                                  
## 1738                                                                  
## 1739                                                                  
## 1740                                                                  
## 1741                                                                  
## 1742                                                                  
## 1743                                                                  
## 1744                                                                  
## 1745                                                                  
## 1746                                                                  
## 1747                                                                  
## 1748                                                                  
## 1749                                                                  
## 1750                                                                  
## 1751                                                                  
## 1752                                                                  
## 1753                                                                  
## 1754                                                                  
## 1755                                                                  
## 1756                                                                  
## 1757                                                                  
## 1758                                                                  
## 1759                                                                  
## 1760                                                                  
## 1761                                                                  
## 1762                                                                  
## 1763                                                                  
## 1764                                                                  
## 1765                                                                  
## 1766                                                                  
## 1767                                                                  
## 1768                                                                  
## 1769                                                                  
## 1770                                                                  
## 1771                                                                  
## 1772                                                                  
## 1773                                                                  
## 1774                                                                  
## 1775                                                                  
## 1776                                                                  
## 1777                                                                  
## 1778                                                                  
## 1779                                                                  
## 1780                                                                  
## 1781                                                                  
## 1782                                                                  
## 1783                                                                  
## 1784                                                                  
## 1785                                                                  
## 1786                                                                  
## 1787                                                                  
## 1788                                                                  
## 1789                                                                  
## 1790                                                                  
## 1791                                                                  
## 1792                                                                  
## 1793                                                                  
## 1794                                                                  
## 1795                                                                  
## 1796                                                                  
## 1797                                                                  
## 1798                                                                  
## 1799                                                                  
## 1800                                                                  
## 1801                                                                  
## 1802                                                                  
## 1803                                                                  
## 1804                                                                  
## 1805                                                                  
## 1806                                                                  
## 1807                                                                  
## 1808                                                                  
## 1809                                                                  
## 1810                                                                  
## 1811                                                                  
## 1812                                                                  
## 1813                                                                  
## 1814                                                                  
## 1815                                                                  
## 1816                                                                  
## 1817                                                                  
## 1818                                                                  
## 1819                                                                  
## 1820                                                                  
## 1821                                                                  
## 1822                                                                  
## 1823                                                                  
## 1824                                                                  
## 1825                                                                  
## 1826                                                                  
## 1827                                                                  
## 1828                                                                  
## 1829                                                                  
## 1830                                                                  
## 1831                                                                  
## 1832                                                                  
## 1833                                                                  
## 1834                                                                  
## 1835                                                                  
## 1836                                                                  
## 1837                                                                  
## 1838                                                                  
## 1839                                                                  
## 1840                                                                  
## 1841                                                                  
## 1842                                                                  
## 1843                                                                  
## 1844                                                                  
## 1845                                                                  
## 1846                                                                  
## 1847                                                                  
## 1848                                                                  
## 1849                                                                  
## 1850                                                                  
## 1851                                                                  
## 1852                                                                  
## 1853                                                                  
## 1854                                                                  
## 1855                                                                  
## 1856                                                                  
## 1857                                                                  
## 1858                                                                  
## 1859                                                                  
## 1860                                                                  
## 1861                                                                  
## 1862                                                                  
## 1863                                                                  
## 1864                                                                  
## 1865                                                                  
## 1866                                                                  
## 1867                                                                  
## 1868                                                                  
## 1869                                                                  
## 1870                                                                  
## 1871                                                                  
## 1872                                                                  
## 1873                                                                  
## 1874                                                                  
## 1875                                                                  
## 1876                                                                  
## 1877                                                                  
## 1878                                                                  
## 1879                                                                  
## 1880                                                                  
## 1881                                                                  
## 1882                                                                  
## 1883                                                                  
## 1884                                                                  
## 1885                                                                  
## 1886                                                                  
## 1887                                                                  
## 1888                                                                  
## 1889                                                                  
## 1890                                                                  
## 1891                                                                  
## 1892                                                                  
## 1893                                                                  
## 1894                                                                  
## 1895                                                                  
## 1896                                                                  
## 1897                                                                  
## 1898                                                                  
## 1899                                                                  
## 1900                                                                  
## 1901                                                                  
## 1902                                                                  
## 1903                                                                  
## 1904                                                                  
## 1905                                                                  
## 1906                                                                  
## 1907                                                                  
## 1908                                                                  
## 1909                                                                  
## 1910                                                                  
## 1911                                                                  
## 1912                                                                  
## 1913                                                                  
## 1914                                                                  
## 1915                                                                  
## 1916                                                                  
## 1917                                                                  
## 1918                                                                  
## 1919                                                                  
## 1920                                                                  
## 1921                                                                  
## 1922                                                                  
## 1923                                                                  
## 1924                                                                  
## 1925                                                                  
## 1926                                                                  
## 1927                                                                  
## 1928                                                                  
## 1929                                                                  
## 1930                                                                  
## 1931                                                                  
## 1932                                                                  
## 1933                                                                  
## 1934                                                                  
## 1935                                                                  
## 1936                                                                  
## 1937                                                                  
## 1938                                                                  
## 1939                                                                  
## 1940                                                                  
## 1941                                                                  
## 1942                                                                  
## 1943                                                                  
## 1944                                                                  
## 1945                                                                  
## 1946                                                                  
## 1947                                                                  
## 1948                                                                  
## 1949                                                                  
## 1950                                                                  
## 1951                                                                  
## 1952                                                                  
## 1953                                                                  
## 1954                                                                  
## 1955                                                                  
## 1956                                                                  
## 1957                                                                  
## 1958                                                                  
## 1959                                                                  
## 1960                                                                  
## 1961                                                                  
## 1962                                                                  
## 1963                                                                  
## 1964                                                                  
## 1965                                                                  
## 1966                                                                  
## 1967                                                                  
## 1968                                                                  
## 1969                                                                  
## 1970                                                                  
## 1971                                                                  
## 1972                                                                  
## 1973                                                                  
## 1974                                                                  
## 1975                                                                  
## 1976                                                                  
## 1977                                                                  
## 1978                                                                  
## 1979                                                                  
## 1980                                                                  
## 1981                                                                  
## 1982                                                                  
## 1983                                                                  
## 1984                                                                  
## 1985                                                                  
## 1986                                                                  
## 1987                                                                  
## 1988                                                                  
## 1989                                                                  
## 1990                                                                  
## 1991                                                                  
## 1992                                                                  
## 1993                                                                  
## 1994                                                                  
## 1995                                                                  
## 1996                                                                  
## 1997                                                                  
## 1998                                                                  
## 1999                                                                  
## 2000                                                                  
## 2001                                                                  
## 2002                                                                  
## 2003                                                                  
## 2004                                                                  
## 2005                                                                  
## 2006                                                                  
## 2007                                                                  
## 2008                                                                  
## 2009                                                                  
## 2010                                                                  
## 2011                                                                  
## 2012                                                                  
## 2013                                                                  
## 2014                                                                  
## 2015                                                                  
## 2016                                                                  
## 2017                                                                  
## 2018                                                                  
## 2019                                                                  
## 2020                                                                  
## 2021                                                                  
## 2022                                                                  
## 2023                                                                  
## 2024                                                                  
## 2025                                                                  
## 2026                                                                  
## 2027                                                                  
## 2028                                                                  
## 2029                                                                  
## 2030                                                                  
## 2031                                                                  
## 2032                                                                  
## 2033                                                                  
## 2034                                                                  
## 2035                                                                  
## 2036                                                                  
## 2037                                                                  
## 2038                                                                  
## 2039                                                                  
## 2040                                                                  
## 2041                                                                  
## 2042                                                                  
## 2043                                                                  
## 2044                                                                  
## 2045                                                                  
## 2046                                                                  
## 2047                                                                  
## 2048                                                                  
## 2049                                                                  
## 2050                                                                  
## 2051                                                                  
## 2052                                                                  
## 2053                                                                  
## 2054                                                                  
## 2055                                                                  
## 2056                                                                  
## 2057                                                                  
## 2058                                                                  
## 2059                                                                  
## 2060                                                                  
## 2061                                                                  
## 2062                                                                  
## 2063                                                                  
## 2064                                                                  
## 2065                                                                  
## 2066                                                                  
## 2067                                                                  
## 2068                                                                  
## 2069                                                                  
## 2070                                                                  
## 2071                                                                  
## 2072                                                                  
## 2073                                                                  
## 2074                                                                  
## 2075                                                                  
## 2076                                                                  
## 2077                                                                  
## 2078                                                                  
## 2079                                                                  
## 2080                                                                  
## 2081                                                                  
## 2082                                                                  
## 2083                                                                  
## 2084                                                                  
## 2085                                                                  
## 2086                                                                  
## 2087                                                                  
## 2088                                                                  
## 2089                                                                  
## 2090                                                                  
## 2091                                                                  
## 2092                                                                  
## 2093                                                                  
## 2094                                                                  
## 2095                                                                  
## 2096                                                                  
## 2097                                                                  
## 2098                                                                  
## 2099                                                                  
## 2100                                                                  
## 2101                                                                  
## 2102                                                                  
## 2103                                                                  
## 2104                                                                  
## 2105                                                                  
## 2106                                                                  
## 2107                                                                  
## 2108                                                                  
## 2109                                                                  
## 2110                                                                  
## 2111                                                                  
## 2112                                                                  
## 2113                                                                  
## 2114                                                                  
## 2115                                                                  
## 2116                                                                  
## 2117                                                                  
## 2118                                                                  
## 2119                                                                  
## 2120                                                                  
## 2121                                                                  
## 2122                                                                  
## 2123                                                                  
## 2124                                                                  
## 2125                                                                  
## 2126                                                                  
## 2127                                                                  
## 2128                                                                  
## 2129                                                                  
## 2130                                                                  
## 2131                                                                  
## 2132                                                                  
## 2133                                                                  
## 2134                                                                  
## 2135                                                                  
## 2136                                                                  
## 2137                                                                  
## 2138                                                                  
## 2139                                                                  
## 2140                                                                  
## 2141                                                                  
## 2142                                                                  
## 2143                                                                  
## 2144                                                                  
## 2145                                                                  
## 2146                                                                  
## 2147                                                                  
## 2148                                                                  
## 2149                                                                  
## 2150                                                                  
## 2151                                                                  
## 2152                                                                  
## 2153                                                                  
## 2154                                                                  
## 2155                                                                  
## 2156                                                                  
## 2157                                                                  
## 2158                                                                  
## 2159                                                                  
## 2160                                                                  
## 2161                                                                  
## 2162                                                                  
## 2163                                                                  
## 2164                                                                  
## 2165                                                                  
## 2166                                                                  
## 2167                                                                  
## 2168                                                                  
## 2169                                                                  
## 2170                                                                  
## 2171                                                                  
## 2172                                                                  
## 2173                                                                  
## 2174                                                                  
## 2175                                                                  
## 2176                                                                  
## 2177                                                                  
## 2178                                                                  
## 2179                                                                  
## 2180                                                                  
## 2181                                                                  
## 2182                                                                  
## 2183                                                                  
## 2184                                                                  
## 2185                                                                  
## 2186                                                                  
## 2187                                                                  
## 2188                                                                  
## 2189                                                                  
## 2190                                                                  
## 2191                                                                  
## 2192                                                                  
## 2193                                                                  
## 2194                                                                  
## 2195                                                                  
## 2196                                                                  
## 2197                                                                  
## 2198                                                                  
## 2199                                                                  
## 2200                                                                  
## 2201                                                                  
## 2202                                                                  
## 2203                                                                  
## 2204                                                                  
## 2205                                                                  
## 2206                                                                  
## 2207                                                                  
## 2208                                                                  
## 2209                                                                  
## 2210                                                                  
## 2211                                                                  
## 2212                                                                  
## 2213                                                                  
## 2214                                                                  
## 2215                                                                  
## 2216                                                                  
## 2217                                                                  
## 2218                                                                  
## 2219                                                                  
## 2220                                                                  
## 2221                                                                  
## 2222                                                                  
## 2223                                                                  
## 2224                                                                  
## 2225                                                                  
## 2226                                                                  
## 2227                                                                  
## 2228                                                                  
## 2229                                                                  
## 2230                                                                  
## 2231                                                                  
## 2232                                                                  
## 2233                                                                  
## 2234                                                                  
## 2235                                                                  
## 2236                                                                  
## 2237                                                                  
## 2238                                                                  
## 2239                                                                  
## 2240                                                                  
## 2241                                                                  
## 2242                                                                  
## 2243                                                                  
## 2244                                                                  
## 2245                                                                  
## 2246                                                                  
## 2247                                                                  
## 2248                                                                  
## 2249                                                                  
## 2250                                                                  
## 2251                                                                  
## 2252                                                                  
## 2253                                                                  
## 2254                                                                  
## 2255                                                                  
## 2256                                                                  
## 2257                                                                  
## 2258                                                                  
## 2259                                                                  
## 2260                                                                  
## 2261                                                                  
## 2262                                                                  
## 2263                                                                  
## 2264                                                                  
## 2265                                                                  
## 2266                                                                  
## 2267                                                                  
## 2268                                                                  
## 2269                                                                  
## 2270                                                                  
## 2271                                                                  
## 2272                                                                  
## 2273                                                                  
## 2274                                                                  
## 2275                                                                  
## 2276                                                                  
## 2277                                                                  
## 2278                                                                  
## 2279                                                                  
## 2280                                                                  
## 2281                                                                  
## 2282                                                                  
## 2283                                                                  
## 2284                                                                  
## 2285                                                                  
## 2286                                                                  
## 2287                                                                  
## 2288                                                                  
## 2289                                                                  
## 2290                                                                  
## 2291                                                                  
## 2292                                                                  
## 2293                                                                  
## 2294                                                                  
## 2295                                                                  
## 2296                                                                  
## 2297                                                                  
## 2298                                                                  
## 2299                                                                  
## 2300                                                                  
## 2301                                                                  
## 2302                                                                  
## 2303                                                                  
## 2304                                                                  
## 2305                                                                  
## 2306                                                                  
## 2307                                                                  
## 2308                                                                  
## 2309                                                                  
## 2310                                                                  
## 2311                                                                  
## 2312                                                                  
## 2313                                                                  
## 2314                                                                  
## 2315                                                                  
## 2316                                                                  
## 2317                                                                  
## 2318                                                                  
## 2319                                                                  
## 2320                                                                  
## 2321                                                                  
## 2322                                                                  
## 2323                                                                  
## 2324                                                                  
## 2325                                                                  
## 2326                                                                  
## 2327                                                                  
## 2328                                                                  
## 2329                                                                  
## 2330                                                                  
## 2331                                                                  
## 2332                                                                  
## 2333                                                                  
## 2334                                                                  
## 2335                                                                  
## 2336                                                                  
## 2337                                                                  
## 2338                                                                  
## 2339                                                                  
## 2340                                                                  
## 2341                                                                  
## 2342                                                                  
## 2343                                                                  
## 2344                                                                  
## 2345                                                                  
## 2346                                                                  
## 2347                                                                  
## 2348                                                                  
## 2349                                                                  
## 2350                                                                  
## 2351                                                                  
## 2352                                                                  
## 2353                                                                  
## 2354                                                                  
## 2355                                                                  
## 2356                                                                  
## 2357                                                                  
## 2358                                                                  
## 2359                                                                  
## 2360                                                                  
## 2361                                                                  
## 2362                                                                  
## 2363                                                                  
## 2364                                                                  
## 2365                                                                  
## 2366                                                                  
## 2367                                                                  
## 2368                                                                  
## 2369                                                                  
## 2370                                                                  
## 2371                                                                  
## 2372                                                                  
## 2373                                                                  
## 2374                                                                  
## 2375                                                                  
## 2376                                                                  
## 2377                                                                  
## 2378                                                                  
## 2379                                                                  
## 2380                                                                  
## 2381                                                                  
## 2382                                                                  
## 2383                                                                  
## 2384                                                                  
## 2385                                                                  
## 2386                                                                  
## 2387                                                                  
## 2388                                                                  
## 2389                                                                  
## 2390                                                                  
## 2391                                                                  
## 2392                                                                  
## 2393                                                                  
## 2394                                                                  
## 2395                                                                  
## 2396                                                                  
## 2397                                                                  
## 2398                                                                  
## 2399                                                                  
## 2400                                                                  
## 2401                                                                  
## 2402                                                                  
## 2403                                                                  
## 2404                                                                  
## 2405                                                                  
## 2406                                                                  
## 2407                                                                  
## 2408                                                                  
## 2409                                                                  
## 2410                                                                  
## 2411                                                                  
## 2412                                                                  
## 2413                                                                  
## 2414                                                                  
## 2415                                                                  
## 2416                                                                  
## 2417                                                                  
## 2418                                                                  
## 2419                                                                  
## 2420                                                                  
## 2421                                                                  
## 2422                                                                  
## 2423                                                                  
## 2424                                                                  
## 2425                                                                  
## 2426                                                                  
## 2427                                                                  
## 2428                                                                  
## 2429                                                                  
## 2430                                                                  
## 2431                                                                  
## 2432                                                                  
## 2433                                                                  
## 2434                                                                  
## 2435                                                                  
## 2436                                                                  
## 2437                                                                  
## 2438                                                                  
## 2439                                                                  
## 2440                                                                  
## 2441                                                                  
## 2442                                                                  
## 2443                                                                  
## 2444                                                                  
## 2445                                                                  
## 2446                                                                  
## 2447                                                                  
## 2448                                                                  
## 2449                                                                  
## 2450                                                                  
## 2451                                                                  
## 2452                                                                  
## 2453                                                                  
## 2454                                                                  
## 2455                                                                  
## 2456                                                                  
## 2457                                                                  
## 2458                                                                  
## 2459                                                                  
## 2460                                                                  
## 2461                                                                  
## 2462                                                                  
## 2463                                                                  
## 2464                                                                  
## 2465                                                                  
## 2466                                                                  
## 2467                                                                  
## 2468                                                                  
## 2469                                                                  
## 2470                                                                  
## 2471                                                                  
## 2472                                                                  
## 2473                                                                  
## 2474                                                                  
## 2475                                                                  
## 2476                                                                  
## 2477                                                                  
## 2478                                                                  
## 2479                                                                  
## 2480                                                                  
## 2481                                                                  
## 2482                                                                  
## 2483                                                                  
## 2484                                                                  
## 2485                                                                  
## 2486                                                                  
## 2487                                                                  
## 2488                                                                  
## 2489                                                                  
## 2490                                                                  
## 2491                                                                  
## 2492                                                                  
## 2493                                                                  
## 2494                                                                  
## 2495                                                                  
## 2496                                                                  
## 2497                                                                  
## 2498                                                                  
## 2499                                                                  
## 2500                                                                  
## 2501                                                                  
## 2502                                                                  
## 2503                                                                  
## 2504                                                                  
## 2505                                                                  
## 2506                                                                  
## 2507                                                                  
## 2508                                                                  
## 2509                                                                  
## 2510                                                                  
## 2511                                                                  
## 2512                                                                  
## 2513                                                                  
## 2514                                                                  
## 2515                                                                  
## 2516                                                                  
## 2517                                                                  
## 2518                                                                  
## 2519                                                                  
## 2520                                                                  
## 2521                                                                  
## 2522                                                                  
## 2523                                                                  
## 2524                                                                  
## 2525                                                                  
## 2526                                                                  
## 2527                                                                  
## 2528                                                                  
## 2529                                                                  
## 2530                                                                  
## 2531                                                                  
## 2532                                                                  
## 2533                                                                  
## 2534                                                                  
## 2535                                                                  
## 2536                                                                  
## 2537                                                                  
## 2538                                                                  
## 2539                                                                  
## 2540                                                                  
## 2541                                                                  
## 2542                                                                  
## 2543                                                                  
## 2544                                                                  
## 2545                                                                  
## 2546                                                                  
## 2547                                                                  
## 2548                                                                  
## 2549                                                                  
## 2550                                                                  
## 2551                                                                  
## 2552                                                                  
## 2553                                                                  
## 2554                                                                  
## 2555                                                                  
## 2556                                                                  
## 2557                                                                  
## 2558                                                                  
## 2559                                                                  
## 2560                                                                  
## 2561                                                                  
## 2562                                                                  
## 2563                                                                  
## 2564                                                                  
## 2565                                                                  
## 2566                                                                  
## 2567                                                                  
## 2568                                                                  
## 2569                                                                  
## 2570                                                                  
## 2571                                                                  
## 2572                                                                  
## 2573                                                                  
## 2574                                                                  
## 2575                                                                  
## 2576                                                                  
## 2577                                                                  
## 2578                                                                  
## 2579                                                                  
## 2580                                                                  
## 2581                                                                  
## 2582                                                                  
## 2583                                                                  
## 2584                                                                  
## 2585                                                                  
## 2586                                                                  
## 2587                                                                  
## 2588                                                                  
## 2589                                                                  
## 2590                                                                  
## 2591                                                                  
## 2592                                                                  
## 2593                                                                  
## 2594                                                                  
## 2595                                                                  
## 2596                                                                  
## 2597                                                                  
## 2598                                                                  
## 2599                                                                  
## 2600                                                                  
## 2601                                                                  
## 2602                                                                  
## 2603                                                                  
## 2604                                                                  
## 2605                                                                  
## 2606                                                                  
## 2607                                                                  
## 2608                                                                  
## 2609                                                                  
## 2610                                                                  
## 2611                                                                  
## 2612                                                                  
## 2613                                                                  
## 2614                                                                  
## 2615                                                                  
## 2616                                                                  
## 2617                                                                  
## 2618                                                                  
## 2619                                                                  
## 2620                                                                  
## 2621                                                                  
## 2622                                                                  
## 2623                                                                  
## 2624                                                                  
## 2625                                                                  
## 2626                                                                  
## 2627                                                                  
## 2628                                                                  
## 2629                                                                  
## 2630                                                                  
## 2631                                                                  
## 2632                                                                  
## 2633                                                                  
## 2634                                                                  
## 2635                                                                  
## 2636                                                                  
## 2637                                                                  
## 2638                                                                  
## 2639                                                                  
## 2640                                                                  
## 2641                                                                  
## 2642                                                                  
## 2643                                                                  
## 2644                                                                  
## 2645                                                                  
## 2646                                                                  
## 2647                                                                  
## 2648                                                                  
## 2649                                                                  
## 2650                                                                  
## 2651                                                                  
## 2652                                                                  
## 2653                                                                  
## 2654                                                                  
## 2655                                                                  
## 2656                                                                  
## 2657                                                                  
## 2658                                                                  
## 2659                                                                  
## 2660                                                                  
## 2661                                                                  
## 2662                                                                  
## 2663                                                                  
## 2664                                                                  
## 2665                                                                  
## 2666                                                                  
## 2667                                                                  
## 2668                                                                  
## 2669                                                                  
## 2670                                                                  
## 2671                                                                  
## 2672                                                                  
## 2673                                                                  
## 2674                                                                  
## 2675                                                                  
## 2676                                                                  
## 2677                                                                  
## 2678                                                                  
## 2679                                                                  
## 2680                                                                  
## 2681                                                                  
## 2682                                                                  
## 2683                                                                  
## 2684                                                                  
## 2685                                                                  
## 2686                                                                  
## 2687                                                                  
## 2688                                                                  
## 2689                                                                  
## 2690                                                                  
## 2691                                                                  
## 2692                                                                  
## 2693                                                                  
## 2694                                                                  
## 2695                                                                  
## 2696                                                                  
## 2697                                                                  
## 2698                                                                  
## 2699                                                                  
## 2700                                                                  
## 2701                                                                  
## 2702                                                                  
## 2703                                                                  
## 2704                                                                  
## 2705                                                                  
## 2706                                                                  
## 2707                                                                  
## 2708                                                                  
## 2709                                                                  
## 2710                                                                  
## 2711                                                                  
## 2712                                                                  
## 2713                                                                  
## 2714                                                                  
## 2715                                                                  
## 2716                                                                  
## 2717                                                                  
## 2718                                                                  
## 2719                                                                  
## 2720                                                                  
## 2721                                                                  
## 2722                                                                  
## 2723                                                                  
## 2724                                                                  
## 2725                                                                  
## 2726                                                                  
## 2727                                                                  
## 2728                                                                  
## 2729                                                                  
## 2730                                                                  
## 2731                                                                  
## 2732                                                                  
## 2733                                                                  
## 2734                                                                  
## 2735                                                                  
## 2736                                                                  
## 2737                                                                  
## 2738                                                                  
## 2739                                                                  
## 2740                                                                  
## 2741                                                                  
## 2742                                                                  
## 2743                                                                  
## 2744                                                                  
## 2745                                                                  
## 2746                                                                  
## 2747                                                                  
## 2748                                                                  
## 2749                                                                  
## 2750                                                                  
## 2751                                                                  
## 2752                                                                  
## 2753                                                                  
## 2754                                                                  
## 2755                                                                  
## 2756                                                                  
## 2757                                                                  
## 2758                                                                  
## 2759                                                                  
## 2760                                                                  
## 2761                                                                  
## 2762                                                                  
## 2763                                                                  
## 2764                                                                  
## 2765                                                                  
## 2766                                                                  
## 2767                                                                  
## 2768                                                                  
## 2769                                                                  
## 2770                                                                  
## 2771                                                                  
## 2772                                                                  
## 2773                                                                  
## 2774                                                                  
## 2775                                                                  
## 2776                                                                  
## 2777                                                                  
##      Facility.County.Code Facility.County Regional.Office.ID
## 1                       3          Broome                  3
## 2                      32          Oneida                  3
## 3                      33        Onondaga                  3
## 4                      60         Wyoming                  1
## 5                       2        Allegany                  1
## 6                      14            Erie                  1
## 7                      29          Nassau                  7
## 8                      14            Erie                  1
## 9                      29          Nassau                  7
## 10                   7093        New York                  5
## 11                     29          Nassau                  7
## 12                     26         Madison                  3
## 13                   7095           Kings                  5
## 14                      3          Broome                  3
## 15                     14            Erie                  1
## 16                     51         Suffolk                  7
## 17                     14            Erie                  1
## 18                   7093        New York                  5
## 19                     35          Orange                  6
## 20                     16        Franklin                  4
## 21                     32          Oneida                  3
## 22                      4     Cattaraugus                  1
## 23                     27          Monroe                  2
## 24                      9         Clinton                  4
## 25                   7095           Kings                  5
## 26                     59     Westchester                  6
## 27                   7093        New York                  5
## 28                     51         Suffolk                  7
## 29                     29          Nassau                  7
## 30                      1          Albany                  4
## 31                      1          Albany                  4
## 32                   7094           Bronx                  5
## 33                   7095           Kings                  5
## 34                      7         Chemung                  2
## 35                   7094           Bronx                  5
## 36                     32          Oneida                  3
## 37                     38          Otsego                  4
## 38                     35          Orange                  6
## 39                     13        Dutchess                  6
## 40                   7094           Bronx                  5
## 41                   7095           Kings                  5
## 42                     31         Niagara                  1
## 43                   7096          Queens                  5
## 44                   7096          Queens                  5
## 45                     59     Westchester                  6
## 46                     22       Jefferson                  3
## 47                     29          Nassau                  7
## 48                     41      Rensselaer                  4
## 49                   7095           Kings                  5
## 50                     59     Westchester                  6
## 51                   7095           Kings                  5
## 52                   7094           Bronx                  5
## 53                     43        Rockland                  6
## 54                   7095           Kings                  5
## 55                   7097        Richmond                  5
## 56                     14            Erie                  1
## 57                     34         Ontario                  2
## 58                   7094           Bronx                  5
## 59                   7094           Bronx                  5
## 60                     14            Erie                  1
## 61                     25      Livingston                  2
## 62                     32          Oneida                  3
## 63                     59     Westchester                  6
## 64                   7095           Kings                  5
## 65                     51         Suffolk                  7
## 66                     31         Niagara                  1
## 67                     58           Wayne                  2
## 68                     29          Nassau                  7
## 69                   7093        New York                  5
## 70                     10        Columbia                  4
## 71                     13        Dutchess                  6
## 72                     39          Putnam                  6
## 73                     37          Oswego                  3
## 74                      2        Allegany                  1
## 75                     59     Westchester                  6
## 76                   7097        Richmond                  5
## 77                     14            Erie                  1
## 78                     15           Essex                  4
## 79                     29          Nassau                  7
## 80                     27          Monroe                  2
## 81                   7095           Kings                  5
## 82                   7095           Kings                  5
## 83                   7094           Bronx                  5
## 84                   7096          Queens                  5
## 85                     27          Monroe                  2
## 86                   7094           Bronx                  5
## 87                     55          Ulster                  6
## 88                     51         Suffolk                  7
## 89                   7095           Kings                  5
## 90                   7093        New York                  5
## 91                     51         Suffolk                  7
## 92                     33        Onondaga                  3
## 93                     44  Saint Lawrence                  3
## 94                     43        Rockland                  6
## 95                   7094           Bronx                  5
## 96                     57      Washington                  4
## 97                     44  Saint Lawrence                  3
## 98                   7096          Queens                  5
## 99                     32          Oneida                  3
## 100                    27          Monroe                  2
## 101                    32          Oneida                  3
## 102                  7093        New York                  5
## 103                  7093        New York                  5
## 104                    43        Rockland                  6
## 105                    59     Westchester                  6
## 106                    28      Montgomery                  4
## 107                    51         Suffolk                  7
## 108                  7094           Bronx                  3
## 109                  7093        New York                  5
## 110                    59     Westchester                  6
## 111                    26         Madison                  3
## 112                  7095           Kings                  5
## 113                  7093        New York                  5
## 114                    29          Nassau                  7
## 115                    59     Westchester                  6
## 116                    35          Orange                  6
## 117                    27          Monroe                  2
## 118                    52        Sullivan                  6
## 119                  7094           Bronx                  5
## 120                    51         Suffolk                  7
## 121                  7093        New York                  5
## 122                    33        Onondaga                  3
## 123                     1          Albany                  4
## 124                  7094           Bronx                  5
## 125                    50         Steuben                  2
## 126                  7095           Kings                  5
## 127                    50         Steuben                  2
## 128                     1          Albany                  4
## 129                    48        Schuyler                  2
## 130                  7093        New York                  5
## 131                  7096          Queens                  5
## 132                  7096          Queens                  5
## 133                     1          Albany                  4
## 134                    59     Westchester                  6
## 135                    56          Warren                  4
## 136                    37          Oswego                  3
## 137                  7096          Queens                  5
## 138                    51         Suffolk                  7
## 139                    58           Wayne                  2
## 140                  7094           Bronx                  5
## 141                     7         Chemung                  2
## 142                    33        Onondaga                  3
## 143                     1          Albany                  4
## 144                    32          Oneida                  3
## 145                    10        Columbia                  4
## 146                    50         Steuben                  2
## 147                    38          Otsego                  4
## 148                    27          Monroe                  2
## 149                    27          Monroe                  2
## 150                    32          Oneida                  3
## 151                    22       Jefferson                  3
## 152                    51         Suffolk                  7
## 153                    33        Onondaga                  3
## 154                  7093        New York                  5
## 155                  7093        New York                  5
## 156                    35          Orange                  6
## 157                    14            Erie                  1
## 158                  7094           Bronx                  5
## 159                  7095           Kings                  5
## 160                  7094           Bronx                  5
## 161                    33        Onondaga                  3
## 162                    27          Monroe                  2
## 163                    41      Rensselaer                  4
## 164                  7096          Queens                  5
## 165                    18         Genesee                  1
## 166                     1          Albany                  4
## 167                    33        Onondaga                  3
## 168                    54        Tompkins                  3
## 169                  7094           Bronx                  5
## 170                    38          Otsego                  4
## 171                  7093        New York                  5
## 172                    59     Westchester                  6
## 173                  7093        New York                  5
## 174                  7093        New York                  5
## 175                    33        Onondaga                  3
## 176                  7093        New York                  5
## 177                  7093        New York                  5
## 178                    56          Warren                  4
## 179                  7095           Kings                  5
## 180                    29          Nassau                  7
## 181                    51         Suffolk                  7
## 182                  7095           Kings                  5
## 183                    13        Dutchess                  6
## 184                    32          Oneida                  3
## 185                    14            Erie                  1
## 186                  7095           Kings                  5
## 187                  7095           Kings                  5
## 188                    50         Steuben                  2
## 189                    58           Wayne                  2
## 190                    27          Monroe                  2
## 191                    29          Nassau                  7
## 192                  7094           Bronx                  5
## 193                    14            Erie                  1
## 194                    41      Rensselaer                  4
## 195                  7096          Queens                  5
## 196                    59     Westchester                  6
## 197                    22       Jefferson                  3
## 198                    22       Jefferson                  3
## 199                  7096          Queens                  5
## 200                    10        Columbia                  4
## 201                  7095           Kings                  5
## 202                    55          Ulster                  6
## 203                  7094           Bronx                  5
## 204                    45        Saratoga                  4
## 205                     2        Allegany                  1
## 206                    26         Madison                  3
## 207                  7095           Kings                  5
## 208                    58           Wayne                  2
## 209                  7094           Bronx                  5
## 210                  7094           Bronx                  5
## 211                  7094           Bronx                  5
## 212                     1          Albany                  4
## 213                    14            Erie                  1
## 214                  7093        New York                  5
## 215                    56          Warren                  4
## 216                  7094           Bronx                  5
## 217                    55          Ulster                  6
## 218                    33        Onondaga                  3
## 219                  7094           Bronx                  5
## 220                    28      Montgomery                  4
## 221                  7094           Bronx                  5
## 222                    51         Suffolk                  7
## 223                  7096          Queens                  5
## 224                  7093        New York                  5
## 225                  7093        New York                  5
## 226                    31         Niagara                  1
## 227                    14            Erie                  1
## 228                    29          Nassau                  7
## 229                    51         Suffolk                  7
## 230                    34         Ontario                  2
## 231                  7094           Bronx                  5
## 232                    13        Dutchess                  6
## 233                    29          Nassau                  7
## 234                  7093        New York                  5
## 235                    51         Suffolk                  7
## 236                    14            Erie                  1
## 237                    51         Suffolk                  7
## 238                    17          Fulton                  4
## 239                    45        Saratoga                  4
## 240                  7096          Queens                  5
## 241                     1          Albany                  4
## 242                    29          Nassau                  7
## 243                  7095           Kings                  5
## 244                  7097        Richmond                  5
## 245                    44  Saint Lawrence                  3
## 246                     6      Chautauqua                  1
## 247                    46     Schenectady                  4
## 248                    14            Erie                  1
## 249                  7096          Queens                  5
## 250                  7093        New York                  5
## 251                    28      Montgomery                  4
## 252                  7095           Kings                  5
## 253                  7094           Bronx                  5
## 254                    55          Ulster                  6
## 255                    51         Suffolk                  7
## 256                    36         Orleans                  1
## 257                  7095           Kings                  5
## 258                     1          Albany                  4
## 259                    45        Saratoga                  4
## 260                  7094           Bronx                  5
## 261                     3          Broome                  3
## 262                    13        Dutchess                  6
## 263                  7096          Queens                  5
## 264                  7097        Richmond                  5
## 265                     1          Albany                  4
## 266                  7095           Kings                  5
## 267                  7094           Bronx                  5
## 268                  7093        New York                  5
## 269                  7094           Bronx                  5
## 270                    34         Ontario                  2
## 271                    29          Nassau                  7
## 272                     7         Chemung                  2
## 273                    59     Westchester                  6
## 274                    27          Monroe                  2
## 275                    59     Westchester                  6
## 276                  7094           Bronx                  5
## 277                    11        Cortland                  3
## 278                  7096          Queens                  5
## 279                    44  Saint Lawrence                  3
## 280                     6      Chautauqua                  1
## 281                  7093        New York                  5
## 282                     6      Chautauqua                  1
## 283                  7094           Bronx                  5
## 284                    37          Oswego                  3
## 285                    21        Herkimer                  3
## 286                    31         Niagara                  1
## 287                    33        Onondaga                  3
## 288                    22       Jefferson                  3
## 289                     1          Albany                  4
## 290                  7093        New York                  5
## 291                    27          Monroe                  2
## 292                    55          Ulster                  6
## 293                    31         Niagara                  1
## 294                  7096          Queens                  5
## 295                  7095           Kings                  5
## 296                  7097        Richmond                  5
## 297                    37          Oswego                  3
## 298                    37          Oswego                  3
## 299                     6      Chautauqua                  1
## 300                    18         Genesee                  1
## 301                    35          Orange                  6
## 302                    10        Columbia                  4
## 303                    29          Nassau                  7
## 304                     3          Broome                  3
## 305                    32          Oneida                  3
## 306                  7095           Kings                  5
## 307                  7096          Queens                  5
## 308                    29          Nassau                  7
## 309                    59     Westchester                  6
## 310                    55          Ulster                  6
## 311                  7095           Kings                  5
## 312                     1          Albany                  4
## 313                    14            Erie                  1
## 314                     4     Cattaraugus                  1
## 315                    51         Suffolk                  7
## 316                  7096          Queens                  5
## 317                  7093        New York                  5
## 318                    56          Warren                  4
## 319                    57      Washington                  4
## 320                    51         Suffolk                  7
## 321                    35          Orange                  6
## 322                    14            Erie                  1
## 323                  7093        New York                  5
## 324                    50         Steuben                  2
## 325                    27          Monroe                  2
## 326                    14            Erie                  1
## 327                    51         Suffolk                  7
## 328                  7095           Kings                  5
## 329                    27          Monroe                  2
## 330                    14            Erie                  1
## 331                    29          Nassau                  7
## 332                  7096          Queens                  5
## 333                    33        Onondaga                  3
## 334                    34         Ontario                  2
## 335                  7095           Kings                  5
## 336                    41      Rensselaer                  4
## 337                  7095           Kings                  5
## 338                    32          Oneida                  3
## 339                    27          Monroe                  2
## 340                    58           Wayne                  2
## 341                    22       Jefferson                  3
## 342                  7095           Kings                  5
## 343                     1          Albany                  4
## 344                    51         Suffolk                  7
## 345                  7096          Queens                  5
## 346                    29          Nassau                  7
## 347                    37          Oswego                  3
## 348                  7096          Queens                  5
## 349                  7096          Queens                  5
## 350                  7093        New York                  5
## 351                  7097        Richmond                  5
## 352                  7095           Kings                  5
## 353                  7094           Bronx                  5
## 354                    36         Orleans                  1
## 355                    56          Warren                  4
## 356                    13        Dutchess                  6
## 357                    44  Saint Lawrence                  3
## 358                  7094           Bronx                  5
## 359                    50         Steuben                  2
## 360                  7094           Bronx                  5
## 361                     3          Broome                  3
## 362                    32          Oneida                  3
## 363                  7093        New York                  5
## 364                    35          Orange                  6
## 365                  7093        New York                  5
## 366                    35          Orange                  6
## 367                  7096          Queens                  5
## 368                  7096          Queens                  5
## 369                     6      Chautauqua                  1
## 370                  7096          Queens                  5
## 371                    45        Saratoga                  4
## 372                  7095           Kings                  5
## 373                  7096          Queens                  5
## 374                  7096          Queens                  5
## 375                    56          Warren                  4
## 376                    21        Herkimer                  3
## 377                  7093        New York                  5
## 378                    55          Ulster                  6
## 379                    27          Monroe                  2
## 380                    15           Essex                  4
## 381                    27          Monroe                  2
## 382                     1          Albany                  4
## 383                  7094           Bronx                  5
## 384                  7096          Queens                  5
## 385                  7093        New York                  5
## 386                  7093        New York                  5
## 387                  7094           Bronx                  5
## 388                    45        Saratoga                  4
## 389                  7095           Kings                  5
## 390                  7096          Queens                  5
## 391                    29          Nassau                  7
## 392                    18         Genesee                  1
## 393                    56          Warren                  4
## 394                    41      Rensselaer                  4
## 395                  7093        New York                  5
## 396                    43        Rockland                  6
## 397                  7093        New York                  5
## 398                     1          Albany                  4
## 399                    43        Rockland                  6
## 400                    22       Jefferson                  3
## 401                  7093        New York                  5
## 402                    59     Westchester                  6
## 403                    29          Nassau                  7
## 404                    14            Erie                  1
## 405                    13        Dutchess                  6
## 406                    27          Monroe                  2
## 407                  7094           Bronx                  5
## 408                    11        Cortland                  3
## 409                    11        Cortland                  3
## 410                    32          Oneida                  3
## 411                    33        Onondaga                  3
## 412                    59     Westchester                  6
## 413                    14            Erie                  1
## 414                  7093        New York                  5
## 415                    14            Erie                  1
## 416                    29          Nassau                  7
## 417                    27          Monroe                  2
## 418                  7093        New York                  5
## 419                    59     Westchester                  6
## 420                    51         Suffolk                  7
## 421                  7095           Kings                  5
## 422                    46     Schenectady                  4
## 423                    58           Wayne                  2
## 424                    14            Erie                  1
## 425                  7097        Richmond                  5
## 426                    33        Onondaga                  3
## 427                  7095           Kings                  5
## 428                  7093        New York                  5
## 429                  7095           Kings                  5
## 430                  7093        New York                  5
## 431                  7095           Kings                  5
## 432                    27          Monroe                  2
## 433                  7096          Queens                  5
## 434                    35          Orange                  6
## 435                    43        Rockland                  6
## 436                     2        Allegany                  1
## 437                    36         Orleans                  1
## 438                    38          Otsego                  4
## 439                    31         Niagara                  1
## 440                  7095           Kings                  5
## 441                    33        Onondaga                  3
## 442                    29          Nassau                  7
## 443                    35          Orange                  6
## 444                    14            Erie                  1
## 445                  7095           Kings                  5
## 446                    51         Suffolk                  7
## 447                  7095           Kings                  5
## 448                  7096          Queens                  5
## 449                  7095           Kings                  5
## 450                    51         Suffolk                  7
## 451                    51         Suffolk                  7
## 452                  7095           Kings                  5
## 453                    41      Rensselaer                  4
## 454                  7094           Bronx                  5
## 455                    27          Monroe                  2
## 456                    29          Nassau                  7
## 457                  7094           Bronx                  5
## 458                  7094           Bronx                  5
## 459                    29          Nassau                  7
## 460                    59     Westchester                  6
## 461                  7096          Queens                  5
## 462                    34         Ontario                  2
## 463                    59     Westchester                  6
## 464                     1          Albany                  4
## 465                    32          Oneida                  3
## 466                    22       Jefferson                  3
## 467                    46     Schenectady                  4
## 468                    59     Westchester                  6
## 469                    51         Suffolk                  7
## 470                  7093        New York                  5
## 471                     3          Broome                  3
## 472                    14            Erie                  1
## 473                  7094           Bronx                  5
## 474                    22       Jefferson                  3
## 475                  7093        New York                  5
## 476                    29          Nassau                  7
## 477                  7095           Kings                  5
## 478                    44  Saint Lawrence                  3
## 479                    16        Franklin                  4
## 480                    27          Monroe                  2
## 481                  7096          Queens                  5
## 482                  7094           Bronx                  5
## 483                     3          Broome                  3
## 484                    35          Orange                  6
## 485                    45        Saratoga                  4
## 486                    27          Monroe                  2
## 487                  7096          Queens                  5
## 488                  7095           Kings                  5
## 489                  7093        New York                  5
## 490                    33        Onondaga                  3
## 491                    51         Suffolk                  7
## 492                    43        Rockland                  6
## 493                     9         Clinton                  4
## 494                     2        Allegany                  1
## 495                    47       Schoharie                  4
## 496                  7093        New York                  5
## 497                  7095           Kings                  5
## 498                    29          Nassau                  7
## 499                  7094           Bronx                  5
## 500                  7094           Bronx                  5
## 501                    29          Nassau                  7
## 502                     1          Albany                  4
## 503                  7095           Kings                  5
## 504                    27          Monroe                  2
## 505                  7093        New York                  5
## 506                    37          Oswego                  3
## 507                  7094           Bronx                  5
## 508                  7097        Richmond                  5
## 509                     5          Cayuga                  3
## 510                     1          Albany                  4
## 511                    59     Westchester                  6
## 512                  7095           Kings                  5
## 513                  7095           Kings                  5
## 514                    14            Erie                  1
## 515                    31         Niagara                  1
## 516                  7096          Queens                  5
## 517                  7094           Bronx                  5
## 518                     1          Albany                  4
## 519                    55          Ulster                  6
## 520                  7094           Bronx                  5
## 521                  7097        Richmond                  5
## 522                  7095           Kings                  5
## 523                  7093        New York                  5
## 524                  7093        New York                  5
## 525                    27          Monroe                  2
## 526                    59     Westchester                  6
## 527                    52        Sullivan                  6
## 528                    46     Schenectady                  4
## 529                  7093        New York                  5
## 530                  7096          Queens                  5
## 531                    51         Suffolk                  7
## 532                  7093        New York                  5
## 533                    51         Suffolk                  7
## 534                    45        Saratoga                  4
## 535                     1          Albany                  4
## 536                    22       Jefferson                  3
## 537                    14            Erie                  1
## 538                    56          Warren                  4
## 539                    45        Saratoga                  4
## 540                    51         Suffolk                  7
## 541                    29          Nassau                  7
## 542                    39          Putnam                  6
## 543                     1          Albany                  4
## 544                  7093        New York                  5
## 545                    17          Fulton                  4
## 546                    31         Niagara                  1
## 547                  7093        New York                  5
## 548                  7095           Kings                  5
## 549                  7094           Bronx                  5
## 550                    61           Yates                  2
## 551                  7095           Kings                  5
## 552                    35          Orange                  6
## 553                  7094           Bronx                  5
## 554                    51         Suffolk                  7
## 555                    13        Dutchess                  6
## 556                  7094           Bronx                  5
## 557                     3          Broome                  3
## 558                    13        Dutchess                  6
## 559                  7096          Queens                  5
## 560                  7095           Kings                  5
## 561                  7096          Queens                  5
## 562                    13        Dutchess                  6
## 563                    14            Erie                  1
## 564                    59     Westchester                  6
## 565                     6      Chautauqua                  1
## 566                  7094           Bronx                  5
## 567                    54        Tompkins                  3
## 568                    29          Nassau                  7
## 569                  7093        New York                  5
## 570                    59     Westchester                  6
## 571                  7094           Bronx                  5
## 572                  7093        New York                  5
## 573                  7095           Kings                  5
## 574                    61           Yates                  2
## 575                  7096          Queens                  5
## 576                    38          Otsego                  4
## 577                  7095           Kings                  5
## 578                    58           Wayne                  2
## 579                    56          Warren                  4
## 580                  7095           Kings                  5
## 581                    43        Rockland                  6
## 582                  7096          Queens                  5
## 583                    14            Erie                  1
## 584                    33        Onondaga                  3
## 585                  7095           Kings                  5
## 586                    33        Onondaga                  3
## 587                    12        Delaware                  4
## 588                    59     Westchester                  6
## 589                    43        Rockland                  6
## 590                    27          Monroe                  2
## 591                    27          Monroe                  2
## 592                  7096          Queens                  5
## 593                    39          Putnam                  6
## 594                  7093        New York                  5
## 595                  7097        Richmond                  5
## 596                  7093        New York                  5
## 597                    56          Warren                  4
## 598                    45        Saratoga                  4
## 599                  7093        New York                  5
## 600                    45        Saratoga                  4
## 601                    45        Saratoga                  4
## 602                    38          Otsego                  4
## 603                    14            Erie                  1
## 604                     1          Albany                  4
## 605                    34         Ontario                  2
## 606                     1          Albany                  4
## 607                    51         Suffolk                  7
## 608                    27          Monroe                  2
## 609                     1          Albany                  4
## 610                    22       Jefferson                  3
## 611                    29          Nassau                  7
## 612                    25      Livingston                  2
## 613                    13        Dutchess                  6
## 614                    51         Suffolk                  7
## 615                    54        Tompkins                  3
## 616                  7093        New York                  5
## 617                  7094           Bronx                  5
## 618                  7094           Bronx                  5
## 619                    13        Dutchess                  6
## 620                    44  Saint Lawrence                  3
## 621                    56          Warren                  4
## 622                    48        Schuyler                  2
## 623                  7094           Bronx                  5
## 624                    14            Erie                  1
## 625                  7093        New York                  5
## 626                    21        Herkimer                  3
## 627                    50         Steuben                  2
## 628                  7096          Queens                  5
## 629                     6      Chautauqua                  1
## 630                     4     Cattaraugus                  1
## 631                    59     Westchester                  6
## 632                    29          Nassau                  7
## 633                    45        Saratoga                  4
## 634                     1          Albany                  4
## 635                  7095           Kings                  5
## 636                  7094           Bronx                  5
## 637                  7096          Queens                  5
## 638                    29          Nassau                  7
## 639                    29          Nassau                  7
## 640                    56          Warren                  4
## 641                  7093        New York                  5
## 642                    27          Monroe                  2
## 643                    51         Suffolk                  7
## 644                    35          Orange                  6
## 645                    59     Westchester                  6
## 646                    14            Erie                  1
## 647                  7094           Bronx                  5
## 648                  7097        Richmond                  5
## 649                    24           Lewis                  3
## 650                     1          Albany                  4
## 651                    14            Erie                  1
## 652                    14            Erie                  1
## 653                    28      Montgomery                  4
## 654                    51         Suffolk                  7
## 655                    33        Onondaga                  3
## 656                  7096          Queens                  5
## 657                    43        Rockland                  6
## 658                  7097        Richmond                  5
## 659                    27          Monroe                  2
## 660                    33        Onondaga                  3
## 661                     6      Chautauqua                  1
## 662                     5          Cayuga                  3
## 663                    14            Erie                  1
## 664                    33        Onondaga                  3
## 665                    51         Suffolk                  7
## 666                    27          Monroe                  2
## 667                    51         Suffolk                  7
## 668                    59     Westchester                  6
## 669                    34         Ontario                  2
## 670                    51         Suffolk                  7
## 671                    16        Franklin                  4
## 672                  7094           Bronx                  5
## 673                  7094           Bronx                  5
## 674                    29          Nassau                  7
## 675                  7093        New York                  5
## 676                    32          Oneida                  3
## 677                  7096          Queens                  5
## 678                    16        Franklin                  4
## 679                    27          Monroe                  2
## 680                    43        Rockland                  6
## 681                    59     Westchester                  6
## 682                  7095           Kings                  5
## 683                     3          Broome                  3
## 684                    32          Oneida                  3
## 685                  7093        New York                  5
## 686                    29          Nassau                  7
## 687                    14            Erie                  1
## 688                  7095           Kings                  5
## 689                    37          Oswego                  3
## 690                    15           Essex                  4
## 691                    14            Erie                  1
## 692                  7095           Kings                  5
## 693                    27          Monroe                  2
## 694                    12        Delaware                  4
## 695                    51         Suffolk                  7
## 696                    27          Monroe                  2
## 697                    27          Monroe                  2
## 698                    56          Warren                  4
## 699                    44  Saint Lawrence                  3
## 700                  7096          Queens                  5
## 701                    12        Delaware                  4
## 702                    29          Nassau                  7
## 703                     1          Albany                  4
## 704                    46     Schenectady                  4
## 705                    54        Tompkins                  3
## 706                  7095           Kings                  5
## 707                    43        Rockland                  6
## 708                     6      Chautauqua                  1
## 709                    56          Warren                  4
## 710                    32          Oneida                  3
## 711                  7094           Bronx                  5
## 712                    45        Saratoga                  4
## 713                    32          Oneida                  3
## 714                    59     Westchester                  6
## 715                     9         Clinton                  4
## 716                    59     Westchester                  6
## 717                    35          Orange                  6
## 718                    33        Onondaga                  3
## 719                  7094           Bronx                  5
## 720                    27          Monroe                  2
## 721                  7096          Queens                  5
## 722                    27          Monroe                  2
## 723                  7093        New York                  5
## 724                    29          Nassau                  7
## 725                  7095           Kings                  5
## 726                    34         Ontario                  2
## 727                  7094           Bronx                  5
## 728                  7094           Bronx                  5
## 729                     3          Broome                  3
## 730                  7096          Queens                  5
## 731                    51         Suffolk                  7
## 732                    27          Monroe                  2
## 733                    31         Niagara                  1
## 734                    38          Otsego                  4
## 735                    43        Rockland                  6
## 736                    27          Monroe                  2
## 737                  7095           Kings                  5
## 738                  7093        New York                  5
## 739                    33        Onondaga                  3
## 740                  7095           Kings                  5
## 741                    51         Suffolk                  7
## 742                     6      Chautauqua                  1
## 743                    46     Schenectady                  4
## 744                    51         Suffolk                  7
## 745                    33        Onondaga                  3
## 746                    51         Suffolk                  7
## 747                    17          Fulton                  4
## 748                  7095           Kings                  5
## 749                     1          Albany                  4
## 750                    32          Oneida                  3
## 751                    13        Dutchess                  6
## 752                  7093        New York                  5
## 753                    33        Onondaga                  3
## 754                     1          Albany                  4
## 755                    59     Westchester                  6
## 756                    21        Herkimer                  3
## 757                  7095           Kings                  5
## 758                    14            Erie                  1
## 759                  7096          Queens                  5
## 760                    37          Oswego                  3
## 761                    29          Nassau                  7
## 762                    27          Monroe                  2
## 763                  7094           Bronx                  5
## 764                  7097        Richmond                  5
## 765                     1          Albany                  4
## 766                    21        Herkimer                  3
## 767                    31         Niagara                  1
## 768                  7096          Queens                  5
## 769                    59     Westchester                  6
## 770                    59     Westchester                  6
## 771                    14            Erie                  1
## 772                  7096          Queens                  5
## 773                    46     Schenectady                  4
## 774                    14            Erie                  1
## 775                    35          Orange                  6
## 776                     8        Chenango                  3
## 777                  7097        Richmond                  5
## 778                    54        Tompkins                  3
## 779                  7095           Kings                  5
## 780                  7094           Bronx                  5
## 781                    29          Nassau                  7
## 782                  7094           Bronx                  5
## 783                    32          Oneida                  3
## 784                  7096          Queens                  5
## 785                  7094           Bronx                  5
## 786                    35          Orange                  6
## 787                  7095           Kings                  5
## 788                     3          Broome                  3
## 789                    27          Monroe                  2
## 790                  7095           Kings                  5
## 791                  7096          Queens                  5
## 792                  7095           Kings                  5
## 793                    44  Saint Lawrence                  3
## 794                  7094           Bronx                  5
## 795                    29          Nassau                  7
## 796                    27          Monroe                  2
## 797                    10        Columbia                  4
## 798                  7094           Bronx                  5
## 799                    46     Schenectady                  4
## 800                    51         Suffolk                  7
## 801                    28      Montgomery                  4
## 802                    44  Saint Lawrence                  3
## 803                  7094           Bronx                  5
## 804                    51         Suffolk                  7
## 805                    11        Cortland                  3
## 806                  7096          Queens                  5
## 807                  7093        New York                  5
## 808                    27          Monroe                  2
## 809                  7095           Kings                  5
## 810                    33        Onondaga                  3
## 811                    27          Monroe                  2
## 812                    13        Dutchess                  6
## 813                    27          Monroe                  2
## 814                    59     Westchester                  6
## 815                  7094           Bronx                  5
## 816                  7096          Queens                  5
## 817                    45        Saratoga                  4
## 818                    38          Otsego                  4
## 819                    14            Erie                  1
## 820                    52        Sullivan                  6
## 821                    41      Rensselaer                  4
## 822                    29          Nassau                  7
## 823                  7095           Kings                  5
## 824                  7096          Queens                  5
## 825                    33        Onondaga                  3
## 826                  7095           Kings                  5
## 827                    59     Westchester                  6
## 828                  7093        New York                  5
## 829                    59     Westchester                  6
## 830                  7095           Kings                  5
## 831                    51         Suffolk                  7
## 832                     1          Albany                  4
## 833                  7094           Bronx                  5
## 834                  7093        New York                  5
## 835                  7094           Bronx                  5
## 836                    57      Washington                  4
## 837                  7096          Queens                  5
## 838                    10        Columbia                  4
## 839                    45        Saratoga                  4
## 840                     6      Chautauqua                  1
## 841                  7095           Kings                  5
## 842                    33        Onondaga                  3
## 843                    38          Otsego                  4
## 844                    46     Schenectady                  4
## 845                    58           Wayne                  2
## 846                    33        Onondaga                  3
## 847                    13        Dutchess                  6
## 848                    12        Delaware                  4
## 849                  7095           Kings                  5
## 850                  7094           Bronx                  5
## 851                    14            Erie                  1
## 852                  7096          Queens                  5
## 853                     1          Albany                  4
## 854                    51         Suffolk                  7
## 855                    27          Monroe                  2
## 856                    51         Suffolk                  7
## 857                    45        Saratoga                  4
## 858                    59     Westchester                  6
## 859                    32          Oneida                  3
## 860                  7095           Kings                  5
## 861                  7093        New York                  5
## 862                  7094           Bronx                  5
## 863                    14            Erie                  1
## 864                    14            Erie                  1
## 865                    59     Westchester                  6
## 866                  7094           Bronx                  5
## 867                  7093        New York                  5
## 868                    38          Otsego                  4
## 869                  7095           Kings                  5
## 870                    26         Madison                  3
## 871                    33        Onondaga                  3
## 872                  7093        New York                  5
## 873                    33        Onondaga                  3
## 874                    46     Schenectady                  4
## 875                    60         Wyoming                  1
## 876                    29          Nassau                  7
## 877                    29          Nassau                  7
## 878                    59     Westchester                  6
## 879                    45        Saratoga                  4
## 880                    35          Orange                  6
## 881                    60         Wyoming                  1
## 882                    57      Washington                  4
## 883                     6      Chautauqua                  1
## 884                  7094           Bronx                  5
## 885                  7094           Bronx                  5
## 886                  7097        Richmond                  5
## 887                  7095           Kings                  5
## 888                  7095           Kings                  5
## 889                    45        Saratoga                  4
## 890                  7095           Kings                  5
## 891                  7093        New York                  5
## 892                    27          Monroe                  2
## 893                  7094           Bronx                  5
## 894                    14            Erie                  1
## 895                    29          Nassau                  7
## 896                    32          Oneida                  3
## 897                    14            Erie                  1
## 898                  7095           Kings                  5
## 899                  7097        Richmond                  5
## 900                    33        Onondaga                  3
## 901                    14            Erie                  1
## 902                    34         Ontario                  2
## 903                    59     Westchester                  6
## 904                     4     Cattaraugus                  1
## 905                    17          Fulton                  4
## 906                    14            Erie                  1
## 907                  7093        New York                  5
## 908                  7095           Kings                  5
## 909                    29          Nassau                  7
## 910                    14            Erie                  1
## 911                    55          Ulster                  6
## 912                  7093        New York                  5
## 913                  7093        New York                  5
## 914                  7093        New York                  5
## 915                  7096          Queens                  5
## 916                    15           Essex                  4
## 917                  7096          Queens                  5
## 918                  7095           Kings                  5
## 919                    38          Otsego                  4
## 920                    10        Columbia                  4
## 921                  7095           Kings                  5
## 922                    59     Westchester                  6
## 923                    11        Cortland                  3
## 924                  7094           Bronx                  5
## 925                    14            Erie                  1
## 926                  7094           Bronx                  5
## 927                  7095           Kings                  5
## 928                    18         Genesee                  1
## 929                    14            Erie                  1
## 930                    25      Livingston                  2
## 931                  7093        New York                  5
## 932                    59     Westchester                  6
## 933                    38          Otsego                  4
## 934                    59     Westchester                  6
## 935                    45        Saratoga                  4
## 936                  7093        New York                  5
## 937                    33        Onondaga                  3
## 938                  7096          Queens                  5
## 939                    51         Suffolk                  7
## 940                    29          Nassau                  7
## 941                     3          Broome                  3
## 942                    45        Saratoga                  4
## 943                    54        Tompkins                  3
## 944                    27          Monroe                  2
## 945                  7093        New York                  5
## 946                    58           Wayne                  2
## 947                    13        Dutchess                  6
## 948                    44  Saint Lawrence                  3
## 949                  7093        New York                  5
## 950                  7093        New York                  5
## 951                     9         Clinton                  4
## 952                    31         Niagara                  1
## 953                     1          Albany                  4
## 954                  7094           Bronx                  5
## 955                  7096          Queens                  5
## 956                  7095           Kings                  5
## 957                    51         Suffolk                  7
## 958                    41      Rensselaer                  4
## 959                  7094           Bronx                  5
## 960                  7093        New York                  5
## 961                    43        Rockland                  6
## 962                  7096          Queens                  5
## 963                  7095           Kings                  5
## 964                  7093        New York                  5
## 965                    22       Jefferson                  3
## 966                    33        Onondaga                  3
## 967                    59     Westchester                  6
## 968                    51         Suffolk                  7
## 969                    54        Tompkins                  3
## 970                    31         Niagara                  1
## 971                     8        Chenango                  3
## 972                    60         Wyoming                  1
## 973                     4     Cattaraugus                  1
## 974                    27          Monroe                  2
## 975                  7095           Kings                  5
## 976                  7095           Kings                  5
## 977                    44  Saint Lawrence                  3
## 978                    27          Monroe                  2
## 979                    13        Dutchess                  6
## 980                  7095           Kings                  5
## 981                    59     Westchester                  6
## 982                    29          Nassau                  7
## 983                  7095           Kings                  5
## 984                    11        Cortland                  3
## 985                    51         Suffolk                  7
## 986                    35          Orange                  6
## 987                    44  Saint Lawrence                  3
## 988                  7095           Kings                  5
## 989                     8        Chenango                  3
## 990                    31         Niagara                  1
## 991                  7094           Bronx                  5
## 992                  7097        Richmond                  5
## 993                  7093        New York                  5
## 994                    15           Essex                  4
## 995                    59     Westchester                  6
## 996                    33        Onondaga                  3
## 997                    59     Westchester                  6
## 998                    28      Montgomery                  4
## 999                  7093        New York                  5
## 1000                 7095           Kings                  5
## 1001                   29          Nassau                  7
## 1002                 7095           Kings                  5
## 1003                    3          Broome                  3
## 1004                   14            Erie                  1
## 1005                   27          Monroe                  2
## 1006                   46     Schenectady                  4
## 1007                    1          Albany                  4
## 1008                   26         Madison                  3
## 1009                   28      Montgomery                  4
## 1010                   59     Westchester                  6
## 1011                    6      Chautauqua                  1
## 1012                   36         Orleans                  1
## 1013                 7094           Bronx                  5
## 1014                   59     Westchester                  6
## 1015                   27          Monroe                  2
## 1016                   14            Erie                  1
## 1017                   52        Sullivan                  6
## 1018                 7096          Queens                  5
## 1019                   45        Saratoga                  4
## 1020                    6      Chautauqua                  1
## 1021                    1          Albany                  4
## 1022                   51         Suffolk                  7
## 1023                 7095           Kings                  5
## 1024                   51         Suffolk                  7
## 1025                 7094           Bronx                  5
## 1026                 7094           Bronx                  5
## 1027                   29          Nassau                  7
## 1028                   54        Tompkins                  3
## 1029                   50         Steuben                  2
## 1030                   34         Ontario                  2
## 1031                 7095           Kings                  5
## 1032                   52        Sullivan                  6
## 1033                   29          Nassau                  7
## 1034                 7094           Bronx                  5
## 1035                   56          Warren                  4
## 1036                 7093        New York                  5
## 1037                 7093        New York                  5
## 1038                   45        Saratoga                  4
## 1039                 7094           Bronx                  5
## 1040                   16        Franklin                  4
## 1041                   59     Westchester                  6
## 1042                    1          Albany                  4
## 1043                   10        Columbia                  4
## 1044                   59     Westchester                  6
## 1045                   26         Madison                  3
## 1046                 7093        New York                  5
## 1047                 7095           Kings                  5
## 1048                 7095           Kings                  5
## 1049                   29          Nassau                  7
## 1050                 7093        New York                  5
## 1051                   52        Sullivan                  6
## 1052                 7097        Richmond                  5
## 1053                   14            Erie                  1
## 1054                   22       Jefferson                  3
## 1055                 7096          Queens                  5
## 1056                 7093        New York                  5
## 1057                   36         Orleans                  1
## 1058                   35          Orange                  6
## 1059                   13        Dutchess                  6
## 1060                   29          Nassau                  7
## 1061                 7095           Kings                  5
## 1062                   37          Oswego                  3
## 1063                 7093        New York                  5
## 1064                   33        Onondaga                  3
## 1065                   27          Monroe                  2
## 1066                   35          Orange                  6
## 1067                 7095           Kings                  5
## 1068                   55          Ulster                  6
## 1069                   27          Monroe                  2
## 1070                   41      Rensselaer                  4
## 1071                   51         Suffolk                  7
## 1072                 7093        New York                  5
## 1073                    3          Broome                  3
## 1074                   38          Otsego                  4
## 1075                   13        Dutchess                  6
## 1076                   33        Onondaga                  3
## 1077                   33        Onondaga                  3
## 1078                   38          Otsego                  4
## 1079                   14            Erie                  1
## 1080                   10        Columbia                  4
## 1081                   14            Erie                  1
## 1082                 7096          Queens                  5
## 1083                    1          Albany                  4
## 1084                   14            Erie                  1
## 1085                   13        Dutchess                  6
## 1086                   38          Otsego                  4
## 1087                   59     Westchester                  6
## 1088                 7095           Kings                  5
## 1089                 7093        New York                  5
## 1090                   22       Jefferson                  3
## 1091                    5          Cayuga                  3
## 1092                   27          Monroe                  2
## 1093                 7096          Queens                  5
## 1094                   21        Herkimer                  3
## 1095                 7096          Queens                  5
## 1096                 7094           Bronx                  5
## 1097                 7093        New York                  5
## 1098                 7093        New York                  5
## 1099                 7096          Queens                  5
## 1100                   38          Otsego                  4
## 1101                 7095           Kings                  5
## 1102                 7093        New York                  5
## 1103                 7093        New York                  5
## 1104                   32          Oneida                  3
## 1105                 7093        New York                  5
## 1106                   50         Steuben                  2
## 1107                   38          Otsego                  4
## 1108                 7096          Queens                  5
## 1109                   27          Monroe                  2
## 1110                 7096          Queens                  5
## 1111                   10        Columbia                  4
## 1112                   33        Onondaga                  3
## 1113                   59     Westchester                  6
## 1114                   16        Franklin                  4
## 1115                 7096          Queens                  5
## 1116                   51         Suffolk                  7
## 1117                 7095           Kings                  5
## 1118                 7095           Kings                  5
## 1119                   39          Putnam                  6
## 1120                 7095           Kings                  5
## 1121                 7093        New York                  5
## 1122                 7093        New York                  5
## 1123                    1          Albany                  4
## 1124                 7096          Queens                  5
## 1125                   56          Warren                  4
## 1126                 7095           Kings                  5
## 1127                   27          Monroe                  2
## 1128                   51         Suffolk                  7
## 1129                 7096          Queens                  5
## 1130                 7096          Queens                  5
## 1131                 7093        New York                  5
## 1132                   14            Erie                  1
## 1133                 7094           Bronx                  5
## 1134                 7093        New York                  5
## 1135                   59     Westchester                  6
## 1136                 7095           Kings                  5
## 1137                   27          Monroe                  2
## 1138                   17          Fulton                  4
## 1139                   27          Monroe                  2
## 1140                 7093        New York                  5
## 1141                   22       Jefferson                  3
## 1142                   29          Nassau                  7
## 1143                   31         Niagara                  1
## 1144                   29          Nassau                  7
## 1145                 7097        Richmond                  5
## 1146                 7097        Richmond                  5
## 1147                   33        Onondaga                  3
## 1148                   28      Montgomery                  4
## 1149                   59     Westchester                  6
## 1150                    3          Broome                  3
## 1151                   33        Onondaga                  3
## 1152                   59     Westchester                  6
## 1153                    3          Broome                  3
## 1154                   51         Suffolk                  7
## 1155                   59     Westchester                  6
## 1156                   59     Westchester                  6
## 1157                   16        Franklin                  4
## 1158                    4     Cattaraugus                  1
## 1159                   27          Monroe                  2
## 1160                   33        Onondaga                  3
## 1161                 7096          Queens                  5
## 1162                   59     Westchester                  6
## 1163                 7094           Bronx                  5
## 1164                   38          Otsego                  4
## 1165                   51         Suffolk                  7
## 1166                    9         Clinton                  4
## 1167                   29          Nassau                  7
## 1168                    8        Chenango                  3
## 1169                   29          Nassau                  7
## 1170                   22       Jefferson                  3
## 1171                 7094           Bronx                  5
## 1172                   59     Westchester                  6
## 1173                   34         Ontario                  2
## 1174                   58           Wayne                  2
## 1175                   13        Dutchess                  6
## 1176                   25      Livingston                  2
## 1177                   41      Rensselaer                  4
## 1178                 7095           Kings                  5
## 1179                 7095           Kings                  5
## 1180                   59     Westchester                  6
## 1181                 7094           Bronx                  5
## 1182                   51         Suffolk                  7
## 1183                   27          Monroe                  2
## 1184                   35          Orange                  6
## 1185                   44  Saint Lawrence                  3
## 1186                   36         Orleans                  1
## 1187                   34         Ontario                  2
## 1188                 7094           Bronx                  5
## 1189                   29          Nassau                  7
## 1190                   29          Nassau                  7
## 1191                    1          Albany                  4
## 1192                   46     Schenectady                  4
## 1193                   55          Ulster                  6
## 1194                 7094           Bronx                  5
## 1195                   26         Madison                  3
## 1196                   14            Erie                  1
## 1197                 7095           Kings                  5
## 1198                   17          Fulton                  4
## 1199                 7095           Kings                  5
## 1200                   44  Saint Lawrence                  3
## 1201                 7096          Queens                  5
## 1202                    9         Clinton                  4
## 1203                    1          Albany                  4
## 1204                   32          Oneida                  3
## 1205                 7095           Kings                  5
## 1206                 7096          Queens                  5
## 1207                   29          Nassau                  7
## 1208                 7095           Kings                  5
## 1209                 7097        Richmond                  5
## 1210                   59     Westchester                  6
## 1211                    3          Broome                  3
## 1212                 7093        New York                  5
## 1213                   31         Niagara                  1
## 1214                 7094           Bronx                  5
## 1215                 7095           Kings                  5
## 1216                 7094           Bronx                  5
## 1217                   55          Ulster                  6
## 1218                    8        Chenango                  3
## 1219                   33        Onondaga                  3
## 1220                 7096          Queens                  5
## 1221                 7095           Kings                  5
## 1222                   33        Onondaga                  3
## 1223                 7093        New York                  5
## 1224                   29          Nassau                  7
## 1225                 7094           Bronx                  5
## 1226                   11        Cortland                  3
## 1227                 7093        New York                  5
## 1228                 7095           Kings                  5
## 1229                 7095           Kings                  5
## 1230                 7095           Kings                  5
## 1231                   27          Monroe                  2
## 1232                   50         Steuben                  2
## 1233                   45        Saratoga                  4
## 1234                 7097        Richmond                  5
## 1235                   51         Suffolk                  7
## 1236                   27          Monroe                  2
## 1237                 7096          Queens                  5
## 1238                   51         Suffolk                  7
## 1239                   27          Monroe                  2
## 1240                 7096          Queens                  5
## 1241                    2        Allegany                  1
## 1242                   59     Westchester                  6
## 1243                   51         Suffolk                  7
## 1244                   27          Monroe                  2
## 1245                   57      Washington                  4
## 1246                    1          Albany                  4
## 1247                   28      Montgomery                  4
## 1248                   27          Monroe                  2
## 1249                 7094           Bronx                  5
## 1250                   51         Suffolk                  7
## 1251                 7096          Queens                  5
## 1252                   26         Madison                  3
## 1253                   31         Niagara                  1
## 1254                   35          Orange                  6
## 1255                    7         Chemung                  2
## 1256                   12        Delaware                  4
## 1257                    6      Chautauqua                  1
## 1258                   59     Westchester                  6
## 1259                 7094           Bronx                  5
## 1260                   14            Erie                  1
## 1261                 7097        Richmond                  5
## 1262                 7094           Bronx                  5
## 1263                   29          Nassau                  7
## 1264                   55          Ulster                  6
## 1265                    3          Broome                  3
## 1266                   37          Oswego                  3
## 1267                    9         Clinton                  4
## 1268                   34         Ontario                  2
## 1269                 7093        New York                  5
## 1270                   11        Cortland                  3
## 1271                 7094           Bronx                  5
## 1272                   29          Nassau                  7
## 1273                   44  Saint Lawrence                  3
## 1274                   51         Suffolk                  7
## 1275                   59     Westchester                  6
## 1276                 7094           Bronx                  5
## 1277                 7094           Bronx                  5
## 1278                   60         Wyoming                  1
## 1279                   59     Westchester                  6
## 1280                   26         Madison                  3
## 1281                   59     Westchester                  6
## 1282                   51         Suffolk                  7
## 1283                   12        Delaware                  4
## 1284                 7093        New York                  5
## 1285                   32          Oneida                  3
## 1286                   14            Erie                  1
## 1287                   27          Monroe                  2
## 1288                   32          Oneida                  3
## 1289                 7096          Queens                  5
## 1290                   27          Monroe                  2
## 1291                   51         Suffolk                  7
## 1292                 7094           Bronx                  5
## 1293                   34         Ontario                  2
## 1294                   59     Westchester                  6
## 1295                 7096          Queens                  5
## 1296                 7093        New York                  5
## 1297                   26         Madison                  3
## 1298                   33        Onondaga                  3
## 1299                   43        Rockland                  6
## 1300                   45        Saratoga                  4
## 1301                   59     Westchester                  6
## 1302                 7094           Bronx                  5
## 1303                 7095           Kings                  5
## 1304                   53           Tioga                  3
## 1305                 7096          Queens                  5
## 1306                 7095           Kings                  5
## 1307                   19          Greene                  4
## 1308                   14            Erie                  1
## 1309                   22       Jefferson                  3
## 1310                   29          Nassau                  7
## 1311                   48        Schuyler                  2
## 1312                 7095           Kings                  5
## 1313                   12        Delaware                  4
## 1314                    1          Albany                  4
## 1315                   27          Monroe                  2
## 1316                   51         Suffolk                  7
## 1317                   59     Westchester                  6
## 1318                   59     Westchester                  6
## 1319                   27          Monroe                  2
## 1320                   29          Nassau                  7
## 1321                 7097        Richmond                  5
## 1322                 7095           Kings                  5
## 1323                 7093        New York                  5
## 1324                   27          Monroe                  2
## 1325                   44  Saint Lawrence                  3
## 1326                 7094           Bronx                  5
## 1327                   56          Warren                  4
## 1328                 7095           Kings                  5
## 1329                   59     Westchester                  6
## 1330                   14            Erie                  1
## 1331                 7095           Kings                  5
## 1332                   13        Dutchess                  6
## 1333                   26         Madison                  3
## 1334                 7094           Bronx                  5
## 1335                   52        Sullivan                  6
## 1336                 7096          Queens                  5
## 1337                   58           Wayne                  2
## 1338                   22       Jefferson                  3
## 1339                   58           Wayne                  2
## 1340                 7096          Queens                  5
## 1341                 7094           Bronx                  5
## 1342                 7093        New York                  5
## 1343                   59     Westchester                  6
## 1344                   41      Rensselaer                  4
## 1345                   28      Montgomery                  4
## 1346                   35          Orange                  6
## 1347                   15           Essex                  4
## 1348                   53           Tioga                  3
## 1349                   37          Oswego                  3
## 1350                 7093        New York                  5
## 1351                   47       Schoharie                  4
## 1352                 7093        New York                  5
## 1353                   33        Onondaga                  3
## 1354                 7094           Bronx                  5
## 1355                   32          Oneida                  3
## 1356                 7093        New York                  5
## 1357                 7096          Queens                  5
## 1358                   32          Oneida                  3
## 1359                   59     Westchester                  6
## 1360                 7097        Richmond                  5
## 1361                   37          Oswego                  3
## 1362                 7095           Kings                  5
## 1363                   33        Onondaga                  3
## 1364                 7096          Queens                  5
## 1365                    1          Albany                  4
## 1366                 7093        New York                  5
## 1367                   29          Nassau                  7
## 1368                   27          Monroe                  2
## 1369                   52        Sullivan                  6
## 1370                 7096          Queens                  5
## 1371                    3          Broome                  3
## 1372                   21        Herkimer                  3
## 1373                   41      Rensselaer                  4
## 1374                 7093        New York                  5
## 1375                   17          Fulton                  4
## 1376                 7093        New York                  5
## 1377                   53           Tioga                  3
## 1378                   24           Lewis                  3
## 1379                 7096          Queens                  5
## 1380                    3          Broome                  3
## 1381                 7093        New York                  5
## 1382                 7093        New York                  5
## 1383                   29          Nassau                  7
## 1384                   52        Sullivan                  6
## 1385                   59     Westchester                  6
## 1386                 7095           Kings                  5
## 1387                   29          Nassau                  7
## 1388                   29          Nassau                  7
## 1389                 7096          Queens                  5
## 1390                   45        Saratoga                  4
## 1391                   41      Rensselaer                  4
## 1392                   29          Nassau                  7
## 1393                   24           Lewis                  3
## 1394                   29          Nassau                  7
## 1395                 7093        New York                  5
## 1396                 7094           Bronx                  5
## 1397                 7097        Richmond                  5
## 1398                   27          Monroe                  2
## 1399                    3          Broome                  3
## 1400                   51         Suffolk                  7
## 1401                   58           Wayne                  2
## 1402                   45        Saratoga                  4
## 1403                   38          Otsego                  4
## 1404                 7094           Bronx                  5
## 1405                 7093        New York                  5
## 1406                   46     Schenectady                  4
## 1407                 7097        Richmond                  5
## 1408                   38          Otsego                  4
## 1409                 7094           Bronx                  5
## 1410                    1          Albany                  4
## 1411                 7095           Kings                  5
## 1412                   19          Greene                  4
## 1413                 7095           Kings                  5
## 1414                 7094           Bronx                  5
## 1415                   32          Oneida                  3
## 1416                   56          Warren                  4
## 1417                 7094           Bronx                  5
## 1418                 7093        New York                  5
## 1419                 7094           Bronx                  5
## 1420                    5          Cayuga                  3
## 1421                    1          Albany                  4
## 1422                 7095           Kings                  5
## 1423                   32          Oneida                  3
## 1424                    5          Cayuga                  3
## 1425                 7095           Kings                  5
## 1426                   15           Essex                  4
## 1427                   61           Yates                  2
## 1428                 7093        New York                  5
## 1429                   13        Dutchess                  6
## 1430                   33        Onondaga                  3
## 1431                   55          Ulster                  6
## 1432                   27          Monroe                  2
## 1433                   27          Monroe                  2
## 1434                 7094           Bronx                  5
## 1435                   35          Orange                  6
## 1436                 7096          Queens                  5
## 1437                   27          Monroe                  2
## 1438                   59     Westchester                  6
## 1439                   18         Genesee                  1
## 1440                   27          Monroe                  2
## 1441                   51         Suffolk                  7
## 1442                   22       Jefferson                  3
## 1443                 7097        Richmond                  5
## 1444                    1          Albany                  4
## 1445                 7095           Kings                  5
## 1446                 7095           Kings                  5
## 1447                   41      Rensselaer                  4
## 1448                    3          Broome                  3
## 1449                   43        Rockland                  6
## 1450                    1          Albany                  4
## 1451                 7093        New York                  5
## 1452                 7095           Kings                  5
## 1453                 7094           Bronx                  5
## 1454                 7096          Queens                  5
## 1455                   24           Lewis                  3
## 1456                   58           Wayne                  2
## 1457                    1          Albany                  4
## 1458                   27          Monroe                  2
## 1459                   31         Niagara                  1
## 1460                   24           Lewis                  3
## 1461                   55          Ulster                  6
## 1462                   59     Westchester                  6
## 1463                   50         Steuben                  2
## 1464                   37          Oswego                  3
## 1465                   59     Westchester                  6
## 1466                   59     Westchester                  6
## 1467                   14            Erie                  1
## 1468                   22       Jefferson                  3
## 1469                   51         Suffolk                  7
## 1470                   59     Westchester                  6
## 1471                 7095           Kings                  5
## 1472                   41      Rensselaer                  4
## 1473                    6      Chautauqua                  1
## 1474                   37          Oswego                  3
## 1475                   14            Erie                  1
## 1476                   17          Fulton                  4
## 1477                 7093        New York                  5
## 1478                 7095           Kings                  5
## 1479                   59     Westchester                  6
## 1480                   59     Westchester                  6
## 1481                   59     Westchester                  6
## 1482                   14            Erie                  1
## 1483                 7097        Richmond                  5
## 1484                    3          Broome                  3
## 1485                   58           Wayne                  2
## 1486                   59     Westchester                  6
## 1487                 7095           Kings                  5
## 1488                 7095           Kings                  5
## 1489                 7093        New York                  5
## 1490                 7094           Bronx                  5
## 1491                   43        Rockland                  6
## 1492                   29          Nassau                  7
## 1493                   27          Monroe                  2
## 1494                   31         Niagara                  1
## 1495                   51         Suffolk                  7
## 1496                   51         Suffolk                  7
## 1497                   43        Rockland                  6
## 1498                   51         Suffolk                  7
## 1499                   37          Oswego                  3
## 1500                   18         Genesee                  1
## 1501                   31         Niagara                  1
## 1502                 7094           Bronx                  5
## 1503                   59     Westchester                  6
## 1504                   33        Onondaga                  3
## 1505                   13        Dutchess                  6
## 1506                   32          Oneida                  3
## 1507                   12        Delaware                  4
## 1508                   51         Suffolk                  7
## 1509                   29          Nassau                  7
## 1510                    5          Cayuga                  3
## 1511                   27          Monroe                  2
## 1512                 7094           Bronx                  5
## 1513                 7093        New York                  5
## 1514                   27          Monroe                  2
## 1515                   46     Schenectady                  4
## 1516                 7094           Bronx                  5
## 1517                   12        Delaware                  4
## 1518                 7097        Richmond                  5
## 1519                 7095           Kings                  5
## 1520                 7094           Bronx                  5
## 1521                 7094           Bronx                  5
## 1522                   13        Dutchess                  6
## 1523                 7096          Queens                  5
## 1524                   27          Monroe                  2
## 1525                 7095           Kings                  5
## 1526                   13        Dutchess                  6
## 1527                 7094           Bronx                  5
## 1528                   51         Suffolk                  7
## 1529                   29          Nassau                  7
## 1530                   14            Erie                  1
## 1531                 7094           Bronx                  5
## 1532                   13        Dutchess                  6
## 1533                   27          Monroe                  2
## 1534                 7094           Bronx                  5
## 1535                 7094           Bronx                  5
## 1536                   59     Westchester                  6
## 1537                 7094           Bronx                  5
## 1538                   27          Monroe                  2
## 1539                   14            Erie                  1
## 1540                   27          Monroe                  2
## 1541                   51         Suffolk                  7
## 1542                    1          Albany                  4
## 1543                    9         Clinton                  4
## 1544                   29          Nassau                  7
## 1545                 7096          Queens                  5
## 1546                    4     Cattaraugus                  1
## 1547                 7093        New York                  5
## 1548                   28      Montgomery                  4
## 1549                 7093        New York                  5
## 1550                   27          Monroe                  2
## 1551                   51         Suffolk                  7
## 1552                   28      Montgomery                  4
## 1553                   15           Essex                  4
## 1554                   25      Livingston                  2
## 1555                 7095           Kings                  5
## 1556                   55          Ulster                  6
## 1557                 7094           Bronx                  5
## 1558                 7094           Bronx                  5
## 1559                   59     Westchester                  6
## 1560                 7093        New York                  5
## 1561                   14            Erie                  1
## 1562                   59     Westchester                  6
## 1563                 7095           Kings                  5
## 1564                 7095           Kings                  5
## 1565                    2        Allegany                  1
## 1566                   51         Suffolk                  7
## 1567                 7093        New York                  5
## 1568                   51         Suffolk                  7
## 1569                   22       Jefferson                  3
## 1570                   32          Oneida                  3
## 1571                   27          Monroe                  2
## 1572                 7093        New York                  5
## 1573                 7094           Bronx                  5
## 1574                 7095           Kings                  5
## 1575                   59     Westchester                  6
## 1576                 7096          Queens                  5
## 1577                   51         Suffolk                  7
## 1578                   54        Tompkins                  3
## 1579                 7096          Queens                  5
## 1580                 7094           Bronx                  5
## 1581                   27          Monroe                  2
## 1582                   45        Saratoga                  4
## 1583                   51         Suffolk                  7
## 1584                 7096          Queens                  5
## 1585                   27          Monroe                  2
## 1586                   51         Suffolk                  7
## 1587                   34         Ontario                  2
## 1588                   46     Schenectady                  4
## 1589                    3          Broome                  3
## 1590                   14            Erie                  1
## 1591                   14            Erie                  1
## 1592                   44  Saint Lawrence                  3
## 1593                 7093        New York                  5
## 1594                    2        Allegany                  1
## 1595                   45        Saratoga                  4
## 1596                 7094           Bronx                  5
## 1597                   51         Suffolk                  7
## 1598                   14            Erie                  1
## 1599                   29          Nassau                  7
## 1600                   59     Westchester                  6
## 1601                 7094           Bronx                  5
## 1602                   45        Saratoga                  4
## 1603                   29          Nassau                  7
## 1604                 7094           Bronx                  5
## 1605                    1          Albany                  4
## 1606                 7095           Kings                  5
## 1607                   51         Suffolk                  7
## 1608                   35          Orange                  6
## 1609                 7095           Kings                  5
## 1610                 7094           Bronx                  5
## 1611                 7094           Bronx                  5
## 1612                 7093        New York                  5
## 1613                 7094           Bronx                  5
## 1614                   29          Nassau                  7
## 1615                   51         Suffolk                  7
## 1616                 7093        New York                  5
## 1617                   45        Saratoga                  4
## 1618                   27          Monroe                  2
## 1619                   57      Washington                  4
## 1620                 7093        New York                  5
## 1621                   46     Schenectady                  4
## 1622                   27          Monroe                  2
## 1623                 7095           Kings                  5
## 1624                   32          Oneida                  3
## 1625                   14            Erie                  1
## 1626                   12        Delaware                  4
## 1627                 7095           Kings                  5
## 1628                 7094           Bronx                  5
## 1629                 7096          Queens                  5
## 1630                   46     Schenectady                  4
## 1631                   14            Erie                  1
## 1632                 7094           Bronx                  5
## 1633                 7094           Bronx                  5
## 1634                 7094           Bronx                  5
## 1635                 7096          Queens                  5
## 1636                 7095           Kings                  5
## 1637                   38          Otsego                  4
## 1638                 7094           Bronx                  5
## 1639                   16        Franklin                  4
## 1640                   29          Nassau                  7
## 1641                   10        Columbia                  4
## 1642                 7095           Kings                  5
## 1643                   27          Monroe                  2
## 1644                   55          Ulster                  6
## 1645                    3          Broome                  3
## 1646                   59     Westchester                  6
## 1647                 7094           Bronx                  5
## 1648                 7094           Bronx                  5
## 1649                 7095           Kings                  5
## 1650                   35          Orange                  6
## 1651                 7095           Kings                  5
## 1652                 7095           Kings                  5
## 1653                   52        Sullivan                  6
## 1654                   59     Westchester                  6
## 1655                   29          Nassau                  7
## 1656                 7095           Kings                  5
## 1657                   13        Dutchess                  6
## 1658                   13        Dutchess                  6
## 1659                   29          Nassau                  7
## 1660                   56          Warren                  4
## 1661                 7093        New York                  5
## 1662                    1          Albany                  4
## 1663                    9         Clinton                  4
## 1664                 7095           Kings                  5
## 1665                   37          Oswego                  3
## 1666                   34         Ontario                  2
## 1667                 7093        New York                  5
## 1668                   14            Erie                  1
## 1669                    3          Broome                  3
## 1670                 7093        New York                  5
## 1671                   51         Suffolk                  7
## 1672                    1          Albany                  4
## 1673                   32          Oneida                  3
## 1674                   34         Ontario                  2
## 1675                   37          Oswego                  3
## 1676                   35          Orange                  6
## 1677                   45        Saratoga                  4
## 1678                 7096          Queens                  5
## 1679                   38          Otsego                  4
## 1680                   59     Westchester                  6
## 1681                   46     Schenectady                  4
## 1682                 7093        New York                  5
## 1683                   28      Montgomery                  4
## 1684                 7094           Bronx                  5
## 1685                 7096          Queens                  5
## 1686                   27          Monroe                  2
## 1687                   51         Suffolk                  7
## 1688                   29          Nassau                  7
## 1689                   27          Monroe                  2
## 1690                   31         Niagara                  1
## 1691                    3          Broome                  3
## 1692                 7095           Kings                  5
## 1693                   29          Nassau                  7
## 1694                   37          Oswego                  3
## 1695                 7095           Kings                  5
## 1696                   32          Oneida                  3
## 1697                    3          Broome                  3
## 1698                   51         Suffolk                  7
## 1699                   47       Schoharie                  4
## 1700                 7095           Kings                  5
## 1701                   18         Genesee                  1
## 1702                   56          Warren                  4
## 1703                 7095           Kings                  5
## 1704                 7095           Kings                  5
## 1705                   44  Saint Lawrence                  3
## 1706                 7094           Bronx                  5
## 1707                 7094           Bronx                  5
## 1708                 7095           Kings                  5
## 1709                   29          Nassau                  7
## 1710                 7095           Kings                  5
## 1711                 7094           Bronx                  5
## 1712                   45        Saratoga                  4
## 1713                    1          Albany                  4
## 1714                 7095           Kings                  5
## 1715                 7095           Kings                  5
## 1716                   14            Erie                  1
## 1717                   37          Oswego                  3
## 1718                 7097        Richmond                  5
## 1719                   29          Nassau                  7
## 1720                 7093        New York                  5
## 1721                   29          Nassau                  7
## 1722                   44  Saint Lawrence                  3
## 1723                 7093        New York                  5
## 1724                 7096          Queens                  5
## 1725                   59     Westchester                  6
## 1726                   26         Madison                  3
## 1727                   28      Montgomery                  4
## 1728                 7093        New York                  5
## 1729                   54        Tompkins                  3
## 1730                   51         Suffolk                  7
## 1731                   33        Onondaga                  3
## 1732                   59     Westchester                  6
## 1733                 7094           Bronx                  5
## 1734                   51         Suffolk                  7
## 1735                   14            Erie                  1
## 1736                   25      Livingston                  2
## 1737                   56          Warren                  4
## 1738                 7094           Bronx                  5
## 1739                 7094           Bronx                  5
## 1740                   32          Oneida                  3
## 1741                   10        Columbia                  4
## 1742                 7096          Queens                  5
## 1743                   27          Monroe                  2
## 1744                    4     Cattaraugus                  1
## 1745                 7093        New York                  5
## 1746                   59     Westchester                  6
## 1747                   33        Onondaga                  3
## 1748                   22       Jefferson                  3
## 1749                 7095           Kings                  5
## 1750                   46     Schenectady                  4
## 1751                   27          Monroe                  2
## 1752                   35          Orange                  6
## 1753                 7096          Queens                  5
## 1754                   55          Ulster                  6
## 1755                   45        Saratoga                  4
## 1756                   37          Oswego                  3
## 1757                   51         Suffolk                  7
## 1758                   59     Westchester                  6
## 1759                 7095           Kings                  5
## 1760                   41      Rensselaer                  4
## 1761                 7094           Bronx                  5
## 1762                 7095           Kings                  5
## 1763                 7094           Bronx                  5
## 1764                   51         Suffolk                  7
## 1765                   44  Saint Lawrence                  3
## 1766                   59     Westchester                  6
## 1767                   59     Westchester                  6
## 1768                   14            Erie                  1
## 1769                   12        Delaware                  4
## 1770                   29          Nassau                  7
## 1771                   48        Schuyler                  2
## 1772                 7094           Bronx                  5
## 1773                   50         Steuben                  2
## 1774                   38          Otsego                  4
## 1775                 7093        New York                  5
## 1776                    8        Chenango                  3
## 1777                   27          Monroe                  2
## 1778                   14            Erie                  1
## 1779                   33        Onondaga                  3
## 1780                   27          Monroe                  2
## 1781                   51         Suffolk                  7
## 1782                 7093        New York                  5
## 1783                    9         Clinton                  4
## 1784                   34         Ontario                  2
## 1785                 7096          Queens                  5
## 1786                   13        Dutchess                  6
## 1787                   27          Monroe                  2
## 1788                   31         Niagara                  1
## 1789                   50         Steuben                  2
## 1790                 7093        New York                  5
## 1791                    1          Albany                  4
## 1792                   29          Nassau                  7
## 1793                 7095           Kings                  5
## 1794                   33        Onondaga                  3
## 1795                   29          Nassau                  7
## 1796                    5          Cayuga                  3
## 1797                   54        Tompkins                  3
## 1798                   29          Nassau                  7
## 1799                   12        Delaware                  4
## 1800                    8        Chenango                  3
## 1801                 7097        Richmond                  5
## 1802                   31         Niagara                  1
## 1803                 7094           Bronx                  5
## 1804                   41      Rensselaer                  4
## 1805                   34         Ontario                  2
## 1806                 7093        New York                  5
## 1807                 7096          Queens                  5
## 1808                   27          Monroe                  2
## 1809                   51         Suffolk                  7
## 1810                   51         Suffolk                  7
## 1811                   29          Nassau                  7
## 1812                 7094           Bronx                  5
## 1813                   45        Saratoga                  4
## 1814                   31         Niagara                  1
## 1815                 7095           Kings                  5
## 1816                   52        Sullivan                  6
## 1817                 7093        New York                  5
## 1818                   54        Tompkins                  3
## 1819                 7094           Bronx                  5
## 1820                   56          Warren                  4
## 1821                   51         Suffolk                  7
## 1822                 7094           Bronx                  5
## 1823                   59     Westchester                  6
## 1824                 7093        New York                  5
## 1825                   44  Saint Lawrence                  3
## 1826                   34         Ontario                  2
## 1827                 7095           Kings                  5
## 1828                    1          Albany                  4
## 1829                    1          Albany                  4
## 1830                   52        Sullivan                  6
## 1831                   50         Steuben                  2
## 1832                   44  Saint Lawrence                  3
## 1833                 7093        New York                  5
## 1834                 7094           Bronx                  5
## 1835                   46     Schenectady                  4
## 1836                   39          Putnam                  6
## 1837                    2        Allegany                  1
## 1838                   33        Onondaga                  3
## 1839                   15           Essex                  4
## 1840                   59     Westchester                  6
## 1841                   17          Fulton                  4
## 1842                 7095           Kings                  5
## 1843                   51         Suffolk                  7
## 1844                 7095           Kings                  5
## 1845                 7094           Bronx                  5
## 1846                    9         Clinton                  4
## 1847                   28      Montgomery                  4
## 1848                    1          Albany                  4
## 1849                   33        Onondaga                  3
## 1850                   33        Onondaga                  3
## 1851                   59     Westchester                  6
## 1852                   14            Erie                  1
## 1853                 7095           Kings                  5
## 1854                   55          Ulster                  6
## 1855                 7096          Queens                  5
## 1856                   27          Monroe                  2
## 1857                   55          Ulster                  6
## 1858                 7094           Bronx                  5
## 1859                 7094           Bronx                  5
## 1860                 7094           Bronx                  5
## 1861                 7093        New York                  5
## 1862                 7094           Bronx                  5
## 1863                 7093        New York                  5
## 1864                 7094           Bronx                  5
## 1865                    3          Broome                  3
## 1866                   52        Sullivan                  6
## 1867                 7095           Kings                  5
## 1868                   14            Erie                  1
## 1869                 7093        New York                  5
## 1870                 7093        New York                  5
## 1871                   59     Westchester                  6
## 1872                   27          Monroe                  2
## 1873                    1          Albany                  4
## 1874                 7094           Bronx                  5
## 1875                   32          Oneida                  3
## 1876                   14            Erie                  1
## 1877                   32          Oneida                  3
## 1878                 7095           Kings                  5
## 1879                 7093        New York                  5
## 1880                   14            Erie                  1
## 1881                   14            Erie                  1
## 1882                    1          Albany                  4
## 1883                   27          Monroe                  2
## 1884                   43        Rockland                  6
## 1885                   44  Saint Lawrence                  3
## 1886                   29          Nassau                  7
## 1887                   22       Jefferson                  3
## 1888                   51         Suffolk                  7
## 1889                 7096          Queens                  5
## 1890                   29          Nassau                  7
## 1891                    3          Broome                  3
## 1892                   53           Tioga                  3
## 1893                   57      Washington                  4
## 1894                   32          Oneida                  3
## 1895                   41      Rensselaer                  4
## 1896                   45        Saratoga                  4
## 1897                 7093        New York                  5
## 1898                   14            Erie                  1
## 1899                 7093        New York                  5
## 1900                    3          Broome                  3
## 1901                   33        Onondaga                  3
## 1902                 7093        New York                  5
## 1903                 7096          Queens                  5
## 1904                   61           Yates                  2
## 1905                   38          Otsego                  4
## 1906                 7093        New York                  5
## 1907                 7095           Kings                  5
## 1908                   43        Rockland                  6
## 1909                 7093        New York                  5
## 1910                   43        Rockland                  6
## 1911                   52        Sullivan                  6
## 1912                    3          Broome                  3
## 1913                 7093        New York                  5
## 1914                 7096          Queens                  5
## 1915                   44  Saint Lawrence                  3
## 1916                   51         Suffolk                  7
## 1917                    1          Albany                  4
## 1918                 7094           Bronx                  5
## 1919                   41      Rensselaer                  4
## 1920                   14            Erie                  1
## 1921                   51         Suffolk                  7
## 1922                   51         Suffolk                  7
## 1923                 7095           Kings                  5
## 1924                 7097        Richmond                  5
## 1925                   56          Warren                  4
## 1926                 7095           Kings                  5
## 1927                   14            Erie                  1
## 1928                   35          Orange                  6
## 1929                 7093        New York                  5
## 1930                    7         Chemung                  2
## 1931                   29          Nassau                  7
## 1932                 7093        New York                  5
## 1933                 7093        New York                  5
## 1934                 7096          Queens                  5
## 1935                   27          Monroe                  2
## 1936                   33        Onondaga                  3
## 1937                 7095           Kings                  5
## 1938                 7093        New York                  5
## 1939                   14            Erie                  1
## 1940                    3          Broome                  3
## 1941                    3          Broome                  3
## 1942                   21        Herkimer                  3
## 1943                   14            Erie                  1
## 1944                    2        Allegany                  1
## 1945                   14            Erie                  1
## 1946                 7094           Bronx                  5
## 1947                   29          Nassau                  7
## 1948                   29          Nassau                  7
## 1949                   14            Erie                  1
## 1950                 7093        New York                  5
## 1951                   56          Warren                  4
## 1952                    4     Cattaraugus                  1
## 1953                   14            Erie                  1
## 1954                   59     Westchester                  6
## 1955                   16        Franklin                  4
## 1956                 7093        New York                  5
## 1957                   14            Erie                  1
## 1958                   29          Nassau                  7
## 1959                    7         Chemung                  2
## 1960                   33        Onondaga                  3
## 1961                 7093        New York                  5
## 1962                   14            Erie                  1
## 1963                   51         Suffolk                  7
## 1964                    1          Albany                  4
## 1965                   29          Nassau                  7
## 1966                   14            Erie                  1
## 1967                 7093        New York                  5
## 1968                   32          Oneida                  3
## 1969                    3          Broome                  3
## 1970                   59     Westchester                  6
## 1971                 7094           Bronx                  5
## 1972                   21        Herkimer                  3
## 1973                 7095           Kings                  5
## 1974                   29          Nassau                  7
## 1975                 7095           Kings                  5
## 1976                    1          Albany                  4
## 1977                    1          Albany                  4
## 1978                 7095           Kings                  5
## 1979                    1          Albany                  4
## 1980                   46     Schenectady                  4
## 1981                   35          Orange                  6
## 1982                 7094           Bronx                  5
## 1983                   49          Seneca                  2
## 1984                   14            Erie                  1
## 1985                   54        Tompkins                  3
## 1986                    1          Albany                  4
## 1987                 7094           Bronx                  5
## 1988                   35          Orange                  6
## 1989                 7095           Kings                  5
## 1990                   51         Suffolk                  7
## 1991                   56          Warren                  4
## 1992                   32          Oneida                  3
## 1993                   59     Westchester                  6
## 1994                   59     Westchester                  6
## 1995                   59     Westchester                  6
## 1996                   22       Jefferson                  3
## 1997                   10        Columbia                  4
## 1998                 7096          Queens                  5
## 1999                   59     Westchester                  6
## 2000                   27          Monroe                  2
## 2001                 7097        Richmond                  5
## 2002                 7093        New York                  5
## 2003                   14            Erie                  1
## 2004                   55          Ulster                  6
## 2005                   19          Greene                  4
## 2006                 7095           Kings                  5
## 2007                 7093        New York                  5
## 2008                   37          Oswego                  3
## 2009                   51         Suffolk                  7
## 2010                   43        Rockland                  6
## 2011                   13        Dutchess                  6
## 2012                 7096          Queens                  5
## 2013                 7095           Kings                  5
## 2014                   13        Dutchess                  6
## 2015                    3          Broome                  3
## 2016                   25      Livingston                  2
## 2017                   52        Sullivan                  6
## 2018                   41      Rensselaer                  4
## 2019                   27          Monroe                  2
## 2020                   59     Westchester                  6
## 2021                   46     Schenectady                  4
## 2022                 7097        Richmond                  5
## 2023                   31         Niagara                  1
## 2024                   27          Monroe                  2
## 2025                   29          Nassau                  7
## 2026                   31         Niagara                  1
## 2027                 7095           Kings                  5
## 2028                 7095           Kings                  5
## 2029                    2        Allegany                  1
## 2030                 7093        New York                  5
## 2031                   56          Warren                  4
## 2032                 7094           Bronx                  5
## 2033                   27          Monroe                  2
## 2034                    4     Cattaraugus                  1
## 2035                 7095           Kings                  5
## 2036                   17          Fulton                  4
## 2037                   34         Ontario                  2
## 2038                 7095           Kings                  5
## 2039                 7096          Queens                  5
## 2040                 7094           Bronx                  5
## 2041                 7097        Richmond                  5
## 2042                   26         Madison                  3
## 2043                   51         Suffolk                  7
## 2044                 7094           Bronx                  5
## 2045                 7096          Queens                  5
## 2046                 7093        New York                  5
## 2047                 7093        New York                  5
## 2048                 7095           Kings                  5
## 2049                   55          Ulster                  6
## 2050                   27          Monroe                  2
## 2051                   10        Columbia                  4
## 2052                   32          Oneida                  3
## 2053                 7093        New York                  5
## 2054                   29          Nassau                  7
## 2055                   33        Onondaga                  3
## 2056                   27          Monroe                  2
## 2057                   27          Monroe                  2
## 2058                    7         Chemung                  2
## 2059                 7095           Kings                  5
## 2060                   33        Onondaga                  3
## 2061                   24           Lewis                  3
## 2062                   14            Erie                  1
## 2063                 7094           Bronx                  5
## 2064                 7093        New York                  5
## 2065                   26         Madison                  3
## 2066                   31         Niagara                  1
## 2067                 7095           Kings                  5
## 2068                 7093        New York                  5
## 2069                 7094           Bronx                  5
## 2070                 7093        New York                  5
## 2071                 7097        Richmond                  5
## 2072                 7096          Queens                  5
## 2073                   59     Westchester                  6
## 2074                 7095           Kings                  5
## 2075                   59     Westchester                  6
## 2076                   29          Nassau                  7
## 2077                 7096          Queens                  5
## 2078                   27          Monroe                  2
## 2079                   58           Wayne                  2
## 2080                 7093        New York                  5
## 2081                   16        Franklin                  4
## 2082                 7093        New York                  5
## 2083                    6      Chautauqua                  1
## 2084                   56          Warren                  4
## 2085                   14            Erie                  1
## 2086                    4     Cattaraugus                  1
## 2087                    3          Broome                  3
## 2088                   44  Saint Lawrence                  3
## 2089                 7095           Kings                  5
## 2090                   29          Nassau                  7
## 2091                   56          Warren                  4
## 2092                 7094           Bronx                  5
## 2093                    1          Albany                  4
## 2094                 7094           Bronx                  5
## 2095                 7093        New York                  5
## 2096                   58           Wayne                  2
## 2097                   27          Monroe                  2
## 2098                   29          Nassau                  7
## 2099                   27          Monroe                  2
## 2100                   47       Schoharie                  4
## 2101                   13        Dutchess                  6
## 2102                 7096          Queens                  5
## 2103                   56          Warren                  4
## 2104                   21        Herkimer                  3
## 2105                   27          Monroe                  2
## 2106                   29          Nassau                  7
## 2107                 7095           Kings                  5
## 2108                    3          Broome                  3
## 2109                   44  Saint Lawrence                  3
## 2110                 7094           Bronx                  5
## 2111                   43        Rockland                  6
## 2112                 7093        New York                  5
## 2113                 7094           Bronx                  5
## 2114                   11        Cortland                  3
## 2115                   33        Onondaga                  3
## 2116                 7094           Bronx                  5
## 2117                    8        Chenango                  3
## 2118                   38          Otsego                  4
## 2119                   33        Onondaga                  3
## 2120                   59     Westchester                  6
## 2121                 7096          Queens                  5
## 2122                    5          Cayuga                  3
## 2123                    1          Albany                  4
## 2124                 7093        New York                  5
## 2125                 7095           Kings                  5
## 2126                   27          Monroe                  2
## 2127                   51         Suffolk                  7
## 2128                   46     Schenectady                  4
## 2129                 7095           Kings                  5
## 2130                   59     Westchester                  6
## 2131                    9         Clinton                  4
## 2132                 7095           Kings                  5
## 2133                   36         Orleans                  1
## 2134                    6      Chautauqua                  1
## 2135                   55          Ulster                  6
## 2136                   13        Dutchess                  6
## 2137                   29          Nassau                  7
## 2138                 7095           Kings                  5
## 2139                   31         Niagara                  1
## 2140                   22       Jefferson                  3
## 2141                 7093        New York                  5
## 2142                    1          Albany                  4
## 2143                 7095           Kings                  5
## 2144                   38          Otsego                  4
## 2145                 7093        New York                  5
## 2146                   51         Suffolk                  7
## 2147                   31         Niagara                  1
## 2148                   49          Seneca                  2
## 2149                   50         Steuben                  2
## 2150                   60         Wyoming                  1
## 2151                    3          Broome                  3
## 2152                   35          Orange                  6
## 2153                 7095           Kings                  5
## 2154                   14            Erie                  1
## 2155                    4     Cattaraugus                  1
## 2156                   17          Fulton                  4
## 2157                   13        Dutchess                  6
## 2158                 7095           Kings                  5
## 2159                    3          Broome                  3
## 2160                   32          Oneida                  3
## 2161                   51         Suffolk                  7
## 2162                   59     Westchester                  6
## 2163                   31         Niagara                  1
## 2164                   39          Putnam                  6
## 2165                 7095           Kings                  5
## 2166                 7095           Kings                  5
## 2167                   51         Suffolk                  7
## 2168                   53           Tioga                  3
## 2169                   17          Fulton                  4
## 2170                   51         Suffolk                  7
## 2171                    1          Albany                  4
## 2172                 7093        New York                  5
## 2173                 7094           Bronx                  5
## 2174                    5          Cayuga                  3
## 2175                 7095           Kings                  5
## 2176                   17          Fulton                  4
## 2177                   12        Delaware                  4
## 2178                   51         Suffolk                  5
## 2179                 7094           Bronx                  5
## 2180                   27          Monroe                  2
## 2181                   50         Steuben                  2
## 2182                 7095           Kings                  5
## 2183                   29          Nassau                  7
## 2184                 7095           Kings                  5
## 2185                   32          Oneida                  3
## 2186                 7094           Bronx                  5
## 2187                 7096          Queens                  5
## 2188                   41      Rensselaer                  4
## 2189                    3          Broome                  3
## 2190                   27          Monroe                  2
## 2191                   27          Monroe                  2
## 2192                   35          Orange                  6
## 2193                 7095           Kings                  5
## 2194                   27          Monroe                  2
## 2195                   27          Monroe                  2
## 2196                   35          Orange                  6
## 2197                   13        Dutchess                  6
## 2198                   22       Jefferson                  3
## 2199                 7096          Queens                  5
## 2200                   21        Herkimer                  3
## 2201                 7093        New York                  5
## 2202                 7095           Kings                  5
## 2203                   25      Livingston                  2
## 2204                   20        Hamilton                  4
## 2205                 7095           Kings                  5
## 2206                   55          Ulster                  6
## 2207                 7093        New York                  5
## 2208                 7096          Queens                  5
## 2209                 7093        New York                  5
## 2210                   51         Suffolk                  7
## 2211                   26         Madison                  3
## 2212                   27          Monroe                  2
## 2213                   55          Ulster                  6
## 2214                    9         Clinton                  4
## 2215                   29          Nassau                  7
## 2216                    6      Chautauqua                  1
## 2217                   61           Yates                  2
## 2218                   32          Oneida                  3
## 2219                    1          Albany                  4
## 2220                   27          Monroe                  2
## 2221                    2        Allegany                  1
## 2222                 7095           Kings                  5
## 2223                   14            Erie                  1
## 2224                   55          Ulster                  6
## 2225                   10        Columbia                  4
## 2226                 7095           Kings                  5
## 2227                   16        Franklin                  4
## 2228                 7094           Bronx                  5
## 2229                 7094           Bronx                  5
## 2230                 7093        New York                  5
## 2231                 7095           Kings                  5
## 2232                   59     Westchester                  6
## 2233                   13        Dutchess                  6
## 2234                   59     Westchester                  6
## 2235                 7093        New York                  5
## 2236                   29          Nassau                  7
## 2237                 7093        New York                  5
## 2238                    3          Broome                  3
## 2239                    1          Albany                  4
## 2240                 7096          Queens                  5
## 2241                   22       Jefferson                  3
## 2242                   35          Orange                  6
## 2243                 7094           Bronx                  5
## 2244                   57      Washington                  4
## 2245                   11        Cortland                  3
## 2246                   59     Westchester                  6
## 2247                   41      Rensselaer                  4
## 2248                   14            Erie                  1
## 2249                   18         Genesee                  1
## 2250                 7096          Queens                  5
## 2251                   13        Dutchess                  6
## 2252                 7094           Bronx                  5
## 2253                   51         Suffolk                  7
## 2254                   35          Orange                  6
## 2255                 7095           Kings                  5
## 2256                   59     Westchester                  6
## 2257                 7095           Kings                  5
## 2258                 7097        Richmond                  5
## 2259                 7095           Kings                  5
## 2260                 7093        New York                  5
## 2261                 7095           Kings                  5
## 2262                   38          Otsego                  4
## 2263                   27          Monroe                  2
## 2264                   14            Erie                  1
## 2265                 7093        New York                  5
## 2266                   14            Erie                  1
## 2267                   29          Nassau                  7
## 2268                   27          Monroe                  2
## 2269                 7095           Kings                  5
## 2270                 7094           Bronx                  5
## 2271                   35          Orange                  6
## 2272                 7094           Bronx                  5
## 2273                   29          Nassau                  7
## 2274                   55          Ulster                  6
## 2275                   13        Dutchess                  6
## 2276                    3          Broome                  3
## 2277                 7093        New York                  5
## 2278                 7096          Queens                  5
## 2279                 7094           Bronx                  5
## 2280                 7094           Bronx                  5
## 2281                 7095           Kings                  5
## 2282                   32          Oneida                  3
## 2283                   38          Otsego                  4
## 2284                 7094           Bronx                  5
## 2285                   32          Oneida                  3
## 2286                   43        Rockland                  6
## 2287                    1          Albany                  4
## 2288                   59     Westchester                  6
## 2289                 7094           Bronx                  5
## 2290                 7093        New York                  5
## 2291                    9         Clinton                  4
## 2292                   51         Suffolk                  7
## 2293                 7093        New York                  5
## 2294                 7095           Kings                  5
## 2295                    4     Cattaraugus                  1
## 2296                 7096          Queens                  5
## 2297                   14            Erie                  1
## 2298                 7095           Kings                  5
## 2299                   31         Niagara                  1
## 2300                 7094           Bronx                  5
## 2301                   51         Suffolk                  7
## 2302                   35          Orange                  6
## 2303                 7093        New York                  5
## 2304                 7095           Kings                  5
## 2305                   29          Nassau                  7
## 2306                   51         Suffolk                  7
## 2307                 7093        New York                  5
## 2308                 7094           Bronx                  5
## 2309                   14            Erie                  1
## 2310                   14            Erie                  1
## 2311                   14            Erie                  1
## 2312                   14            Erie                  1
## 2313                   14            Erie                  1
## 2314                 7093        New York                  5
## 2315                   29          Nassau                  7
## 2316                   27          Monroe                  2
## 2317                   32          Oneida                  3
## 2318                   45        Saratoga                  4
## 2319                   56          Warren                  4
## 2320                   34         Ontario                  2
## 2321                   46     Schenectady                  4
## 2322                    9         Clinton                  4
## 2323                   59     Westchester                  6
## 2324                    1          Albany                  4
## 2325                 7095           Kings                  5
## 2326                    1          Albany                  4
## 2327                 7096          Queens                  5
## 2328                   27          Monroe                  2
## 2329                   38          Otsego                  4
## 2330                 7093        New York                  5
## 2331                   55          Ulster                  6
## 2332                 7094           Bronx                  5
## 2333                   29          Nassau                  7
## 2334                 7094           Bronx                  5
## 2335                   32          Oneida                  3
## 2336                    1          Albany                  4
## 2337                   51         Suffolk                  7
## 2338                 7096          Queens                  5
## 2339                   15           Essex                  4
## 2340                    4     Cattaraugus                  1
## 2341                 7094           Bronx                  5
## 2342                 7096          Queens                  5
## 2343                   44  Saint Lawrence                  3
## 2344                   13        Dutchess                  6
## 2345                   38          Otsego                  4
## 2346                   27          Monroe                  2
## 2347                   35          Orange                  6
## 2348                   12        Delaware                  4
## 2349                   61           Yates                  2
## 2350                   31         Niagara                  1
## 2351                 7097        Richmond                  5
## 2352                 7094           Bronx                  5
## 2353                   29          Nassau                  7
## 2354                   37          Oswego                  3
## 2355                   45        Saratoga                  4
## 2356                   59     Westchester                  6
## 2357                   13        Dutchess                  6
## 2358                   35          Orange                  6
## 2359                   27          Monroe                  2
## 2360                 7095           Kings                  5
## 2361                   14            Erie                  1
## 2362                   59     Westchester                  6
## 2363                   44  Saint Lawrence                  3
## 2364                   50         Steuben                  2
## 2365                   27          Monroe                  2
## 2366                 7095           Kings                  5
## 2367                   29          Nassau                  7
## 2368                 7095           Kings                  5
## 2369                   24           Lewis                  3
## 2370                 7097        Richmond                  5
## 2371                   52        Sullivan                  6
## 2372                   28      Montgomery                  4
## 2373                   39          Putnam                  6
## 2374                 7097        Richmond                  5
## 2375                 7095           Kings                  5
## 2376                   34         Ontario                  2
## 2377                   27          Monroe                  2
## 2378                   27          Monroe                  2
## 2379                   51         Suffolk                  7
## 2380                   33        Onondaga                  3
## 2381                   50         Steuben                  2
## 2382                    3          Broome                  3
## 2383                   37          Oswego                  3
## 2384                 7095           Kings                  5
## 2385                 7093        New York                  5
## 2386                 7095           Kings                  5
## 2387                   51         Suffolk                  7
## 2388                   27          Monroe                  2
## 2389                   38          Otsego                  4
## 2390                   33        Onondaga                  3
## 2391                 7095           Kings                  5
## 2392                 7094           Bronx                  5
## 2393                 7097        Richmond                  5
## 2394                 7093        New York                  5
## 2395                 7093        New York                  5
## 2396                   21        Herkimer                  3
## 2397                   32          Oneida                  3
## 2398                   31         Niagara                  1
## 2399                   33        Onondaga                  3
## 2400                 7096          Queens                  5
## 2401                 7096          Queens                  5
## 2402                   35          Orange                  6
## 2403                 7094           Bronx                  5
## 2404                   14            Erie                  1
## 2405                   58           Wayne                  2
## 2406                   22       Jefferson                  3
## 2407                   59     Westchester                  6
## 2408                   55          Ulster                  6
## 2409                 7094           Bronx                  5
## 2410                 7093        New York                  5
## 2411                   27          Monroe                  2
## 2412                 7096          Queens                  5
## 2413                   13        Dutchess                  6
## 2414                   59     Westchester                  6
## 2415                   27          Monroe                  2
## 2416                    8        Chenango                  3
## 2417                   32          Oneida                  3
## 2418                 7094           Bronx                  5
## 2419                 7094           Bronx                  5
## 2420                   32          Oneida                  3
## 2421                 7095           Kings                  5
## 2422                   27          Monroe                  2
## 2423                    1          Albany                  4
## 2424                   27          Monroe                  2
## 2425                    8        Chenango                  3
## 2426                 7096          Queens                  5
## 2427                   59     Westchester                  6
## 2428                   14            Erie                  1
## 2429                 7096          Queens                  5
## 2430                   46     Schenectady                  4
## 2431                 7094           Bronx                  5
## 2432                    1          Albany                  4
## 2433                   27          Monroe                  2
## 2434                   22       Jefferson                  3
## 2435                 7095           Kings                  5
## 2436                   51         Suffolk                  7
## 2437                 7094           Bronx                  5
## 2438                   51         Suffolk                  7
## 2439                   11        Cortland                  3
## 2440                   27          Monroe                  2
## 2441                 7095           Kings                  5
## 2442                   51         Suffolk                  7
## 2443                 7096          Queens                  5
## 2444                   49          Seneca                  2
## 2445                 7095           Kings                  5
## 2446                   53           Tioga                  3
## 2447                    7         Chemung                  2
## 2448                   37          Oswego                  3
## 2449                   27          Monroe                  2
## 2450                   51         Suffolk                  7
## 2451                   28      Montgomery                  4
## 2452                 7096          Queens                  5
## 2453                   51         Suffolk                  7
## 2454                   54        Tompkins                  3
## 2455                   41      Rensselaer                  4
## 2456                 7095           Kings                  5
## 2457                   14            Erie                  1
## 2458                    1          Albany                  4
## 2459                   51         Suffolk                  7
## 2460                   32          Oneida                  3
## 2461                   32          Oneida                  3
## 2462                   59     Westchester                  6
## 2463                    1          Albany                  4
## 2464                 7097        Richmond                  5
## 2465                   55          Ulster                  6
## 2466                 7094           Bronx                  5
## 2467                 7095           Kings                  5
## 2468                   27          Monroe                  2
## 2469                   51         Suffolk                  7
## 2470                   59     Westchester                  6
## 2471                   51         Suffolk                  7
## 2472                 7093        New York                  5
## 2473                 7095           Kings                  5
## 2474                    7         Chemung                  2
## 2475                   45        Saratoga                  4
## 2476                   59     Westchester                  6
## 2477                   44  Saint Lawrence                  3
## 2478                 7093        New York                  5
## 2479                 7093        New York                  5
## 2480                   51         Suffolk                  7
## 2481                   33        Onondaga                  3
## 2482                 7093        New York                  5
## 2483                    3          Broome                  3
## 2484                   55          Ulster                  6
## 2485                 7094           Bronx                  5
## 2486                   15           Essex                  4
## 2487                 7095           Kings                  5
## 2488                   26         Madison                  3
## 2489                   38          Otsego                  4
## 2490                    8        Chenango                  3
## 2491                   27          Monroe                  2
## 2492                 7095           Kings                  5
## 2493                   13        Dutchess                  6
## 2494                   32          Oneida                  3
## 2495                   59     Westchester                  6
## 2496                 7097        Richmond                  5
## 2497                   33        Onondaga                  3
## 2498                   49          Seneca                  2
## 2499                   61           Yates                  2
## 2500                   33        Onondaga                  3
## 2501                   32          Oneida                  3
## 2502                    6      Chautauqua                  1
## 2503                   51         Suffolk                  7
## 2504                   17          Fulton                  4
## 2505                   27          Monroe                  2
## 2506                    7         Chemung                  2
## 2507                 7094           Bronx                  5
## 2508                   54        Tompkins                  3
## 2509                   35          Orange                  6
## 2510                 7095           Kings                  5
## 2511                   53           Tioga                  3
## 2512                 7094           Bronx                  5
## 2513                   51         Suffolk                  7
## 2514                   58           Wayne                  2
## 2515                   33        Onondaga                  3
## 2516                 7093        New York                  5
## 2517                 7096          Queens                  5
## 2518                    1          Albany                  4
## 2519                   27          Monroe                  2
## 2520                   51         Suffolk                  7
## 2521                 7093        New York                  5
## 2522                   51         Suffolk                  7
## 2523                 7095           Kings                  5
## 2524                   13        Dutchess                  6
## 2525                   39          Putnam                  6
## 2526                    8        Chenango                  3
## 2527                   29          Nassau                  7
## 2528                 7095           Kings                  5
## 2529                   11        Cortland                  3
## 2530                   44  Saint Lawrence                  3
## 2531                   59     Westchester                  6
## 2532                 7093        New York                  5
## 2533                   27          Monroe                  2
## 2534                   13        Dutchess                  6
## 2535                   14            Erie                  1
## 2536                   44  Saint Lawrence                  3
## 2537                   14            Erie                  1
## 2538                   39          Putnam                  6
## 2539                 7093        New York                  5
## 2540                 7093        New York                  5
## 2541                 7096          Queens                  5
## 2542                 7096          Queens                  5
## 2543                   15           Essex                  4
## 2544                 7095           Kings                  5
## 2545                    8        Chenango                  3
## 2546                   27          Monroe                  2
## 2547                 7094           Bronx                  5
## 2548                   27          Monroe                  2
## 2549                   34         Ontario                  2
## 2550                 7095           Kings                  5
## 2551                    1          Albany                  4
## 2552                   28      Montgomery                  4
## 2553                   59     Westchester                  6
## 2554                   29          Nassau                  7
## 2555                   33        Onondaga                  3
## 2556                   22       Jefferson                  3
## 2557                 7096          Queens                  5
## 2558                   27          Monroe                  2
## 2559                 7093        New York                  5
## 2560                    6      Chautauqua                  1
## 2561                 7093        New York                  5
## 2562                   29          Nassau                  7
## 2563                 7093        New York                  5
## 2564                   32          Oneida                  3
## 2565                   46     Schenectady                  4
## 2566                 7095           Kings                  5
## 2567                   41      Rensselaer                  4
## 2568                 7095           Kings                  5
## 2569                 7096          Queens                  5
## 2570                   55          Ulster                  6
## 2571                 7095           Kings                  5
## 2572                   14            Erie                  1
## 2573                   26         Madison                  3
## 2574                   59     Westchester                  6
## 2575                   27          Monroe                  2
## 2576                   59     Westchester                  6
## 2577                    3          Broome                  3
## 2578                   38          Otsego                  4
## 2579                 7095           Kings                  5
## 2580                   31         Niagara                  1
## 2581                 7096          Queens                  5
## 2582                 7095           Kings                  5
## 2583                   14            Erie                  1
## 2584                   27          Monroe                  2
## 2585                 7093        New York                  5
## 2586                   22       Jefferson                  3
## 2587                   27          Monroe                  2
## 2588                   59     Westchester                  6
## 2589                   41      Rensselaer                  4
## 2590                 7094           Bronx                  5
## 2591                 7094           Bronx                  5
## 2592                   11        Cortland                  3
## 2593                    4     Cattaraugus                  1
## 2594                 7094           Bronx                  5
## 2595                   32          Oneida                  3
## 2596                   26         Madison                  3
## 2597                   59     Westchester                  6
## 2598                 7097        Richmond                  5
## 2599                   29          Nassau                  7
## 2600                   59     Westchester                  6
## 2601                 7094           Bronx                  5
## 2602                   13        Dutchess                  6
## 2603                   59     Westchester                  6
## 2604                 7094           Bronx                  5
## 2605                   46     Schenectady                  4
## 2606                   27          Monroe                  2
## 2607                    1          Albany                  4
## 2608                    6      Chautauqua                  1
## 2609                   22       Jefferson                  3
## 2610                   13        Dutchess                  6
## 2611                   59     Westchester                  6
## 2612                 7095           Kings                  5
## 2613                 7094           Bronx                  5
## 2614                   51         Suffolk                  7
## 2615                   29          Nassau                  7
## 2616                   21        Herkimer                  3
## 2617                 7096          Queens                  5
## 2618                   51         Suffolk                  7
## 2619                    4     Cattaraugus                  1
## 2620                   51         Suffolk                  7
## 2621                   17          Fulton                  4
## 2622                 7093        New York                  5
## 2623                   27          Monroe                  2
## 2624                   45        Saratoga                  4
## 2625                 7095           Kings                  5
## 2626                   44  Saint Lawrence                  3
## 2627                   27          Monroe                  2
## 2628                    9         Clinton                  4
## 2629                 7094           Bronx                  5
## 2630                 7095           Kings                  5
## 2631                   14            Erie                  1
## 2632                   28      Montgomery                  4
## 2633                 7096          Queens                  5
## 2634                   17          Fulton                  4
## 2635                    3          Broome                  3
## 2636                 7094           Bronx                  5
## 2637                   27          Monroe                  2
## 2638                    3          Broome                  3
## 2639                   49          Seneca                  2
## 2640                   43        Rockland                  6
## 2641                   51         Suffolk                  7
## 2642                 7094           Bronx                  5
## 2643                   54        Tompkins                  3
## 2644                   27          Monroe                  2
## 2645                   58           Wayne                  2
## 2646                   36         Orleans                  1
## 2647                   22       Jefferson                  3
## 2648                 7095           Kings                  5
## 2649                   51         Suffolk                  7
## 2650                   35          Orange                  6
## 2651                 7095           Kings                  5
## 2652                   29          Nassau                  7
## 2653                   29          Nassau                  7
## 2654                   26         Madison                  3
## 2655                   51         Suffolk                  7
## 2656                 7095           Kings                  5
## 2657                    5          Cayuga                  3
## 2658                   18         Genesee                  1
## 2659                    8        Chenango                  3
## 2660                   35          Orange                  6
## 2661                   51         Suffolk                  7
## 2662                 7094           Bronx                  5
## 2663                   46     Schenectady                  4
## 2664                   27          Monroe                  2
## 2665                   29          Nassau                  7
## 2666                   17          Fulton                  4
## 2667                   29          Nassau                  7
## 2668                    3          Broome                  3
## 2669                   13        Dutchess                  6
## 2670                 7096          Queens                  5
## 2671                 7094           Bronx                  5
## 2672                   32          Oneida                  3
## 2673                   51         Suffolk                  7
## 2674                   60         Wyoming                  1
## 2675                   29          Nassau                  7
## 2676                   43        Rockland                  6
## 2677                   36         Orleans                  1
## 2678                    3          Broome                  3
## 2679                   58           Wayne                  2
## 2680                    4     Cattaraugus                  1
## 2681                   17          Fulton                  4
## 2682                   38          Otsego                  4
## 2683                   59     Westchester                  6
## 2684                   16        Franklin                  4
## 2685                 7095           Kings                  5
## 2686                   55          Ulster                  6
## 2687                 7096          Queens                  5
## 2688                 7095           Kings                  5
## 2689                   14            Erie                  1
## 2690                 7093        New York                  5
## 2691                 7093        New York                  5
## 2692                 7093        New York                  5
## 2693                   27          Monroe                  2
## 2694                 7096          Queens                  5
## 2695                 7095           Kings                  5
## 2696                 7094           Bronx                  5
## 2697                   38          Otsego                  4
## 2698                 7095           Kings                  5
## 2699                   33        Onondaga                  3
## 2700                   51         Suffolk                  7
## 2701                   57      Washington                  4
## 2702                 7095           Kings                  5
## 2703                   24           Lewis                  3
## 2704                   59     Westchester                  6
## 2705                 7093        New York                  5
## 2706                   29          Nassau                  7
## 2707                    1          Albany                  4
## 2708                   35          Orange                  6
## 2709                    1          Albany                  4
## 2710                   29          Nassau                  7
## 2711                   51         Suffolk                  7
## 2712                 7093        New York                  5
## 2713                 7093        New York                  5
## 2714                   13        Dutchess                  6
## 2715                   56          Warren                  4
## 2716                   21        Herkimer                  3
## 2717                   59     Westchester                  6
## 2718                 7094           Bronx                  5
## 2719                 7093        New York                  5
## 2720                   27          Monroe                  2
## 2721                   51         Suffolk                  7
## 2722                   41      Rensselaer                  4
## 2723                   13        Dutchess                  6
## 2724                 7096          Queens                  5
## 2725                   29          Nassau                  7
## 2726                    6      Chautauqua                  1
## 2727                 7093        New York                  5
## 2728                   44  Saint Lawrence                  3
## 2729                 7094           Bronx                  5
## 2730                   13        Dutchess                  6
## 2731                   29          Nassau                  7
## 2732                   29          Nassau                  7
## 2733                   61           Yates                  2
## 2734                 7093        New York                  5
## 2735                   34         Ontario                  2
## 2736                 7094           Bronx                  5
## 2737                   29          Nassau                  7
## 2738                   33        Onondaga                  3
## 2739                   46     Schenectady                  4
## 2740                   45        Saratoga                  4
## 2741                   33        Onondaga                  3
## 2742                   14            Erie                  1
## 2743                   38          Otsego                  4
## 2744                 7097        Richmond                  5
## 2745                 7093        New York                  5
## 2746                   46     Schenectady                  4
## 2747                 7093        New York                  5
## 2748                 7095           Kings                  5
## 2749                 7095           Kings                  5
## 2750                 7095           Kings                  5
## 2751                   24           Lewis                  3
## 2752                   59     Westchester                  6
## 2753                   59     Westchester                  6
## 2754                 7093        New York                  5
## 2755                   58           Wayne                  2
## 2756                   10        Columbia                  4
## 2757                   29          Nassau                  7
## 2758                   54        Tompkins                  3
## 2759                 7094           Bronx                  5
## 2760                   32          Oneida                  3
## 2761                 7096          Queens                  5
## 2762                 7096          Queens                  5
## 2763                   14            Erie                  1
## 2764                 7094           Bronx                  5
## 2765                   25      Livingston                  2
## 2766                    3          Broome                  3
## 2767                   14            Erie                  1
## 2768                   14            Erie                  1
## 2769                   32          Oneida                  3
## 2770                   59     Westchester                  6
## 2771                   29          Nassau                  7
## 2772                 7093        New York                  5
## 2773                 7094           Bronx                  5
## 2774                   51         Suffolk                  7
## 2775                   34         Ontario                  2
## 2776                 7093        New York                  5
## 2777                 7096          Queens                  5
##                                        Regional.Office
## 1                     Central New York Regional Office
## 2                     Central New York Regional Office
## 3                     Central New York Regional Office
## 4                    Western Regional Office - Buffalo
## 5                    Western Regional Office - Buffalo
## 6                    Western Regional Office - Buffalo
## 7      Metropolitan Area Regional Office - Long Island
## 8                    Western Regional Office - Buffalo
## 9      Metropolitan Area Regional Office - Long Island
## 10   Metropolitan Area Regional Office - New York City
## 11     Metropolitan Area Regional Office - Long Island
## 12                    Central New York Regional Office
## 13   Metropolitan Area Regional Office - New York City
## 14                    Central New York Regional Office
## 15                   Western Regional Office - Buffalo
## 16     Metropolitan Area Regional Office - Long Island
## 17                   Western Regional Office - Buffalo
## 18   Metropolitan Area Regional Office - New York City
## 19    Metropolitan Area Regional Office - New Rochelle
## 20                    Capital District Regional Office
## 21                    Central New York Regional Office
## 22                   Western Regional Office - Buffalo
## 23                 Western Regional Office - Rochester
## 24                    Capital District Regional Office
## 25   Metropolitan Area Regional Office - New York City
## 26    Metropolitan Area Regional Office - New Rochelle
## 27   Metropolitan Area Regional Office - New York City
## 28     Metropolitan Area Regional Office - Long Island
## 29     Metropolitan Area Regional Office - Long Island
## 30                    Capital District Regional Office
## 31                    Capital District Regional Office
## 32   Metropolitan Area Regional Office - New York City
## 33   Metropolitan Area Regional Office - New York City
## 34                 Western Regional Office - Rochester
## 35   Metropolitan Area Regional Office - New York City
## 36                    Central New York Regional Office
## 37                    Capital District Regional Office
## 38    Metropolitan Area Regional Office - New Rochelle
## 39    Metropolitan Area Regional Office - New Rochelle
## 40   Metropolitan Area Regional Office - New York City
## 41   Metropolitan Area Regional Office - New York City
## 42                   Western Regional Office - Buffalo
## 43   Metropolitan Area Regional Office - New York City
## 44   Metropolitan Area Regional Office - New York City
## 45    Metropolitan Area Regional Office - New Rochelle
## 46                    Central New York Regional Office
## 47     Metropolitan Area Regional Office - Long Island
## 48                    Capital District Regional Office
## 49   Metropolitan Area Regional Office - New York City
## 50    Metropolitan Area Regional Office - New Rochelle
## 51   Metropolitan Area Regional Office - New York City
## 52   Metropolitan Area Regional Office - New York City
## 53    Metropolitan Area Regional Office - New Rochelle
## 54   Metropolitan Area Regional Office - New York City
## 55   Metropolitan Area Regional Office - New York City
## 56                   Western Regional Office - Buffalo
## 57                 Western Regional Office - Rochester
## 58   Metropolitan Area Regional Office - New York City
## 59   Metropolitan Area Regional Office - New York City
## 60                   Western Regional Office - Buffalo
## 61                 Western Regional Office - Rochester
## 62                    Central New York Regional Office
## 63    Metropolitan Area Regional Office - New Rochelle
## 64   Metropolitan Area Regional Office - New York City
## 65     Metropolitan Area Regional Office - Long Island
## 66                   Western Regional Office - Buffalo
## 67                 Western Regional Office - Rochester
## 68     Metropolitan Area Regional Office - Long Island
## 69   Metropolitan Area Regional Office - New York City
## 70                    Capital District Regional Office
## 71    Metropolitan Area Regional Office - New Rochelle
## 72    Metropolitan Area Regional Office - New Rochelle
## 73                    Central New York Regional Office
## 74                   Western Regional Office - Buffalo
## 75    Metropolitan Area Regional Office - New Rochelle
## 76   Metropolitan Area Regional Office - New York City
## 77                   Western Regional Office - Buffalo
## 78                    Capital District Regional Office
## 79     Metropolitan Area Regional Office - Long Island
## 80                 Western Regional Office - Rochester
## 81   Metropolitan Area Regional Office - New York City
## 82   Metropolitan Area Regional Office - New York City
## 83   Metropolitan Area Regional Office - New York City
## 84   Metropolitan Area Regional Office - New York City
## 85                 Western Regional Office - Rochester
## 86   Metropolitan Area Regional Office - New York City
## 87    Metropolitan Area Regional Office - New Rochelle
## 88     Metropolitan Area Regional Office - Long Island
## 89   Metropolitan Area Regional Office - New York City
## 90   Metropolitan Area Regional Office - New York City
## 91     Metropolitan Area Regional Office - Long Island
## 92                    Central New York Regional Office
## 93                    Central New York Regional Office
## 94    Metropolitan Area Regional Office - New Rochelle
## 95   Metropolitan Area Regional Office - New York City
## 96                    Capital District Regional Office
## 97                    Central New York Regional Office
## 98   Metropolitan Area Regional Office - New York City
## 99                    Central New York Regional Office
## 100                Western Regional Office - Rochester
## 101                   Central New York Regional Office
## 102  Metropolitan Area Regional Office - New York City
## 103  Metropolitan Area Regional Office - New York City
## 104   Metropolitan Area Regional Office - New Rochelle
## 105   Metropolitan Area Regional Office - New Rochelle
## 106                   Capital District Regional Office
## 107    Metropolitan Area Regional Office - Long Island
## 108                   Central New York Regional Office
## 109  Metropolitan Area Regional Office - New York City
## 110   Metropolitan Area Regional Office - New Rochelle
## 111                   Central New York Regional Office
## 112  Metropolitan Area Regional Office - New York City
## 113  Metropolitan Area Regional Office - New York City
## 114    Metropolitan Area Regional Office - Long Island
## 115   Metropolitan Area Regional Office - New Rochelle
## 116   Metropolitan Area Regional Office - New Rochelle
## 117                Western Regional Office - Rochester
## 118   Metropolitan Area Regional Office - New Rochelle
## 119  Metropolitan Area Regional Office - New York City
## 120    Metropolitan Area Regional Office - Long Island
## 121  Metropolitan Area Regional Office - New York City
## 122                   Central New York Regional Office
## 123                   Capital District Regional Office
## 124  Metropolitan Area Regional Office - New York City
## 125                Western Regional Office - Rochester
## 126  Metropolitan Area Regional Office - New York City
## 127                Western Regional Office - Rochester
## 128                   Capital District Regional Office
## 129                Western Regional Office - Rochester
## 130  Metropolitan Area Regional Office - New York City
## 131  Metropolitan Area Regional Office - New York City
## 132  Metropolitan Area Regional Office - New York City
## 133                   Capital District Regional Office
## 134   Metropolitan Area Regional Office - New Rochelle
## 135                   Capital District Regional Office
## 136                   Central New York Regional Office
## 137  Metropolitan Area Regional Office - New York City
## 138    Metropolitan Area Regional Office - Long Island
## 139                Western Regional Office - Rochester
## 140  Metropolitan Area Regional Office - New York City
## 141                Western Regional Office - Rochester
## 142                   Central New York Regional Office
## 143                   Capital District Regional Office
## 144                   Central New York Regional Office
## 145                   Capital District Regional Office
## 146                Western Regional Office - Rochester
## 147                   Capital District Regional Office
## 148                Western Regional Office - Rochester
## 149                Western Regional Office - Rochester
## 150                   Central New York Regional Office
## 151                   Central New York Regional Office
## 152    Metropolitan Area Regional Office - Long Island
## 153                   Central New York Regional Office
## 154  Metropolitan Area Regional Office - New York City
## 155  Metropolitan Area Regional Office - New York City
## 156   Metropolitan Area Regional Office - New Rochelle
## 157                  Western Regional Office - Buffalo
## 158  Metropolitan Area Regional Office - New York City
## 159  Metropolitan Area Regional Office - New York City
## 160  Metropolitan Area Regional Office - New York City
## 161                   Central New York Regional Office
## 162                Western Regional Office - Rochester
## 163                   Capital District Regional Office
## 164  Metropolitan Area Regional Office - New York City
## 165                  Western Regional Office - Buffalo
## 166                   Capital District Regional Office
## 167                   Central New York Regional Office
## 168                   Central New York Regional Office
## 169  Metropolitan Area Regional Office - New York City
## 170                   Capital District Regional Office
## 171  Metropolitan Area Regional Office - New York City
## 172   Metropolitan Area Regional Office - New Rochelle
## 173  Metropolitan Area Regional Office - New York City
## 174  Metropolitan Area Regional Office - New York City
## 175                   Central New York Regional Office
## 176  Metropolitan Area Regional Office - New York City
## 177  Metropolitan Area Regional Office - New York City
## 178                   Capital District Regional Office
## 179  Metropolitan Area Regional Office - New York City
## 180    Metropolitan Area Regional Office - Long Island
## 181    Metropolitan Area Regional Office - Long Island
## 182  Metropolitan Area Regional Office - New York City
## 183   Metropolitan Area Regional Office - New Rochelle
## 184                   Central New York Regional Office
## 185                  Western Regional Office - Buffalo
## 186  Metropolitan Area Regional Office - New York City
## 187  Metropolitan Area Regional Office - New York City
## 188                Western Regional Office - Rochester
## 189                Western Regional Office - Rochester
## 190                Western Regional Office - Rochester
## 191    Metropolitan Area Regional Office - Long Island
## 192  Metropolitan Area Regional Office - New York City
## 193                  Western Regional Office - Buffalo
## 194                   Capital District Regional Office
## 195  Metropolitan Area Regional Office - New York City
## 196   Metropolitan Area Regional Office - New Rochelle
## 197                   Central New York Regional Office
## 198                   Central New York Regional Office
## 199  Metropolitan Area Regional Office - New York City
## 200                   Capital District Regional Office
## 201  Metropolitan Area Regional Office - New York City
## 202   Metropolitan Area Regional Office - New Rochelle
## 203  Metropolitan Area Regional Office - New York City
## 204                   Capital District Regional Office
## 205                  Western Regional Office - Buffalo
## 206                   Central New York Regional Office
## 207  Metropolitan Area Regional Office - New York City
## 208                Western Regional Office - Rochester
## 209  Metropolitan Area Regional Office - New York City
## 210  Metropolitan Area Regional Office - New York City
## 211  Metropolitan Area Regional Office - New York City
## 212                   Capital District Regional Office
## 213                  Western Regional Office - Buffalo
## 214  Metropolitan Area Regional Office - New York City
## 215                   Capital District Regional Office
## 216  Metropolitan Area Regional Office - New York City
## 217   Metropolitan Area Regional Office - New Rochelle
## 218                   Central New York Regional Office
## 219  Metropolitan Area Regional Office - New York City
## 220                   Capital District Regional Office
## 221  Metropolitan Area Regional Office - New York City
## 222    Metropolitan Area Regional Office - Long Island
## 223  Metropolitan Area Regional Office - New York City
## 224  Metropolitan Area Regional Office - New York City
## 225  Metropolitan Area Regional Office - New York City
## 226                  Western Regional Office - Buffalo
## 227                  Western Regional Office - Buffalo
## 228    Metropolitan Area Regional Office - Long Island
## 229    Metropolitan Area Regional Office - Long Island
## 230                Western Regional Office - Rochester
## 231  Metropolitan Area Regional Office - New York City
## 232   Metropolitan Area Regional Office - New Rochelle
## 233    Metropolitan Area Regional Office - Long Island
## 234  Metropolitan Area Regional Office - New York City
## 235    Metropolitan Area Regional Office - Long Island
## 236                  Western Regional Office - Buffalo
## 237    Metropolitan Area Regional Office - Long Island
## 238                   Capital District Regional Office
## 239                   Capital District Regional Office
## 240  Metropolitan Area Regional Office - New York City
## 241                   Capital District Regional Office
## 242    Metropolitan Area Regional Office - Long Island
## 243  Metropolitan Area Regional Office - New York City
## 244  Metropolitan Area Regional Office - New York City
## 245                   Central New York Regional Office
## 246                  Western Regional Office - Buffalo
## 247                   Capital District Regional Office
## 248                  Western Regional Office - Buffalo
## 249  Metropolitan Area Regional Office - New York City
## 250  Metropolitan Area Regional Office - New York City
## 251                   Capital District Regional Office
## 252  Metropolitan Area Regional Office - New York City
## 253  Metropolitan Area Regional Office - New York City
## 254   Metropolitan Area Regional Office - New Rochelle
## 255    Metropolitan Area Regional Office - Long Island
## 256                  Western Regional Office - Buffalo
## 257  Metropolitan Area Regional Office - New York City
## 258                   Capital District Regional Office
## 259                   Capital District Regional Office
## 260  Metropolitan Area Regional Office - New York City
## 261                   Central New York Regional Office
## 262   Metropolitan Area Regional Office - New Rochelle
## 263  Metropolitan Area Regional Office - New York City
## 264  Metropolitan Area Regional Office - New York City
## 265                   Capital District Regional Office
## 266  Metropolitan Area Regional Office - New York City
## 267  Metropolitan Area Regional Office - New York City
## 268  Metropolitan Area Regional Office - New York City
## 269  Metropolitan Area Regional Office - New York City
## 270                Western Regional Office - Rochester
## 271    Metropolitan Area Regional Office - Long Island
## 272                Western Regional Office - Rochester
## 273   Metropolitan Area Regional Office - New Rochelle
## 274                Western Regional Office - Rochester
## 275   Metropolitan Area Regional Office - New Rochelle
## 276  Metropolitan Area Regional Office - New York City
## 277                   Central New York Regional Office
## 278  Metropolitan Area Regional Office - New York City
## 279                   Central New York Regional Office
## 280                  Western Regional Office - Buffalo
## 281  Metropolitan Area Regional Office - New York City
## 282                  Western Regional Office - Buffalo
## 283  Metropolitan Area Regional Office - New York City
## 284                   Central New York Regional Office
## 285                   Central New York Regional Office
## 286                  Western Regional Office - Buffalo
## 287                   Central New York Regional Office
## 288                   Central New York Regional Office
## 289                   Capital District Regional Office
## 290  Metropolitan Area Regional Office - New York City
## 291                Western Regional Office - Rochester
## 292   Metropolitan Area Regional Office - New Rochelle
## 293                  Western Regional Office - Buffalo
## 294  Metropolitan Area Regional Office - New York City
## 295  Metropolitan Area Regional Office - New York City
## 296  Metropolitan Area Regional Office - New York City
## 297                   Central New York Regional Office
## 298                   Central New York Regional Office
## 299                  Western Regional Office - Buffalo
## 300                  Western Regional Office - Buffalo
## 301   Metropolitan Area Regional Office - New Rochelle
## 302                   Capital District Regional Office
## 303    Metropolitan Area Regional Office - Long Island
## 304                   Central New York Regional Office
## 305                   Central New York Regional Office
## 306  Metropolitan Area Regional Office - New York City
## 307  Metropolitan Area Regional Office - New York City
## 308    Metropolitan Area Regional Office - Long Island
## 309   Metropolitan Area Regional Office - New Rochelle
## 310   Metropolitan Area Regional Office - New Rochelle
## 311  Metropolitan Area Regional Office - New York City
## 312                   Capital District Regional Office
## 313                  Western Regional Office - Buffalo
## 314                  Western Regional Office - Buffalo
## 315    Metropolitan Area Regional Office - Long Island
## 316  Metropolitan Area Regional Office - New York City
## 317  Metropolitan Area Regional Office - New York City
## 318                   Capital District Regional Office
## 319                   Capital District Regional Office
## 320    Metropolitan Area Regional Office - Long Island
## 321   Metropolitan Area Regional Office - New Rochelle
## 322                  Western Regional Office - Buffalo
## 323  Metropolitan Area Regional Office - New York City
## 324                Western Regional Office - Rochester
## 325                Western Regional Office - Rochester
## 326                  Western Regional Office - Buffalo
## 327    Metropolitan Area Regional Office - Long Island
## 328  Metropolitan Area Regional Office - New York City
## 329                Western Regional Office - Rochester
## 330                  Western Regional Office - Buffalo
## 331    Metropolitan Area Regional Office - Long Island
## 332  Metropolitan Area Regional Office - New York City
## 333                   Central New York Regional Office
## 334                Western Regional Office - Rochester
## 335  Metropolitan Area Regional Office - New York City
## 336                   Capital District Regional Office
## 337  Metropolitan Area Regional Office - New York City
## 338                   Central New York Regional Office
## 339                Western Regional Office - Rochester
## 340                Western Regional Office - Rochester
## 341                   Central New York Regional Office
## 342  Metropolitan Area Regional Office - New York City
## 343                   Capital District Regional Office
## 344    Metropolitan Area Regional Office - Long Island
## 345  Metropolitan Area Regional Office - New York City
## 346    Metropolitan Area Regional Office - Long Island
## 347                   Central New York Regional Office
## 348  Metropolitan Area Regional Office - New York City
## 349  Metropolitan Area Regional Office - New York City
## 350  Metropolitan Area Regional Office - New York City
## 351  Metropolitan Area Regional Office - New York City
## 352  Metropolitan Area Regional Office - New York City
## 353  Metropolitan Area Regional Office - New York City
## 354                  Western Regional Office - Buffalo
## 355                   Capital District Regional Office
## 356   Metropolitan Area Regional Office - New Rochelle
## 357                   Central New York Regional Office
## 358  Metropolitan Area Regional Office - New York City
## 359                Western Regional Office - Rochester
## 360  Metropolitan Area Regional Office - New York City
## 361                   Central New York Regional Office
## 362                   Central New York Regional Office
## 363  Metropolitan Area Regional Office - New York City
## 364   Metropolitan Area Regional Office - New Rochelle
## 365  Metropolitan Area Regional Office - New York City
## 366   Metropolitan Area Regional Office - New Rochelle
## 367  Metropolitan Area Regional Office - New York City
## 368  Metropolitan Area Regional Office - New York City
## 369                  Western Regional Office - Buffalo
## 370  Metropolitan Area Regional Office - New York City
## 371                   Capital District Regional Office
## 372  Metropolitan Area Regional Office - New York City
## 373  Metropolitan Area Regional Office - New York City
## 374  Metropolitan Area Regional Office - New York City
## 375                   Capital District Regional Office
## 376                   Central New York Regional Office
## 377  Metropolitan Area Regional Office - New York City
## 378   Metropolitan Area Regional Office - New Rochelle
## 379                Western Regional Office - Rochester
## 380                   Capital District Regional Office
## 381                Western Regional Office - Rochester
## 382                   Capital District Regional Office
## 383  Metropolitan Area Regional Office - New York City
## 384  Metropolitan Area Regional Office - New York City
## 385  Metropolitan Area Regional Office - New York City
## 386  Metropolitan Area Regional Office - New York City
## 387  Metropolitan Area Regional Office - New York City
## 388                   Capital District Regional Office
## 389  Metropolitan Area Regional Office - New York City
## 390  Metropolitan Area Regional Office - New York City
## 391    Metropolitan Area Regional Office - Long Island
## 392                  Western Regional Office - Buffalo
## 393                   Capital District Regional Office
## 394                   Capital District Regional Office
## 395  Metropolitan Area Regional Office - New York City
## 396   Metropolitan Area Regional Office - New Rochelle
## 397  Metropolitan Area Regional Office - New York City
## 398                   Capital District Regional Office
## 399   Metropolitan Area Regional Office - New Rochelle
## 400                   Central New York Regional Office
## 401  Metropolitan Area Regional Office - New York City
## 402   Metropolitan Area Regional Office - New Rochelle
## 403    Metropolitan Area Regional Office - Long Island
## 404                  Western Regional Office - Buffalo
## 405   Metropolitan Area Regional Office - New Rochelle
## 406                Western Regional Office - Rochester
## 407  Metropolitan Area Regional Office - New York City
## 408                   Central New York Regional Office
## 409                   Central New York Regional Office
## 410                   Central New York Regional Office
## 411                   Central New York Regional Office
## 412   Metropolitan Area Regional Office - New Rochelle
## 413                  Western Regional Office - Buffalo
## 414  Metropolitan Area Regional Office - New York City
## 415                  Western Regional Office - Buffalo
## 416    Metropolitan Area Regional Office - Long Island
## 417                Western Regional Office - Rochester
## 418  Metropolitan Area Regional Office - New York City
## 419   Metropolitan Area Regional Office - New Rochelle
## 420    Metropolitan Area Regional Office - Long Island
## 421  Metropolitan Area Regional Office - New York City
## 422                   Capital District Regional Office
## 423                Western Regional Office - Rochester
## 424                  Western Regional Office - Buffalo
## 425  Metropolitan Area Regional Office - New York City
## 426                   Central New York Regional Office
## 427  Metropolitan Area Regional Office - New York City
## 428  Metropolitan Area Regional Office - New York City
## 429  Metropolitan Area Regional Office - New York City
## 430  Metropolitan Area Regional Office - New York City
## 431  Metropolitan Area Regional Office - New York City
## 432                Western Regional Office - Rochester
## 433  Metropolitan Area Regional Office - New York City
## 434   Metropolitan Area Regional Office - New Rochelle
## 435   Metropolitan Area Regional Office - New Rochelle
## 436                  Western Regional Office - Buffalo
## 437                  Western Regional Office - Buffalo
## 438                   Capital District Regional Office
## 439                  Western Regional Office - Buffalo
## 440  Metropolitan Area Regional Office - New York City
## 441                   Central New York Regional Office
## 442    Metropolitan Area Regional Office - Long Island
## 443   Metropolitan Area Regional Office - New Rochelle
## 444                  Western Regional Office - Buffalo
## 445  Metropolitan Area Regional Office - New York City
## 446    Metropolitan Area Regional Office - Long Island
## 447  Metropolitan Area Regional Office - New York City
## 448  Metropolitan Area Regional Office - New York City
## 449  Metropolitan Area Regional Office - New York City
## 450    Metropolitan Area Regional Office - Long Island
## 451    Metropolitan Area Regional Office - Long Island
## 452  Metropolitan Area Regional Office - New York City
## 453                   Capital District Regional Office
## 454  Metropolitan Area Regional Office - New York City
## 455                Western Regional Office - Rochester
## 456    Metropolitan Area Regional Office - Long Island
## 457  Metropolitan Area Regional Office - New York City
## 458  Metropolitan Area Regional Office - New York City
## 459    Metropolitan Area Regional Office - Long Island
## 460   Metropolitan Area Regional Office - New Rochelle
## 461  Metropolitan Area Regional Office - New York City
## 462                Western Regional Office - Rochester
## 463   Metropolitan Area Regional Office - New Rochelle
## 464                   Capital District Regional Office
## 465                   Central New York Regional Office
## 466                   Central New York Regional Office
## 467                   Capital District Regional Office
## 468   Metropolitan Area Regional Office - New Rochelle
## 469    Metropolitan Area Regional Office - Long Island
## 470  Metropolitan Area Regional Office - New York City
## 471                   Central New York Regional Office
## 472                  Western Regional Office - Buffalo
## 473  Metropolitan Area Regional Office - New York City
## 474                   Central New York Regional Office
## 475  Metropolitan Area Regional Office - New York City
## 476    Metropolitan Area Regional Office - Long Island
## 477  Metropolitan Area Regional Office - New York City
## 478                   Central New York Regional Office
## 479                   Capital District Regional Office
## 480                Western Regional Office - Rochester
## 481  Metropolitan Area Regional Office - New York City
## 482  Metropolitan Area Regional Office - New York City
## 483                   Central New York Regional Office
## 484   Metropolitan Area Regional Office - New Rochelle
## 485                   Capital District Regional Office
## 486                Western Regional Office - Rochester
## 487  Metropolitan Area Regional Office - New York City
## 488  Metropolitan Area Regional Office - New York City
## 489  Metropolitan Area Regional Office - New York City
## 490                   Central New York Regional Office
## 491    Metropolitan Area Regional Office - Long Island
## 492   Metropolitan Area Regional Office - New Rochelle
## 493                   Capital District Regional Office
## 494                  Western Regional Office - Buffalo
## 495                   Capital District Regional Office
## 496  Metropolitan Area Regional Office - New York City
## 497  Metropolitan Area Regional Office - New York City
## 498    Metropolitan Area Regional Office - Long Island
## 499  Metropolitan Area Regional Office - New York City
## 500  Metropolitan Area Regional Office - New York City
## 501    Metropolitan Area Regional Office - Long Island
## 502                   Capital District Regional Office
## 503  Metropolitan Area Regional Office - New York City
## 504                Western Regional Office - Rochester
## 505  Metropolitan Area Regional Office - New York City
## 506                   Central New York Regional Office
## 507  Metropolitan Area Regional Office - New York City
## 508  Metropolitan Area Regional Office - New York City
## 509                   Central New York Regional Office
## 510                   Capital District Regional Office
## 511   Metropolitan Area Regional Office - New Rochelle
## 512  Metropolitan Area Regional Office - New York City
## 513  Metropolitan Area Regional Office - New York City
## 514                  Western Regional Office - Buffalo
## 515                  Western Regional Office - Buffalo
## 516  Metropolitan Area Regional Office - New York City
## 517  Metropolitan Area Regional Office - New York City
## 518                   Capital District Regional Office
## 519   Metropolitan Area Regional Office - New Rochelle
## 520  Metropolitan Area Regional Office - New York City
## 521  Metropolitan Area Regional Office - New York City
## 522  Metropolitan Area Regional Office - New York City
## 523  Metropolitan Area Regional Office - New York City
## 524  Metropolitan Area Regional Office - New York City
## 525                Western Regional Office - Rochester
## 526   Metropolitan Area Regional Office - New Rochelle
## 527   Metropolitan Area Regional Office - New Rochelle
## 528                   Capital District Regional Office
## 529  Metropolitan Area Regional Office - New York City
## 530  Metropolitan Area Regional Office - New York City
## 531    Metropolitan Area Regional Office - Long Island
## 532  Metropolitan Area Regional Office - New York City
## 533    Metropolitan Area Regional Office - Long Island
## 534                   Capital District Regional Office
## 535                   Capital District Regional Office
## 536                   Central New York Regional Office
## 537                  Western Regional Office - Buffalo
## 538                   Capital District Regional Office
## 539                   Capital District Regional Office
## 540    Metropolitan Area Regional Office - Long Island
## 541    Metropolitan Area Regional Office - Long Island
## 542   Metropolitan Area Regional Office - New Rochelle
## 543                   Capital District Regional Office
## 544  Metropolitan Area Regional Office - New York City
## 545                   Capital District Regional Office
## 546                  Western Regional Office - Buffalo
## 547  Metropolitan Area Regional Office - New York City
## 548  Metropolitan Area Regional Office - New York City
## 549  Metropolitan Area Regional Office - New York City
## 550                Western Regional Office - Rochester
## 551  Metropolitan Area Regional Office - New York City
## 552   Metropolitan Area Regional Office - New Rochelle
## 553  Metropolitan Area Regional Office - New York City
## 554    Metropolitan Area Regional Office - Long Island
## 555   Metropolitan Area Regional Office - New Rochelle
## 556  Metropolitan Area Regional Office - New York City
## 557                   Central New York Regional Office
## 558   Metropolitan Area Regional Office - New Rochelle
## 559  Metropolitan Area Regional Office - New York City
## 560  Metropolitan Area Regional Office - New York City
## 561  Metropolitan Area Regional Office - New York City
## 562   Metropolitan Area Regional Office - New Rochelle
## 563                  Western Regional Office - Buffalo
## 564   Metropolitan Area Regional Office - New Rochelle
## 565                  Western Regional Office - Buffalo
## 566  Metropolitan Area Regional Office - New York City
## 567                   Central New York Regional Office
## 568    Metropolitan Area Regional Office - Long Island
## 569  Metropolitan Area Regional Office - New York City
## 570   Metropolitan Area Regional Office - New Rochelle
## 571  Metropolitan Area Regional Office - New York City
## 572  Metropolitan Area Regional Office - New York City
## 573  Metropolitan Area Regional Office - New York City
## 574                Western Regional Office - Rochester
## 575  Metropolitan Area Regional Office - New York City
## 576                   Capital District Regional Office
## 577  Metropolitan Area Regional Office - New York City
## 578                Western Regional Office - Rochester
## 579                   Capital District Regional Office
## 580  Metropolitan Area Regional Office - New York City
## 581   Metropolitan Area Regional Office - New Rochelle
## 582  Metropolitan Area Regional Office - New York City
## 583                  Western Regional Office - Buffalo
## 584                   Central New York Regional Office
## 585  Metropolitan Area Regional Office - New York City
## 586                   Central New York Regional Office
## 587                   Capital District Regional Office
## 588   Metropolitan Area Regional Office - New Rochelle
## 589   Metropolitan Area Regional Office - New Rochelle
## 590                Western Regional Office - Rochester
## 591                Western Regional Office - Rochester
## 592  Metropolitan Area Regional Office - New York City
## 593   Metropolitan Area Regional Office - New Rochelle
## 594  Metropolitan Area Regional Office - New York City
## 595  Metropolitan Area Regional Office - New York City
## 596  Metropolitan Area Regional Office - New York City
## 597                   Capital District Regional Office
## 598                   Capital District Regional Office
## 599  Metropolitan Area Regional Office - New York City
## 600                   Capital District Regional Office
## 601                   Capital District Regional Office
## 602                   Capital District Regional Office
## 603                  Western Regional Office - Buffalo
## 604                   Capital District Regional Office
## 605                Western Regional Office - Rochester
## 606                   Capital District Regional Office
## 607    Metropolitan Area Regional Office - Long Island
## 608                Western Regional Office - Rochester
## 609                   Capital District Regional Office
## 610                   Central New York Regional Office
## 611    Metropolitan Area Regional Office - Long Island
## 612                Western Regional Office - Rochester
## 613   Metropolitan Area Regional Office - New Rochelle
## 614    Metropolitan Area Regional Office - Long Island
## 615                   Central New York Regional Office
## 616  Metropolitan Area Regional Office - New York City
## 617  Metropolitan Area Regional Office - New York City
## 618  Metropolitan Area Regional Office - New York City
## 619   Metropolitan Area Regional Office - New Rochelle
## 620                   Central New York Regional Office
## 621                   Capital District Regional Office
## 622                Western Regional Office - Rochester
## 623  Metropolitan Area Regional Office - New York City
## 624                  Western Regional Office - Buffalo
## 625  Metropolitan Area Regional Office - New York City
## 626                   Central New York Regional Office
## 627                Western Regional Office - Rochester
## 628  Metropolitan Area Regional Office - New York City
## 629                  Western Regional Office - Buffalo
## 630                  Western Regional Office - Buffalo
## 631   Metropolitan Area Regional Office - New Rochelle
## 632    Metropolitan Area Regional Office - Long Island
## 633                   Capital District Regional Office
## 634                   Capital District Regional Office
## 635  Metropolitan Area Regional Office - New York City
## 636  Metropolitan Area Regional Office - New York City
## 637  Metropolitan Area Regional Office - New York City
## 638    Metropolitan Area Regional Office - Long Island
## 639    Metropolitan Area Regional Office - Long Island
## 640                   Capital District Regional Office
## 641  Metropolitan Area Regional Office - New York City
## 642                Western Regional Office - Rochester
## 643    Metropolitan Area Regional Office - Long Island
## 644   Metropolitan Area Regional Office - New Rochelle
## 645   Metropolitan Area Regional Office - New Rochelle
## 646                  Western Regional Office - Buffalo
## 647  Metropolitan Area Regional Office - New York City
## 648  Metropolitan Area Regional Office - New York City
## 649                   Central New York Regional Office
## 650                   Capital District Regional Office
## 651                  Western Regional Office - Buffalo
## 652                  Western Regional Office - Buffalo
## 653                   Capital District Regional Office
## 654    Metropolitan Area Regional Office - Long Island
## 655                   Central New York Regional Office
## 656  Metropolitan Area Regional Office - New York City
## 657   Metropolitan Area Regional Office - New Rochelle
## 658  Metropolitan Area Regional Office - New York City
## 659                Western Regional Office - Rochester
## 660                   Central New York Regional Office
## 661                  Western Regional Office - Buffalo
## 662                   Central New York Regional Office
## 663                  Western Regional Office - Buffalo
## 664                   Central New York Regional Office
## 665    Metropolitan Area Regional Office - Long Island
## 666                Western Regional Office - Rochester
## 667    Metropolitan Area Regional Office - Long Island
## 668   Metropolitan Area Regional Office - New Rochelle
## 669                Western Regional Office - Rochester
## 670    Metropolitan Area Regional Office - Long Island
## 671                   Capital District Regional Office
## 672  Metropolitan Area Regional Office - New York City
## 673  Metropolitan Area Regional Office - New York City
## 674    Metropolitan Area Regional Office - Long Island
## 675  Metropolitan Area Regional Office - New York City
## 676                   Central New York Regional Office
## 677  Metropolitan Area Regional Office - New York City
## 678                   Capital District Regional Office
## 679                Western Regional Office - Rochester
## 680   Metropolitan Area Regional Office - New Rochelle
## 681   Metropolitan Area Regional Office - New Rochelle
## 682  Metropolitan Area Regional Office - New York City
## 683                   Central New York Regional Office
## 684                   Central New York Regional Office
## 685  Metropolitan Area Regional Office - New York City
## 686    Metropolitan Area Regional Office - Long Island
## 687                  Western Regional Office - Buffalo
## 688  Metropolitan Area Regional Office - New York City
## 689                   Central New York Regional Office
## 690                   Capital District Regional Office
## 691                  Western Regional Office - Buffalo
## 692  Metropolitan Area Regional Office - New York City
## 693                Western Regional Office - Rochester
## 694                   Capital District Regional Office
## 695    Metropolitan Area Regional Office - Long Island
## 696                Western Regional Office - Rochester
## 697                Western Regional Office - Rochester
## 698                   Capital District Regional Office
## 699                   Central New York Regional Office
## 700  Metropolitan Area Regional Office - New York City
## 701                   Capital District Regional Office
## 702    Metropolitan Area Regional Office - Long Island
## 703                   Capital District Regional Office
## 704                   Capital District Regional Office
## 705                   Central New York Regional Office
## 706  Metropolitan Area Regional Office - New York City
## 707   Metropolitan Area Regional Office - New Rochelle
## 708                  Western Regional Office - Buffalo
## 709                   Capital District Regional Office
## 710                   Central New York Regional Office
## 711  Metropolitan Area Regional Office - New York City
## 712                   Capital District Regional Office
## 713                   Central New York Regional Office
## 714   Metropolitan Area Regional Office - New Rochelle
## 715                   Capital District Regional Office
## 716   Metropolitan Area Regional Office - New Rochelle
## 717   Metropolitan Area Regional Office - New Rochelle
## 718                   Central New York Regional Office
## 719  Metropolitan Area Regional Office - New York City
## 720                Western Regional Office - Rochester
## 721  Metropolitan Area Regional Office - New York City
## 722                Western Regional Office - Rochester
## 723  Metropolitan Area Regional Office - New York City
## 724    Metropolitan Area Regional Office - Long Island
## 725  Metropolitan Area Regional Office - New York City
## 726                Western Regional Office - Rochester
## 727  Metropolitan Area Regional Office - New York City
## 728  Metropolitan Area Regional Office - New York City
## 729                   Central New York Regional Office
## 730  Metropolitan Area Regional Office - New York City
## 731    Metropolitan Area Regional Office - Long Island
## 732                Western Regional Office - Rochester
## 733                  Western Regional Office - Buffalo
## 734                   Capital District Regional Office
## 735   Metropolitan Area Regional Office - New Rochelle
## 736                Western Regional Office - Rochester
## 737  Metropolitan Area Regional Office - New York City
## 738  Metropolitan Area Regional Office - New York City
## 739                   Central New York Regional Office
## 740  Metropolitan Area Regional Office - New York City
## 741    Metropolitan Area Regional Office - Long Island
## 742                  Western Regional Office - Buffalo
## 743                   Capital District Regional Office
## 744    Metropolitan Area Regional Office - Long Island
## 745                   Central New York Regional Office
## 746    Metropolitan Area Regional Office - Long Island
## 747                   Capital District Regional Office
## 748  Metropolitan Area Regional Office - New York City
## 749                   Capital District Regional Office
## 750                   Central New York Regional Office
## 751   Metropolitan Area Regional Office - New Rochelle
## 752  Metropolitan Area Regional Office - New York City
## 753                   Central New York Regional Office
## 754                   Capital District Regional Office
## 755   Metropolitan Area Regional Office - New Rochelle
## 756                   Central New York Regional Office
## 757  Metropolitan Area Regional Office - New York City
## 758                  Western Regional Office - Buffalo
## 759  Metropolitan Area Regional Office - New York City
## 760                   Central New York Regional Office
## 761    Metropolitan Area Regional Office - Long Island
## 762                Western Regional Office - Rochester
## 763  Metropolitan Area Regional Office - New York City
## 764  Metropolitan Area Regional Office - New York City
## 765                   Capital District Regional Office
## 766                   Central New York Regional Office
## 767                  Western Regional Office - Buffalo
## 768  Metropolitan Area Regional Office - New York City
## 769   Metropolitan Area Regional Office - New Rochelle
## 770   Metropolitan Area Regional Office - New Rochelle
## 771                  Western Regional Office - Buffalo
## 772  Metropolitan Area Regional Office - New York City
## 773                   Capital District Regional Office
## 774                  Western Regional Office - Buffalo
## 775   Metropolitan Area Regional Office - New Rochelle
## 776                   Central New York Regional Office
## 777  Metropolitan Area Regional Office - New York City
## 778                   Central New York Regional Office
## 779  Metropolitan Area Regional Office - New York City
## 780  Metropolitan Area Regional Office - New York City
## 781    Metropolitan Area Regional Office - Long Island
## 782  Metropolitan Area Regional Office - New York City
## 783                   Central New York Regional Office
## 784  Metropolitan Area Regional Office - New York City
## 785  Metropolitan Area Regional Office - New York City
## 786   Metropolitan Area Regional Office - New Rochelle
## 787  Metropolitan Area Regional Office - New York City
## 788                   Central New York Regional Office
## 789                Western Regional Office - Rochester
## 790  Metropolitan Area Regional Office - New York City
## 791  Metropolitan Area Regional Office - New York City
## 792  Metropolitan Area Regional Office - New York City
## 793                   Central New York Regional Office
## 794  Metropolitan Area Regional Office - New York City
## 795    Metropolitan Area Regional Office - Long Island
## 796                Western Regional Office - Rochester
## 797                   Capital District Regional Office
## 798  Metropolitan Area Regional Office - New York City
## 799                   Capital District Regional Office
## 800    Metropolitan Area Regional Office - Long Island
## 801                   Capital District Regional Office
## 802                   Central New York Regional Office
## 803  Metropolitan Area Regional Office - New York City
## 804    Metropolitan Area Regional Office - Long Island
## 805                   Central New York Regional Office
## 806  Metropolitan Area Regional Office - New York City
## 807  Metropolitan Area Regional Office - New York City
## 808                Western Regional Office - Rochester
## 809  Metropolitan Area Regional Office - New York City
## 810                   Central New York Regional Office
## 811                Western Regional Office - Rochester
## 812   Metropolitan Area Regional Office - New Rochelle
## 813                Western Regional Office - Rochester
## 814   Metropolitan Area Regional Office - New Rochelle
## 815  Metropolitan Area Regional Office - New York City
## 816  Metropolitan Area Regional Office - New York City
## 817                   Capital District Regional Office
## 818                   Capital District Regional Office
## 819                  Western Regional Office - Buffalo
## 820   Metropolitan Area Regional Office - New Rochelle
## 821                   Capital District Regional Office
## 822    Metropolitan Area Regional Office - Long Island
## 823  Metropolitan Area Regional Office - New York City
## 824  Metropolitan Area Regional Office - New York City
## 825                   Central New York Regional Office
## 826  Metropolitan Area Regional Office - New York City
## 827   Metropolitan Area Regional Office - New Rochelle
## 828  Metropolitan Area Regional Office - New York City
## 829   Metropolitan Area Regional Office - New Rochelle
## 830  Metropolitan Area Regional Office - New York City
## 831    Metropolitan Area Regional Office - Long Island
## 832                   Capital District Regional Office
## 833  Metropolitan Area Regional Office - New York City
## 834  Metropolitan Area Regional Office - New York City
## 835  Metropolitan Area Regional Office - New York City
## 836                   Capital District Regional Office
## 837  Metropolitan Area Regional Office - New York City
## 838                   Capital District Regional Office
## 839                   Capital District Regional Office
## 840                  Western Regional Office - Buffalo
## 841  Metropolitan Area Regional Office - New York City
## 842                   Central New York Regional Office
## 843                   Capital District Regional Office
## 844                   Capital District Regional Office
## 845                Western Regional Office - Rochester
## 846                   Central New York Regional Office
## 847   Metropolitan Area Regional Office - New Rochelle
## 848                   Capital District Regional Office
## 849  Metropolitan Area Regional Office - New York City
## 850  Metropolitan Area Regional Office - New York City
## 851                  Western Regional Office - Buffalo
## 852  Metropolitan Area Regional Office - New York City
## 853                   Capital District Regional Office
## 854    Metropolitan Area Regional Office - Long Island
## 855                Western Regional Office - Rochester
## 856    Metropolitan Area Regional Office - Long Island
## 857                   Capital District Regional Office
## 858   Metropolitan Area Regional Office - New Rochelle
## 859                   Central New York Regional Office
## 860  Metropolitan Area Regional Office - New York City
## 861  Metropolitan Area Regional Office - New York City
## 862  Metropolitan Area Regional Office - New York City
## 863                  Western Regional Office - Buffalo
## 864                  Western Regional Office - Buffalo
## 865   Metropolitan Area Regional Office - New Rochelle
## 866  Metropolitan Area Regional Office - New York City
## 867  Metropolitan Area Regional Office - New York City
## 868                   Capital District Regional Office
## 869  Metropolitan Area Regional Office - New York City
## 870                   Central New York Regional Office
## 871                   Central New York Regional Office
## 872  Metropolitan Area Regional Office - New York City
## 873                   Central New York Regional Office
## 874                   Capital District Regional Office
## 875                  Western Regional Office - Buffalo
## 876    Metropolitan Area Regional Office - Long Island
## 877    Metropolitan Area Regional Office - Long Island
## 878   Metropolitan Area Regional Office - New Rochelle
## 879                   Capital District Regional Office
## 880   Metropolitan Area Regional Office - New Rochelle
## 881                  Western Regional Office - Buffalo
## 882                   Capital District Regional Office
## 883                  Western Regional Office - Buffalo
## 884  Metropolitan Area Regional Office - New York City
## 885  Metropolitan Area Regional Office - New York City
## 886  Metropolitan Area Regional Office - New York City
## 887  Metropolitan Area Regional Office - New York City
## 888  Metropolitan Area Regional Office - New York City
## 889                   Capital District Regional Office
## 890  Metropolitan Area Regional Office - New York City
## 891  Metropolitan Area Regional Office - New York City
## 892                Western Regional Office - Rochester
## 893  Metropolitan Area Regional Office - New York City
## 894                  Western Regional Office - Buffalo
## 895    Metropolitan Area Regional Office - Long Island
## 896                   Central New York Regional Office
## 897                  Western Regional Office - Buffalo
## 898  Metropolitan Area Regional Office - New York City
## 899  Metropolitan Area Regional Office - New York City
## 900                   Central New York Regional Office
## 901                  Western Regional Office - Buffalo
## 902                Western Regional Office - Rochester
## 903   Metropolitan Area Regional Office - New Rochelle
## 904                  Western Regional Office - Buffalo
## 905                   Capital District Regional Office
## 906                  Western Regional Office - Buffalo
## 907  Metropolitan Area Regional Office - New York City
## 908  Metropolitan Area Regional Office - New York City
## 909    Metropolitan Area Regional Office - Long Island
## 910                  Western Regional Office - Buffalo
## 911   Metropolitan Area Regional Office - New Rochelle
## 912  Metropolitan Area Regional Office - New York City
## 913  Metropolitan Area Regional Office - New York City
## 914  Metropolitan Area Regional Office - New York City
## 915  Metropolitan Area Regional Office - New York City
## 916                   Capital District Regional Office
## 917  Metropolitan Area Regional Office - New York City
## 918  Metropolitan Area Regional Office - New York City
## 919                   Capital District Regional Office
## 920                   Capital District Regional Office
## 921  Metropolitan Area Regional Office - New York City
## 922   Metropolitan Area Regional Office - New Rochelle
## 923                   Central New York Regional Office
## 924  Metropolitan Area Regional Office - New York City
## 925                  Western Regional Office - Buffalo
## 926  Metropolitan Area Regional Office - New York City
## 927  Metropolitan Area Regional Office - New York City
## 928                  Western Regional Office - Buffalo
## 929                  Western Regional Office - Buffalo
## 930                Western Regional Office - Rochester
## 931  Metropolitan Area Regional Office - New York City
## 932   Metropolitan Area Regional Office - New Rochelle
## 933                   Capital District Regional Office
## 934   Metropolitan Area Regional Office - New Rochelle
## 935                   Capital District Regional Office
## 936  Metropolitan Area Regional Office - New York City
## 937                   Central New York Regional Office
## 938  Metropolitan Area Regional Office - New York City
## 939    Metropolitan Area Regional Office - Long Island
## 940    Metropolitan Area Regional Office - Long Island
## 941                   Central New York Regional Office
## 942                   Capital District Regional Office
## 943                   Central New York Regional Office
## 944                Western Regional Office - Rochester
## 945  Metropolitan Area Regional Office - New York City
## 946                Western Regional Office - Rochester
## 947   Metropolitan Area Regional Office - New Rochelle
## 948                   Central New York Regional Office
## 949  Metropolitan Area Regional Office - New York City
## 950  Metropolitan Area Regional Office - New York City
## 951                   Capital District Regional Office
## 952                  Western Regional Office - Buffalo
## 953                   Capital District Regional Office
## 954  Metropolitan Area Regional Office - New York City
## 955  Metropolitan Area Regional Office - New York City
## 956  Metropolitan Area Regional Office - New York City
## 957    Metropolitan Area Regional Office - Long Island
## 958                   Capital District Regional Office
## 959  Metropolitan Area Regional Office - New York City
## 960  Metropolitan Area Regional Office - New York City
## 961   Metropolitan Area Regional Office - New Rochelle
## 962  Metropolitan Area Regional Office - New York City
## 963  Metropolitan Area Regional Office - New York City
## 964  Metropolitan Area Regional Office - New York City
## 965                   Central New York Regional Office
## 966                   Central New York Regional Office
## 967   Metropolitan Area Regional Office - New Rochelle
## 968    Metropolitan Area Regional Office - Long Island
## 969                   Central New York Regional Office
## 970                  Western Regional Office - Buffalo
## 971                   Central New York Regional Office
## 972                  Western Regional Office - Buffalo
## 973                  Western Regional Office - Buffalo
## 974                Western Regional Office - Rochester
## 975  Metropolitan Area Regional Office - New York City
## 976  Metropolitan Area Regional Office - New York City
## 977                   Central New York Regional Office
## 978                Western Regional Office - Rochester
## 979   Metropolitan Area Regional Office - New Rochelle
## 980  Metropolitan Area Regional Office - New York City
## 981   Metropolitan Area Regional Office - New Rochelle
## 982    Metropolitan Area Regional Office - Long Island
## 983  Metropolitan Area Regional Office - New York City
## 984                   Central New York Regional Office
## 985    Metropolitan Area Regional Office - Long Island
## 986   Metropolitan Area Regional Office - New Rochelle
## 987                   Central New York Regional Office
## 988  Metropolitan Area Regional Office - New York City
## 989                   Central New York Regional Office
## 990                  Western Regional Office - Buffalo
## 991  Metropolitan Area Regional Office - New York City
## 992  Metropolitan Area Regional Office - New York City
## 993  Metropolitan Area Regional Office - New York City
## 994                   Capital District Regional Office
## 995   Metropolitan Area Regional Office - New Rochelle
## 996                   Central New York Regional Office
## 997   Metropolitan Area Regional Office - New Rochelle
## 998                   Capital District Regional Office
## 999  Metropolitan Area Regional Office - New York City
## 1000 Metropolitan Area Regional Office - New York City
## 1001   Metropolitan Area Regional Office - Long Island
## 1002 Metropolitan Area Regional Office - New York City
## 1003                  Central New York Regional Office
## 1004                 Western Regional Office - Buffalo
## 1005               Western Regional Office - Rochester
## 1006                  Capital District Regional Office
## 1007                  Capital District Regional Office
## 1008                  Central New York Regional Office
## 1009                  Capital District Regional Office
## 1010  Metropolitan Area Regional Office - New Rochelle
## 1011                 Western Regional Office - Buffalo
## 1012                 Western Regional Office - Buffalo
## 1013 Metropolitan Area Regional Office - New York City
## 1014  Metropolitan Area Regional Office - New Rochelle
## 1015               Western Regional Office - Rochester
## 1016                 Western Regional Office - Buffalo
## 1017  Metropolitan Area Regional Office - New Rochelle
## 1018 Metropolitan Area Regional Office - New York City
## 1019                  Capital District Regional Office
## 1020                 Western Regional Office - Buffalo
## 1021                  Capital District Regional Office
## 1022   Metropolitan Area Regional Office - Long Island
## 1023 Metropolitan Area Regional Office - New York City
## 1024   Metropolitan Area Regional Office - Long Island
## 1025 Metropolitan Area Regional Office - New York City
## 1026 Metropolitan Area Regional Office - New York City
## 1027   Metropolitan Area Regional Office - Long Island
## 1028                  Central New York Regional Office
## 1029               Western Regional Office - Rochester
## 1030               Western Regional Office - Rochester
## 1031 Metropolitan Area Regional Office - New York City
## 1032  Metropolitan Area Regional Office - New Rochelle
## 1033   Metropolitan Area Regional Office - Long Island
## 1034 Metropolitan Area Regional Office - New York City
## 1035                  Capital District Regional Office
## 1036 Metropolitan Area Regional Office - New York City
## 1037 Metropolitan Area Regional Office - New York City
## 1038                  Capital District Regional Office
## 1039 Metropolitan Area Regional Office - New York City
## 1040                  Capital District Regional Office
## 1041  Metropolitan Area Regional Office - New Rochelle
## 1042                  Capital District Regional Office
## 1043                  Capital District Regional Office
## 1044  Metropolitan Area Regional Office - New Rochelle
## 1045                  Central New York Regional Office
## 1046 Metropolitan Area Regional Office - New York City
## 1047 Metropolitan Area Regional Office - New York City
## 1048 Metropolitan Area Regional Office - New York City
## 1049   Metropolitan Area Regional Office - Long Island
## 1050 Metropolitan Area Regional Office - New York City
## 1051  Metropolitan Area Regional Office - New Rochelle
## 1052 Metropolitan Area Regional Office - New York City
## 1053                 Western Regional Office - Buffalo
## 1054                  Central New York Regional Office
## 1055 Metropolitan Area Regional Office - New York City
## 1056 Metropolitan Area Regional Office - New York City
## 1057                 Western Regional Office - Buffalo
## 1058  Metropolitan Area Regional Office - New Rochelle
## 1059  Metropolitan Area Regional Office - New Rochelle
## 1060   Metropolitan Area Regional Office - Long Island
## 1061 Metropolitan Area Regional Office - New York City
## 1062                  Central New York Regional Office
## 1063 Metropolitan Area Regional Office - New York City
## 1064                  Central New York Regional Office
## 1065               Western Regional Office - Rochester
## 1066  Metropolitan Area Regional Office - New Rochelle
## 1067 Metropolitan Area Regional Office - New York City
## 1068  Metropolitan Area Regional Office - New Rochelle
## 1069               Western Regional Office - Rochester
## 1070                  Capital District Regional Office
## 1071   Metropolitan Area Regional Office - Long Island
## 1072 Metropolitan Area Regional Office - New York City
## 1073                  Central New York Regional Office
## 1074                  Capital District Regional Office
## 1075  Metropolitan Area Regional Office - New Rochelle
## 1076                  Central New York Regional Office
## 1077                  Central New York Regional Office
## 1078                  Capital District Regional Office
## 1079                 Western Regional Office - Buffalo
## 1080                  Capital District Regional Office
## 1081                 Western Regional Office - Buffalo
## 1082 Metropolitan Area Regional Office - New York City
## 1083                  Capital District Regional Office
## 1084                 Western Regional Office - Buffalo
## 1085  Metropolitan Area Regional Office - New Rochelle
## 1086                  Capital District Regional Office
## 1087  Metropolitan Area Regional Office - New Rochelle
## 1088 Metropolitan Area Regional Office - New York City
## 1089 Metropolitan Area Regional Office - New York City
## 1090                  Central New York Regional Office
## 1091                  Central New York Regional Office
## 1092               Western Regional Office - Rochester
## 1093 Metropolitan Area Regional Office - New York City
## 1094                  Central New York Regional Office
## 1095 Metropolitan Area Regional Office - New York City
## 1096 Metropolitan Area Regional Office - New York City
## 1097 Metropolitan Area Regional Office - New York City
## 1098 Metropolitan Area Regional Office - New York City
## 1099 Metropolitan Area Regional Office - New York City
## 1100                  Capital District Regional Office
## 1101 Metropolitan Area Regional Office - New York City
## 1102 Metropolitan Area Regional Office - New York City
## 1103 Metropolitan Area Regional Office - New York City
## 1104                  Central New York Regional Office
## 1105 Metropolitan Area Regional Office - New York City
## 1106               Western Regional Office - Rochester
## 1107                  Capital District Regional Office
## 1108 Metropolitan Area Regional Office - New York City
## 1109               Western Regional Office - Rochester
## 1110 Metropolitan Area Regional Office - New York City
## 1111                  Capital District Regional Office
## 1112                  Central New York Regional Office
## 1113  Metropolitan Area Regional Office - New Rochelle
## 1114                  Capital District Regional Office
## 1115 Metropolitan Area Regional Office - New York City
## 1116   Metropolitan Area Regional Office - Long Island
## 1117 Metropolitan Area Regional Office - New York City
## 1118 Metropolitan Area Regional Office - New York City
## 1119  Metropolitan Area Regional Office - New Rochelle
## 1120 Metropolitan Area Regional Office - New York City
## 1121 Metropolitan Area Regional Office - New York City
## 1122 Metropolitan Area Regional Office - New York City
## 1123                  Capital District Regional Office
## 1124 Metropolitan Area Regional Office - New York City
## 1125                  Capital District Regional Office
## 1126 Metropolitan Area Regional Office - New York City
## 1127               Western Regional Office - Rochester
## 1128   Metropolitan Area Regional Office - Long Island
## 1129 Metropolitan Area Regional Office - New York City
## 1130 Metropolitan Area Regional Office - New York City
## 1131 Metropolitan Area Regional Office - New York City
## 1132                 Western Regional Office - Buffalo
## 1133 Metropolitan Area Regional Office - New York City
## 1134 Metropolitan Area Regional Office - New York City
## 1135  Metropolitan Area Regional Office - New Rochelle
## 1136 Metropolitan Area Regional Office - New York City
## 1137               Western Regional Office - Rochester
## 1138                  Capital District Regional Office
## 1139               Western Regional Office - Rochester
## 1140 Metropolitan Area Regional Office - New York City
## 1141                  Central New York Regional Office
## 1142   Metropolitan Area Regional Office - Long Island
## 1143                 Western Regional Office - Buffalo
## 1144   Metropolitan Area Regional Office - Long Island
## 1145 Metropolitan Area Regional Office - New York City
## 1146 Metropolitan Area Regional Office - New York City
## 1147                  Central New York Regional Office
## 1148                  Capital District Regional Office
## 1149  Metropolitan Area Regional Office - New Rochelle
## 1150                  Central New York Regional Office
## 1151                  Central New York Regional Office
## 1152  Metropolitan Area Regional Office - New Rochelle
## 1153                  Central New York Regional Office
## 1154   Metropolitan Area Regional Office - Long Island
## 1155  Metropolitan Area Regional Office - New Rochelle
## 1156  Metropolitan Area Regional Office - New Rochelle
## 1157                  Capital District Regional Office
## 1158                 Western Regional Office - Buffalo
## 1159               Western Regional Office - Rochester
## 1160                  Central New York Regional Office
## 1161 Metropolitan Area Regional Office - New York City
## 1162  Metropolitan Area Regional Office - New Rochelle
## 1163 Metropolitan Area Regional Office - New York City
## 1164                  Capital District Regional Office
## 1165   Metropolitan Area Regional Office - Long Island
## 1166                  Capital District Regional Office
## 1167   Metropolitan Area Regional Office - Long Island
## 1168                  Central New York Regional Office
## 1169   Metropolitan Area Regional Office - Long Island
## 1170                  Central New York Regional Office
## 1171 Metropolitan Area Regional Office - New York City
## 1172  Metropolitan Area Regional Office - New Rochelle
## 1173               Western Regional Office - Rochester
## 1174               Western Regional Office - Rochester
## 1175  Metropolitan Area Regional Office - New Rochelle
## 1176               Western Regional Office - Rochester
## 1177                  Capital District Regional Office
## 1178 Metropolitan Area Regional Office - New York City
## 1179 Metropolitan Area Regional Office - New York City
## 1180  Metropolitan Area Regional Office - New Rochelle
## 1181 Metropolitan Area Regional Office - New York City
## 1182   Metropolitan Area Regional Office - Long Island
## 1183               Western Regional Office - Rochester
## 1184  Metropolitan Area Regional Office - New Rochelle
## 1185                  Central New York Regional Office
## 1186                 Western Regional Office - Buffalo
## 1187               Western Regional Office - Rochester
## 1188 Metropolitan Area Regional Office - New York City
## 1189   Metropolitan Area Regional Office - Long Island
## 1190   Metropolitan Area Regional Office - Long Island
## 1191                  Capital District Regional Office
## 1192                  Capital District Regional Office
## 1193  Metropolitan Area Regional Office - New Rochelle
## 1194 Metropolitan Area Regional Office - New York City
## 1195                  Central New York Regional Office
## 1196                 Western Regional Office - Buffalo
## 1197 Metropolitan Area Regional Office - New York City
## 1198                  Capital District Regional Office
## 1199 Metropolitan Area Regional Office - New York City
## 1200                  Central New York Regional Office
## 1201 Metropolitan Area Regional Office - New York City
## 1202                  Capital District Regional Office
## 1203                  Capital District Regional Office
## 1204                  Central New York Regional Office
## 1205 Metropolitan Area Regional Office - New York City
## 1206 Metropolitan Area Regional Office - New York City
## 1207   Metropolitan Area Regional Office - Long Island
## 1208 Metropolitan Area Regional Office - New York City
## 1209 Metropolitan Area Regional Office - New York City
## 1210  Metropolitan Area Regional Office - New Rochelle
## 1211                  Central New York Regional Office
## 1212 Metropolitan Area Regional Office - New York City
## 1213                 Western Regional Office - Buffalo
## 1214 Metropolitan Area Regional Office - New York City
## 1215 Metropolitan Area Regional Office - New York City
## 1216 Metropolitan Area Regional Office - New York City
## 1217  Metropolitan Area Regional Office - New Rochelle
## 1218                  Central New York Regional Office
## 1219                  Central New York Regional Office
## 1220 Metropolitan Area Regional Office - New York City
## 1221 Metropolitan Area Regional Office - New York City
## 1222                  Central New York Regional Office
## 1223 Metropolitan Area Regional Office - New York City
## 1224   Metropolitan Area Regional Office - Long Island
## 1225 Metropolitan Area Regional Office - New York City
## 1226                  Central New York Regional Office
## 1227 Metropolitan Area Regional Office - New York City
## 1228 Metropolitan Area Regional Office - New York City
## 1229 Metropolitan Area Regional Office - New York City
## 1230 Metropolitan Area Regional Office - New York City
## 1231               Western Regional Office - Rochester
## 1232               Western Regional Office - Rochester
## 1233                  Capital District Regional Office
## 1234 Metropolitan Area Regional Office - New York City
## 1235   Metropolitan Area Regional Office - Long Island
## 1236               Western Regional Office - Rochester
## 1237 Metropolitan Area Regional Office - New York City
## 1238   Metropolitan Area Regional Office - Long Island
## 1239               Western Regional Office - Rochester
## 1240 Metropolitan Area Regional Office - New York City
## 1241                 Western Regional Office - Buffalo
## 1242  Metropolitan Area Regional Office - New Rochelle
## 1243   Metropolitan Area Regional Office - Long Island
## 1244               Western Regional Office - Rochester
## 1245                  Capital District Regional Office
## 1246                  Capital District Regional Office
## 1247                  Capital District Regional Office
## 1248               Western Regional Office - Rochester
## 1249 Metropolitan Area Regional Office - New York City
## 1250   Metropolitan Area Regional Office - Long Island
## 1251 Metropolitan Area Regional Office - New York City
## 1252                  Central New York Regional Office
## 1253                 Western Regional Office - Buffalo
## 1254  Metropolitan Area Regional Office - New Rochelle
## 1255               Western Regional Office - Rochester
## 1256                  Capital District Regional Office
## 1257                 Western Regional Office - Buffalo
## 1258  Metropolitan Area Regional Office - New Rochelle
## 1259 Metropolitan Area Regional Office - New York City
## 1260                 Western Regional Office - Buffalo
## 1261 Metropolitan Area Regional Office - New York City
## 1262 Metropolitan Area Regional Office - New York City
## 1263   Metropolitan Area Regional Office - Long Island
## 1264  Metropolitan Area Regional Office - New Rochelle
## 1265                  Central New York Regional Office
## 1266                  Central New York Regional Office
## 1267                  Capital District Regional Office
## 1268               Western Regional Office - Rochester
## 1269 Metropolitan Area Regional Office - New York City
## 1270                  Central New York Regional Office
## 1271 Metropolitan Area Regional Office - New York City
## 1272   Metropolitan Area Regional Office - Long Island
## 1273                  Central New York Regional Office
## 1274   Metropolitan Area Regional Office - Long Island
## 1275  Metropolitan Area Regional Office - New Rochelle
## 1276 Metropolitan Area Regional Office - New York City
## 1277 Metropolitan Area Regional Office - New York City
## 1278                 Western Regional Office - Buffalo
## 1279  Metropolitan Area Regional Office - New Rochelle
## 1280                  Central New York Regional Office
## 1281  Metropolitan Area Regional Office - New Rochelle
## 1282   Metropolitan Area Regional Office - Long Island
## 1283                  Capital District Regional Office
## 1284 Metropolitan Area Regional Office - New York City
## 1285                  Central New York Regional Office
## 1286                 Western Regional Office - Buffalo
## 1287               Western Regional Office - Rochester
## 1288                  Central New York Regional Office
## 1289 Metropolitan Area Regional Office - New York City
## 1290               Western Regional Office - Rochester
## 1291   Metropolitan Area Regional Office - Long Island
## 1292 Metropolitan Area Regional Office - New York City
## 1293               Western Regional Office - Rochester
## 1294  Metropolitan Area Regional Office - New Rochelle
## 1295 Metropolitan Area Regional Office - New York City
## 1296 Metropolitan Area Regional Office - New York City
## 1297                  Central New York Regional Office
## 1298                  Central New York Regional Office
## 1299  Metropolitan Area Regional Office - New Rochelle
## 1300                  Capital District Regional Office
## 1301  Metropolitan Area Regional Office - New Rochelle
## 1302 Metropolitan Area Regional Office - New York City
## 1303 Metropolitan Area Regional Office - New York City
## 1304                  Central New York Regional Office
## 1305 Metropolitan Area Regional Office - New York City
## 1306 Metropolitan Area Regional Office - New York City
## 1307                  Capital District Regional Office
## 1308                 Western Regional Office - Buffalo
## 1309                  Central New York Regional Office
## 1310   Metropolitan Area Regional Office - Long Island
## 1311               Western Regional Office - Rochester
## 1312 Metropolitan Area Regional Office - New York City
## 1313                  Capital District Regional Office
## 1314                  Capital District Regional Office
## 1315               Western Regional Office - Rochester
## 1316   Metropolitan Area Regional Office - Long Island
## 1317  Metropolitan Area Regional Office - New Rochelle
## 1318  Metropolitan Area Regional Office - New Rochelle
## 1319               Western Regional Office - Rochester
## 1320   Metropolitan Area Regional Office - Long Island
## 1321 Metropolitan Area Regional Office - New York City
## 1322 Metropolitan Area Regional Office - New York City
## 1323 Metropolitan Area Regional Office - New York City
## 1324               Western Regional Office - Rochester
## 1325                  Central New York Regional Office
## 1326 Metropolitan Area Regional Office - New York City
## 1327                  Capital District Regional Office
## 1328 Metropolitan Area Regional Office - New York City
## 1329  Metropolitan Area Regional Office - New Rochelle
## 1330                 Western Regional Office - Buffalo
## 1331 Metropolitan Area Regional Office - New York City
## 1332  Metropolitan Area Regional Office - New Rochelle
## 1333                  Central New York Regional Office
## 1334 Metropolitan Area Regional Office - New York City
## 1335  Metropolitan Area Regional Office - New Rochelle
## 1336 Metropolitan Area Regional Office - New York City
## 1337               Western Regional Office - Rochester
## 1338                  Central New York Regional Office
## 1339               Western Regional Office - Rochester
## 1340 Metropolitan Area Regional Office - New York City
## 1341 Metropolitan Area Regional Office - New York City
## 1342 Metropolitan Area Regional Office - New York City
## 1343  Metropolitan Area Regional Office - New Rochelle
## 1344                  Capital District Regional Office
## 1345                  Capital District Regional Office
## 1346  Metropolitan Area Regional Office - New Rochelle
## 1347                  Capital District Regional Office
## 1348                  Central New York Regional Office
## 1349                  Central New York Regional Office
## 1350 Metropolitan Area Regional Office - New York City
## 1351                  Capital District Regional Office
## 1352 Metropolitan Area Regional Office - New York City
## 1353                  Central New York Regional Office
## 1354 Metropolitan Area Regional Office - New York City
## 1355                  Central New York Regional Office
## 1356 Metropolitan Area Regional Office - New York City
## 1357 Metropolitan Area Regional Office - New York City
## 1358                  Central New York Regional Office
## 1359  Metropolitan Area Regional Office - New Rochelle
## 1360 Metropolitan Area Regional Office - New York City
## 1361                  Central New York Regional Office
## 1362 Metropolitan Area Regional Office - New York City
## 1363                  Central New York Regional Office
## 1364 Metropolitan Area Regional Office - New York City
## 1365                  Capital District Regional Office
## 1366 Metropolitan Area Regional Office - New York City
## 1367   Metropolitan Area Regional Office - Long Island
## 1368               Western Regional Office - Rochester
## 1369  Metropolitan Area Regional Office - New Rochelle
## 1370 Metropolitan Area Regional Office - New York City
## 1371                  Central New York Regional Office
## 1372                  Central New York Regional Office
## 1373                  Capital District Regional Office
## 1374 Metropolitan Area Regional Office - New York City
## 1375                  Capital District Regional Office
## 1376 Metropolitan Area Regional Office - New York City
## 1377                  Central New York Regional Office
## 1378                  Central New York Regional Office
## 1379 Metropolitan Area Regional Office - New York City
## 1380                  Central New York Regional Office
## 1381 Metropolitan Area Regional Office - New York City
## 1382 Metropolitan Area Regional Office - New York City
## 1383   Metropolitan Area Regional Office - Long Island
## 1384  Metropolitan Area Regional Office - New Rochelle
## 1385  Metropolitan Area Regional Office - New Rochelle
## 1386 Metropolitan Area Regional Office - New York City
## 1387   Metropolitan Area Regional Office - Long Island
## 1388   Metropolitan Area Regional Office - Long Island
## 1389 Metropolitan Area Regional Office - New York City
## 1390                  Capital District Regional Office
## 1391                  Capital District Regional Office
## 1392   Metropolitan Area Regional Office - Long Island
## 1393                  Central New York Regional Office
## 1394   Metropolitan Area Regional Office - Long Island
## 1395 Metropolitan Area Regional Office - New York City
## 1396 Metropolitan Area Regional Office - New York City
## 1397 Metropolitan Area Regional Office - New York City
## 1398               Western Regional Office - Rochester
## 1399                  Central New York Regional Office
## 1400   Metropolitan Area Regional Office - Long Island
## 1401               Western Regional Office - Rochester
## 1402                  Capital District Regional Office
## 1403                  Capital District Regional Office
## 1404 Metropolitan Area Regional Office - New York City
## 1405 Metropolitan Area Regional Office - New York City
## 1406                  Capital District Regional Office
## 1407 Metropolitan Area Regional Office - New York City
## 1408                  Capital District Regional Office
## 1409 Metropolitan Area Regional Office - New York City
## 1410                  Capital District Regional Office
## 1411 Metropolitan Area Regional Office - New York City
## 1412                  Capital District Regional Office
## 1413 Metropolitan Area Regional Office - New York City
## 1414 Metropolitan Area Regional Office - New York City
## 1415                  Central New York Regional Office
## 1416                  Capital District Regional Office
## 1417 Metropolitan Area Regional Office - New York City
## 1418 Metropolitan Area Regional Office - New York City
## 1419 Metropolitan Area Regional Office - New York City
## 1420                  Central New York Regional Office
## 1421                  Capital District Regional Office
## 1422 Metropolitan Area Regional Office - New York City
## 1423                  Central New York Regional Office
## 1424                  Central New York Regional Office
## 1425 Metropolitan Area Regional Office - New York City
## 1426                  Capital District Regional Office
## 1427               Western Regional Office - Rochester
## 1428 Metropolitan Area Regional Office - New York City
## 1429  Metropolitan Area Regional Office - New Rochelle
## 1430                  Central New York Regional Office
## 1431  Metropolitan Area Regional Office - New Rochelle
## 1432               Western Regional Office - Rochester
## 1433               Western Regional Office - Rochester
## 1434 Metropolitan Area Regional Office - New York City
## 1435  Metropolitan Area Regional Office - New Rochelle
## 1436 Metropolitan Area Regional Office - New York City
## 1437               Western Regional Office - Rochester
## 1438  Metropolitan Area Regional Office - New Rochelle
## 1439                 Western Regional Office - Buffalo
## 1440               Western Regional Office - Rochester
## 1441   Metropolitan Area Regional Office - Long Island
## 1442                  Central New York Regional Office
## 1443 Metropolitan Area Regional Office - New York City
## 1444                  Capital District Regional Office
## 1445 Metropolitan Area Regional Office - New York City
## 1446 Metropolitan Area Regional Office - New York City
## 1447                  Capital District Regional Office
## 1448                  Central New York Regional Office
## 1449  Metropolitan Area Regional Office - New Rochelle
## 1450                  Capital District Regional Office
## 1451 Metropolitan Area Regional Office - New York City
## 1452 Metropolitan Area Regional Office - New York City
## 1453 Metropolitan Area Regional Office - New York City
## 1454 Metropolitan Area Regional Office - New York City
## 1455                  Central New York Regional Office
## 1456               Western Regional Office - Rochester
## 1457                  Capital District Regional Office
## 1458               Western Regional Office - Rochester
## 1459                 Western Regional Office - Buffalo
## 1460                  Central New York Regional Office
## 1461  Metropolitan Area Regional Office - New Rochelle
## 1462  Metropolitan Area Regional Office - New Rochelle
## 1463               Western Regional Office - Rochester
## 1464                  Central New York Regional Office
## 1465  Metropolitan Area Regional Office - New Rochelle
## 1466  Metropolitan Area Regional Office - New Rochelle
## 1467                 Western Regional Office - Buffalo
## 1468                  Central New York Regional Office
## 1469   Metropolitan Area Regional Office - Long Island
## 1470  Metropolitan Area Regional Office - New Rochelle
## 1471 Metropolitan Area Regional Office - New York City
## 1472                  Capital District Regional Office
## 1473                 Western Regional Office - Buffalo
## 1474                  Central New York Regional Office
## 1475                 Western Regional Office - Buffalo
## 1476                  Capital District Regional Office
## 1477 Metropolitan Area Regional Office - New York City
## 1478 Metropolitan Area Regional Office - New York City
## 1479  Metropolitan Area Regional Office - New Rochelle
## 1480  Metropolitan Area Regional Office - New Rochelle
## 1481  Metropolitan Area Regional Office - New Rochelle
## 1482                 Western Regional Office - Buffalo
## 1483 Metropolitan Area Regional Office - New York City
## 1484                  Central New York Regional Office
## 1485               Western Regional Office - Rochester
## 1486  Metropolitan Area Regional Office - New Rochelle
## 1487 Metropolitan Area Regional Office - New York City
## 1488 Metropolitan Area Regional Office - New York City
## 1489 Metropolitan Area Regional Office - New York City
## 1490 Metropolitan Area Regional Office - New York City
## 1491  Metropolitan Area Regional Office - New Rochelle
## 1492   Metropolitan Area Regional Office - Long Island
## 1493               Western Regional Office - Rochester
## 1494                 Western Regional Office - Buffalo
## 1495   Metropolitan Area Regional Office - Long Island
## 1496   Metropolitan Area Regional Office - Long Island
## 1497  Metropolitan Area Regional Office - New Rochelle
## 1498   Metropolitan Area Regional Office - Long Island
## 1499                  Central New York Regional Office
## 1500                 Western Regional Office - Buffalo
## 1501                 Western Regional Office - Buffalo
## 1502 Metropolitan Area Regional Office - New York City
## 1503  Metropolitan Area Regional Office - New Rochelle
## 1504                  Central New York Regional Office
## 1505  Metropolitan Area Regional Office - New Rochelle
## 1506                  Central New York Regional Office
## 1507                  Capital District Regional Office
## 1508   Metropolitan Area Regional Office - Long Island
## 1509   Metropolitan Area Regional Office - Long Island
## 1510                  Central New York Regional Office
## 1511               Western Regional Office - Rochester
## 1512 Metropolitan Area Regional Office - New York City
## 1513 Metropolitan Area Regional Office - New York City
## 1514               Western Regional Office - Rochester
## 1515                  Capital District Regional Office
## 1516 Metropolitan Area Regional Office - New York City
## 1517                  Capital District Regional Office
## 1518 Metropolitan Area Regional Office - New York City
## 1519 Metropolitan Area Regional Office - New York City
## 1520 Metropolitan Area Regional Office - New York City
## 1521 Metropolitan Area Regional Office - New York City
## 1522  Metropolitan Area Regional Office - New Rochelle
## 1523 Metropolitan Area Regional Office - New York City
## 1524               Western Regional Office - Rochester
## 1525 Metropolitan Area Regional Office - New York City
## 1526  Metropolitan Area Regional Office - New Rochelle
## 1527 Metropolitan Area Regional Office - New York City
## 1528   Metropolitan Area Regional Office - Long Island
## 1529   Metropolitan Area Regional Office - Long Island
## 1530                 Western Regional Office - Buffalo
## 1531 Metropolitan Area Regional Office - New York City
## 1532  Metropolitan Area Regional Office - New Rochelle
## 1533               Western Regional Office - Rochester
## 1534 Metropolitan Area Regional Office - New York City
## 1535 Metropolitan Area Regional Office - New York City
## 1536  Metropolitan Area Regional Office - New Rochelle
## 1537 Metropolitan Area Regional Office - New York City
## 1538               Western Regional Office - Rochester
## 1539                 Western Regional Office - Buffalo
## 1540               Western Regional Office - Rochester
## 1541   Metropolitan Area Regional Office - Long Island
## 1542                  Capital District Regional Office
## 1543                  Capital District Regional Office
## 1544   Metropolitan Area Regional Office - Long Island
## 1545 Metropolitan Area Regional Office - New York City
## 1546                 Western Regional Office - Buffalo
## 1547 Metropolitan Area Regional Office - New York City
## 1548                  Capital District Regional Office
## 1549 Metropolitan Area Regional Office - New York City
## 1550               Western Regional Office - Rochester
## 1551   Metropolitan Area Regional Office - Long Island
## 1552                  Capital District Regional Office
## 1553                  Capital District Regional Office
## 1554               Western Regional Office - Rochester
## 1555 Metropolitan Area Regional Office - New York City
## 1556  Metropolitan Area Regional Office - New Rochelle
## 1557 Metropolitan Area Regional Office - New York City
## 1558 Metropolitan Area Regional Office - New York City
## 1559  Metropolitan Area Regional Office - New Rochelle
## 1560 Metropolitan Area Regional Office - New York City
## 1561                 Western Regional Office - Buffalo
## 1562  Metropolitan Area Regional Office - New Rochelle
## 1563 Metropolitan Area Regional Office - New York City
## 1564 Metropolitan Area Regional Office - New York City
## 1565                 Western Regional Office - Buffalo
## 1566   Metropolitan Area Regional Office - Long Island
## 1567 Metropolitan Area Regional Office - New York City
## 1568   Metropolitan Area Regional Office - Long Island
## 1569                  Central New York Regional Office
## 1570                  Central New York Regional Office
## 1571               Western Regional Office - Rochester
## 1572 Metropolitan Area Regional Office - New York City
## 1573 Metropolitan Area Regional Office - New York City
## 1574 Metropolitan Area Regional Office - New York City
## 1575  Metropolitan Area Regional Office - New Rochelle
## 1576 Metropolitan Area Regional Office - New York City
## 1577   Metropolitan Area Regional Office - Long Island
## 1578                  Central New York Regional Office
## 1579 Metropolitan Area Regional Office - New York City
## 1580 Metropolitan Area Regional Office - New York City
## 1581               Western Regional Office - Rochester
## 1582                  Capital District Regional Office
## 1583   Metropolitan Area Regional Office - Long Island
## 1584 Metropolitan Area Regional Office - New York City
## 1585               Western Regional Office - Rochester
## 1586   Metropolitan Area Regional Office - Long Island
## 1587               Western Regional Office - Rochester
## 1588                  Capital District Regional Office
## 1589                  Central New York Regional Office
## 1590                 Western Regional Office - Buffalo
## 1591                 Western Regional Office - Buffalo
## 1592                  Central New York Regional Office
## 1593 Metropolitan Area Regional Office - New York City
## 1594                 Western Regional Office - Buffalo
## 1595                  Capital District Regional Office
## 1596 Metropolitan Area Regional Office - New York City
## 1597   Metropolitan Area Regional Office - Long Island
## 1598                 Western Regional Office - Buffalo
## 1599   Metropolitan Area Regional Office - Long Island
## 1600  Metropolitan Area Regional Office - New Rochelle
## 1601 Metropolitan Area Regional Office - New York City
## 1602                  Capital District Regional Office
## 1603   Metropolitan Area Regional Office - Long Island
## 1604 Metropolitan Area Regional Office - New York City
## 1605                  Capital District Regional Office
## 1606 Metropolitan Area Regional Office - New York City
## 1607   Metropolitan Area Regional Office - Long Island
## 1608  Metropolitan Area Regional Office - New Rochelle
## 1609 Metropolitan Area Regional Office - New York City
## 1610 Metropolitan Area Regional Office - New York City
## 1611 Metropolitan Area Regional Office - New York City
## 1612 Metropolitan Area Regional Office - New York City
## 1613 Metropolitan Area Regional Office - New York City
## 1614   Metropolitan Area Regional Office - Long Island
## 1615   Metropolitan Area Regional Office - Long Island
## 1616 Metropolitan Area Regional Office - New York City
## 1617                  Capital District Regional Office
## 1618               Western Regional Office - Rochester
## 1619                  Capital District Regional Office
## 1620 Metropolitan Area Regional Office - New York City
## 1621                  Capital District Regional Office
## 1622               Western Regional Office - Rochester
## 1623 Metropolitan Area Regional Office - New York City
## 1624                  Central New York Regional Office
## 1625                 Western Regional Office - Buffalo
## 1626                  Capital District Regional Office
## 1627 Metropolitan Area Regional Office - New York City
## 1628 Metropolitan Area Regional Office - New York City
## 1629 Metropolitan Area Regional Office - New York City
## 1630                  Capital District Regional Office
## 1631                 Western Regional Office - Buffalo
## 1632 Metropolitan Area Regional Office - New York City
## 1633 Metropolitan Area Regional Office - New York City
## 1634 Metropolitan Area Regional Office - New York City
## 1635 Metropolitan Area Regional Office - New York City
## 1636 Metropolitan Area Regional Office - New York City
## 1637                  Capital District Regional Office
## 1638 Metropolitan Area Regional Office - New York City
## 1639                  Capital District Regional Office
## 1640   Metropolitan Area Regional Office - Long Island
## 1641                  Capital District Regional Office
## 1642 Metropolitan Area Regional Office - New York City
## 1643               Western Regional Office - Rochester
## 1644  Metropolitan Area Regional Office - New Rochelle
## 1645                  Central New York Regional Office
## 1646  Metropolitan Area Regional Office - New Rochelle
## 1647 Metropolitan Area Regional Office - New York City
## 1648 Metropolitan Area Regional Office - New York City
## 1649 Metropolitan Area Regional Office - New York City
## 1650  Metropolitan Area Regional Office - New Rochelle
## 1651 Metropolitan Area Regional Office - New York City
## 1652 Metropolitan Area Regional Office - New York City
## 1653  Metropolitan Area Regional Office - New Rochelle
## 1654  Metropolitan Area Regional Office - New Rochelle
## 1655   Metropolitan Area Regional Office - Long Island
## 1656 Metropolitan Area Regional Office - New York City
## 1657  Metropolitan Area Regional Office - New Rochelle
## 1658  Metropolitan Area Regional Office - New Rochelle
## 1659   Metropolitan Area Regional Office - Long Island
## 1660                  Capital District Regional Office
## 1661 Metropolitan Area Regional Office - New York City
## 1662                  Capital District Regional Office
## 1663                  Capital District Regional Office
## 1664 Metropolitan Area Regional Office - New York City
## 1665                  Central New York Regional Office
## 1666               Western Regional Office - Rochester
## 1667 Metropolitan Area Regional Office - New York City
## 1668                 Western Regional Office - Buffalo
## 1669                  Central New York Regional Office
## 1670 Metropolitan Area Regional Office - New York City
## 1671   Metropolitan Area Regional Office - Long Island
## 1672                  Capital District Regional Office
## 1673                  Central New York Regional Office
## 1674               Western Regional Office - Rochester
## 1675                  Central New York Regional Office
## 1676  Metropolitan Area Regional Office - New Rochelle
## 1677                  Capital District Regional Office
## 1678 Metropolitan Area Regional Office - New York City
## 1679                  Capital District Regional Office
## 1680  Metropolitan Area Regional Office - New Rochelle
## 1681                  Capital District Regional Office
## 1682 Metropolitan Area Regional Office - New York City
## 1683                  Capital District Regional Office
## 1684 Metropolitan Area Regional Office - New York City
## 1685 Metropolitan Area Regional Office - New York City
## 1686               Western Regional Office - Rochester
## 1687   Metropolitan Area Regional Office - Long Island
## 1688   Metropolitan Area Regional Office - Long Island
## 1689               Western Regional Office - Rochester
## 1690                 Western Regional Office - Buffalo
## 1691                  Central New York Regional Office
## 1692 Metropolitan Area Regional Office - New York City
## 1693   Metropolitan Area Regional Office - Long Island
## 1694                  Central New York Regional Office
## 1695 Metropolitan Area Regional Office - New York City
## 1696                  Central New York Regional Office
## 1697                  Central New York Regional Office
## 1698   Metropolitan Area Regional Office - Long Island
## 1699                  Capital District Regional Office
## 1700 Metropolitan Area Regional Office - New York City
## 1701                 Western Regional Office - Buffalo
## 1702                  Capital District Regional Office
## 1703 Metropolitan Area Regional Office - New York City
## 1704 Metropolitan Area Regional Office - New York City
## 1705                  Central New York Regional Office
## 1706 Metropolitan Area Regional Office - New York City
## 1707 Metropolitan Area Regional Office - New York City
## 1708 Metropolitan Area Regional Office - New York City
## 1709   Metropolitan Area Regional Office - Long Island
## 1710 Metropolitan Area Regional Office - New York City
## 1711 Metropolitan Area Regional Office - New York City
## 1712                  Capital District Regional Office
## 1713                  Capital District Regional Office
## 1714 Metropolitan Area Regional Office - New York City
## 1715 Metropolitan Area Regional Office - New York City
## 1716                 Western Regional Office - Buffalo
## 1717                  Central New York Regional Office
## 1718 Metropolitan Area Regional Office - New York City
## 1719   Metropolitan Area Regional Office - Long Island
## 1720 Metropolitan Area Regional Office - New York City
## 1721   Metropolitan Area Regional Office - Long Island
## 1722                  Central New York Regional Office
## 1723 Metropolitan Area Regional Office - New York City
## 1724 Metropolitan Area Regional Office - New York City
## 1725  Metropolitan Area Regional Office - New Rochelle
## 1726                  Central New York Regional Office
## 1727                  Capital District Regional Office
## 1728 Metropolitan Area Regional Office - New York City
## 1729                  Central New York Regional Office
## 1730   Metropolitan Area Regional Office - Long Island
## 1731                  Central New York Regional Office
## 1732  Metropolitan Area Regional Office - New Rochelle
## 1733 Metropolitan Area Regional Office - New York City
## 1734   Metropolitan Area Regional Office - Long Island
## 1735                 Western Regional Office - Buffalo
## 1736               Western Regional Office - Rochester
## 1737                  Capital District Regional Office
## 1738 Metropolitan Area Regional Office - New York City
## 1739 Metropolitan Area Regional Office - New York City
## 1740                  Central New York Regional Office
## 1741                  Capital District Regional Office
## 1742 Metropolitan Area Regional Office - New York City
## 1743               Western Regional Office - Rochester
## 1744                 Western Regional Office - Buffalo
## 1745 Metropolitan Area Regional Office - New York City
## 1746  Metropolitan Area Regional Office - New Rochelle
## 1747                  Central New York Regional Office
## 1748                  Central New York Regional Office
## 1749 Metropolitan Area Regional Office - New York City
## 1750                  Capital District Regional Office
## 1751               Western Regional Office - Rochester
## 1752  Metropolitan Area Regional Office - New Rochelle
## 1753 Metropolitan Area Regional Office - New York City
## 1754  Metropolitan Area Regional Office - New Rochelle
## 1755                  Capital District Regional Office
## 1756                  Central New York Regional Office
## 1757   Metropolitan Area Regional Office - Long Island
## 1758  Metropolitan Area Regional Office - New Rochelle
## 1759 Metropolitan Area Regional Office - New York City
## 1760                  Capital District Regional Office
## 1761 Metropolitan Area Regional Office - New York City
## 1762 Metropolitan Area Regional Office - New York City
## 1763 Metropolitan Area Regional Office - New York City
## 1764   Metropolitan Area Regional Office - Long Island
## 1765                  Central New York Regional Office
## 1766  Metropolitan Area Regional Office - New Rochelle
## 1767  Metropolitan Area Regional Office - New Rochelle
## 1768                 Western Regional Office - Buffalo
## 1769                  Capital District Regional Office
## 1770   Metropolitan Area Regional Office - Long Island
## 1771               Western Regional Office - Rochester
## 1772 Metropolitan Area Regional Office - New York City
## 1773               Western Regional Office - Rochester
## 1774                  Capital District Regional Office
## 1775 Metropolitan Area Regional Office - New York City
## 1776                  Central New York Regional Office
## 1777               Western Regional Office - Rochester
## 1778                 Western Regional Office - Buffalo
## 1779                  Central New York Regional Office
## 1780               Western Regional Office - Rochester
## 1781   Metropolitan Area Regional Office - Long Island
## 1782 Metropolitan Area Regional Office - New York City
## 1783                  Capital District Regional Office
## 1784               Western Regional Office - Rochester
## 1785 Metropolitan Area Regional Office - New York City
## 1786  Metropolitan Area Regional Office - New Rochelle
## 1787               Western Regional Office - Rochester
## 1788                 Western Regional Office - Buffalo
## 1789               Western Regional Office - Rochester
## 1790 Metropolitan Area Regional Office - New York City
## 1791                  Capital District Regional Office
## 1792   Metropolitan Area Regional Office - Long Island
## 1793 Metropolitan Area Regional Office - New York City
## 1794                  Central New York Regional Office
## 1795   Metropolitan Area Regional Office - Long Island
## 1796                  Central New York Regional Office
## 1797                  Central New York Regional Office
## 1798   Metropolitan Area Regional Office - Long Island
## 1799                  Capital District Regional Office
## 1800                  Central New York Regional Office
## 1801 Metropolitan Area Regional Office - New York City
## 1802                 Western Regional Office - Buffalo
## 1803 Metropolitan Area Regional Office - New York City
## 1804                  Capital District Regional Office
## 1805               Western Regional Office - Rochester
## 1806 Metropolitan Area Regional Office - New York City
## 1807 Metropolitan Area Regional Office - New York City
## 1808               Western Regional Office - Rochester
## 1809   Metropolitan Area Regional Office - Long Island
## 1810   Metropolitan Area Regional Office - Long Island
## 1811   Metropolitan Area Regional Office - Long Island
## 1812 Metropolitan Area Regional Office - New York City
## 1813                  Capital District Regional Office
## 1814                 Western Regional Office - Buffalo
## 1815 Metropolitan Area Regional Office - New York City
## 1816  Metropolitan Area Regional Office - New Rochelle
## 1817 Metropolitan Area Regional Office - New York City
## 1818                  Central New York Regional Office
## 1819 Metropolitan Area Regional Office - New York City
## 1820                  Capital District Regional Office
## 1821   Metropolitan Area Regional Office - Long Island
## 1822 Metropolitan Area Regional Office - New York City
## 1823  Metropolitan Area Regional Office - New Rochelle
## 1824 Metropolitan Area Regional Office - New York City
## 1825                  Central New York Regional Office
## 1826               Western Regional Office - Rochester
## 1827 Metropolitan Area Regional Office - New York City
## 1828                  Capital District Regional Office
## 1829                  Capital District Regional Office
## 1830  Metropolitan Area Regional Office - New Rochelle
## 1831               Western Regional Office - Rochester
## 1832                  Central New York Regional Office
## 1833 Metropolitan Area Regional Office - New York City
## 1834 Metropolitan Area Regional Office - New York City
## 1835                  Capital District Regional Office
## 1836  Metropolitan Area Regional Office - New Rochelle
## 1837                 Western Regional Office - Buffalo
## 1838                  Central New York Regional Office
## 1839                  Capital District Regional Office
## 1840  Metropolitan Area Regional Office - New Rochelle
## 1841                  Capital District Regional Office
## 1842 Metropolitan Area Regional Office - New York City
## 1843   Metropolitan Area Regional Office - Long Island
## 1844 Metropolitan Area Regional Office - New York City
## 1845 Metropolitan Area Regional Office - New York City
## 1846                  Capital District Regional Office
## 1847                  Capital District Regional Office
## 1848                  Capital District Regional Office
## 1849                  Central New York Regional Office
## 1850                  Central New York Regional Office
## 1851  Metropolitan Area Regional Office - New Rochelle
## 1852                 Western Regional Office - Buffalo
## 1853 Metropolitan Area Regional Office - New York City
## 1854  Metropolitan Area Regional Office - New Rochelle
## 1855 Metropolitan Area Regional Office - New York City
## 1856               Western Regional Office - Rochester
## 1857  Metropolitan Area Regional Office - New Rochelle
## 1858 Metropolitan Area Regional Office - New York City
## 1859 Metropolitan Area Regional Office - New York City
## 1860 Metropolitan Area Regional Office - New York City
## 1861 Metropolitan Area Regional Office - New York City
## 1862 Metropolitan Area Regional Office - New York City
## 1863 Metropolitan Area Regional Office - New York City
## 1864 Metropolitan Area Regional Office - New York City
## 1865                  Central New York Regional Office
## 1866  Metropolitan Area Regional Office - New Rochelle
## 1867 Metropolitan Area Regional Office - New York City
## 1868                 Western Regional Office - Buffalo
## 1869 Metropolitan Area Regional Office - New York City
## 1870 Metropolitan Area Regional Office - New York City
## 1871  Metropolitan Area Regional Office - New Rochelle
## 1872               Western Regional Office - Rochester
## 1873                  Capital District Regional Office
## 1874 Metropolitan Area Regional Office - New York City
## 1875                  Central New York Regional Office
## 1876                 Western Regional Office - Buffalo
## 1877                  Central New York Regional Office
## 1878 Metropolitan Area Regional Office - New York City
## 1879 Metropolitan Area Regional Office - New York City
## 1880                 Western Regional Office - Buffalo
## 1881                 Western Regional Office - Buffalo
## 1882                  Capital District Regional Office
## 1883               Western Regional Office - Rochester
## 1884  Metropolitan Area Regional Office - New Rochelle
## 1885                  Central New York Regional Office
## 1886   Metropolitan Area Regional Office - Long Island
## 1887                  Central New York Regional Office
## 1888   Metropolitan Area Regional Office - Long Island
## 1889 Metropolitan Area Regional Office - New York City
## 1890   Metropolitan Area Regional Office - Long Island
## 1891                  Central New York Regional Office
## 1892                  Central New York Regional Office
## 1893                  Capital District Regional Office
## 1894                  Central New York Regional Office
## 1895                  Capital District Regional Office
## 1896                  Capital District Regional Office
## 1897 Metropolitan Area Regional Office - New York City
## 1898                 Western Regional Office - Buffalo
## 1899 Metropolitan Area Regional Office - New York City
## 1900                  Central New York Regional Office
## 1901                  Central New York Regional Office
## 1902 Metropolitan Area Regional Office - New York City
## 1903 Metropolitan Area Regional Office - New York City
## 1904               Western Regional Office - Rochester
## 1905                  Capital District Regional Office
## 1906 Metropolitan Area Regional Office - New York City
## 1907 Metropolitan Area Regional Office - New York City
## 1908  Metropolitan Area Regional Office - New Rochelle
## 1909 Metropolitan Area Regional Office - New York City
## 1910  Metropolitan Area Regional Office - New Rochelle
## 1911  Metropolitan Area Regional Office - New Rochelle
## 1912                  Central New York Regional Office
## 1913 Metropolitan Area Regional Office - New York City
## 1914 Metropolitan Area Regional Office - New York City
## 1915                  Central New York Regional Office
## 1916   Metropolitan Area Regional Office - Long Island
## 1917                  Capital District Regional Office
## 1918 Metropolitan Area Regional Office - New York City
## 1919                  Capital District Regional Office
## 1920                 Western Regional Office - Buffalo
## 1921   Metropolitan Area Regional Office - Long Island
## 1922   Metropolitan Area Regional Office - Long Island
## 1923 Metropolitan Area Regional Office - New York City
## 1924 Metropolitan Area Regional Office - New York City
## 1925                  Capital District Regional Office
## 1926 Metropolitan Area Regional Office - New York City
## 1927                 Western Regional Office - Buffalo
## 1928  Metropolitan Area Regional Office - New Rochelle
## 1929 Metropolitan Area Regional Office - New York City
## 1930               Western Regional Office - Rochester
## 1931   Metropolitan Area Regional Office - Long Island
## 1932 Metropolitan Area Regional Office - New York City
## 1933 Metropolitan Area Regional Office - New York City
## 1934 Metropolitan Area Regional Office - New York City
## 1935               Western Regional Office - Rochester
## 1936                  Central New York Regional Office
## 1937 Metropolitan Area Regional Office - New York City
## 1938 Metropolitan Area Regional Office - New York City
## 1939                 Western Regional Office - Buffalo
## 1940                  Central New York Regional Office
## 1941                  Central New York Regional Office
## 1942                  Central New York Regional Office
## 1943                 Western Regional Office - Buffalo
## 1944                 Western Regional Office - Buffalo
## 1945                 Western Regional Office - Buffalo
## 1946 Metropolitan Area Regional Office - New York City
## 1947   Metropolitan Area Regional Office - Long Island
## 1948   Metropolitan Area Regional Office - Long Island
## 1949                 Western Regional Office - Buffalo
## 1950 Metropolitan Area Regional Office - New York City
## 1951                  Capital District Regional Office
## 1952                 Western Regional Office - Buffalo
## 1953                 Western Regional Office - Buffalo
## 1954  Metropolitan Area Regional Office - New Rochelle
## 1955                  Capital District Regional Office
## 1956 Metropolitan Area Regional Office - New York City
## 1957                 Western Regional Office - Buffalo
## 1958   Metropolitan Area Regional Office - Long Island
## 1959               Western Regional Office - Rochester
## 1960                  Central New York Regional Office
## 1961 Metropolitan Area Regional Office - New York City
## 1962                 Western Regional Office - Buffalo
## 1963   Metropolitan Area Regional Office - Long Island
## 1964                  Capital District Regional Office
## 1965   Metropolitan Area Regional Office - Long Island
## 1966                 Western Regional Office - Buffalo
## 1967 Metropolitan Area Regional Office - New York City
## 1968                  Central New York Regional Office
## 1969                  Central New York Regional Office
## 1970  Metropolitan Area Regional Office - New Rochelle
## 1971 Metropolitan Area Regional Office - New York City
## 1972                  Central New York Regional Office
## 1973 Metropolitan Area Regional Office - New York City
## 1974   Metropolitan Area Regional Office - Long Island
## 1975 Metropolitan Area Regional Office - New York City
## 1976                  Capital District Regional Office
## 1977                  Capital District Regional Office
## 1978 Metropolitan Area Regional Office - New York City
## 1979                  Capital District Regional Office
## 1980                  Capital District Regional Office
## 1981  Metropolitan Area Regional Office - New Rochelle
## 1982 Metropolitan Area Regional Office - New York City
## 1983               Western Regional Office - Rochester
## 1984                 Western Regional Office - Buffalo
## 1985                  Central New York Regional Office
## 1986                  Capital District Regional Office
## 1987 Metropolitan Area Regional Office - New York City
## 1988  Metropolitan Area Regional Office - New Rochelle
## 1989 Metropolitan Area Regional Office - New York City
## 1990   Metropolitan Area Regional Office - Long Island
## 1991                  Capital District Regional Office
## 1992                  Central New York Regional Office
## 1993  Metropolitan Area Regional Office - New Rochelle
## 1994  Metropolitan Area Regional Office - New Rochelle
## 1995  Metropolitan Area Regional Office - New Rochelle
## 1996                  Central New York Regional Office
## 1997                  Capital District Regional Office
## 1998 Metropolitan Area Regional Office - New York City
## 1999  Metropolitan Area Regional Office - New Rochelle
## 2000               Western Regional Office - Rochester
## 2001 Metropolitan Area Regional Office - New York City
## 2002 Metropolitan Area Regional Office - New York City
## 2003                 Western Regional Office - Buffalo
## 2004  Metropolitan Area Regional Office - New Rochelle
## 2005                  Capital District Regional Office
## 2006 Metropolitan Area Regional Office - New York City
## 2007 Metropolitan Area Regional Office - New York City
## 2008                  Central New York Regional Office
## 2009   Metropolitan Area Regional Office - Long Island
## 2010  Metropolitan Area Regional Office - New Rochelle
## 2011  Metropolitan Area Regional Office - New Rochelle
## 2012 Metropolitan Area Regional Office - New York City
## 2013 Metropolitan Area Regional Office - New York City
## 2014  Metropolitan Area Regional Office - New Rochelle
## 2015                  Central New York Regional Office
## 2016               Western Regional Office - Rochester
## 2017  Metropolitan Area Regional Office - New Rochelle
## 2018                  Capital District Regional Office
## 2019               Western Regional Office - Rochester
## 2020  Metropolitan Area Regional Office - New Rochelle
## 2021                  Capital District Regional Office
## 2022 Metropolitan Area Regional Office - New York City
## 2023                 Western Regional Office - Buffalo
## 2024               Western Regional Office - Rochester
## 2025   Metropolitan Area Regional Office - Long Island
## 2026                 Western Regional Office - Buffalo
## 2027 Metropolitan Area Regional Office - New York City
## 2028 Metropolitan Area Regional Office - New York City
## 2029                 Western Regional Office - Buffalo
## 2030 Metropolitan Area Regional Office - New York City
## 2031                  Capital District Regional Office
## 2032 Metropolitan Area Regional Office - New York City
## 2033               Western Regional Office - Rochester
## 2034                 Western Regional Office - Buffalo
## 2035 Metropolitan Area Regional Office - New York City
## 2036                  Capital District Regional Office
## 2037               Western Regional Office - Rochester
## 2038 Metropolitan Area Regional Office - New York City
## 2039 Metropolitan Area Regional Office - New York City
## 2040 Metropolitan Area Regional Office - New York City
## 2041 Metropolitan Area Regional Office - New York City
## 2042                  Central New York Regional Office
## 2043   Metropolitan Area Regional Office - Long Island
## 2044 Metropolitan Area Regional Office - New York City
## 2045 Metropolitan Area Regional Office - New York City
## 2046 Metropolitan Area Regional Office - New York City
## 2047 Metropolitan Area Regional Office - New York City
## 2048 Metropolitan Area Regional Office - New York City
## 2049  Metropolitan Area Regional Office - New Rochelle
## 2050               Western Regional Office - Rochester
## 2051                  Capital District Regional Office
## 2052                  Central New York Regional Office
## 2053 Metropolitan Area Regional Office - New York City
## 2054   Metropolitan Area Regional Office - Long Island
## 2055                  Central New York Regional Office
## 2056               Western Regional Office - Rochester
## 2057               Western Regional Office - Rochester
## 2058               Western Regional Office - Rochester
## 2059 Metropolitan Area Regional Office - New York City
## 2060                  Central New York Regional Office
## 2061                  Central New York Regional Office
## 2062                 Western Regional Office - Buffalo
## 2063 Metropolitan Area Regional Office - New York City
## 2064 Metropolitan Area Regional Office - New York City
## 2065                  Central New York Regional Office
## 2066                 Western Regional Office - Buffalo
## 2067 Metropolitan Area Regional Office - New York City
## 2068 Metropolitan Area Regional Office - New York City
## 2069 Metropolitan Area Regional Office - New York City
## 2070 Metropolitan Area Regional Office - New York City
## 2071 Metropolitan Area Regional Office - New York City
## 2072 Metropolitan Area Regional Office - New York City
## 2073  Metropolitan Area Regional Office - New Rochelle
## 2074 Metropolitan Area Regional Office - New York City
## 2075  Metropolitan Area Regional Office - New Rochelle
## 2076   Metropolitan Area Regional Office - Long Island
## 2077 Metropolitan Area Regional Office - New York City
## 2078               Western Regional Office - Rochester
## 2079               Western Regional Office - Rochester
## 2080 Metropolitan Area Regional Office - New York City
## 2081                  Capital District Regional Office
## 2082 Metropolitan Area Regional Office - New York City
## 2083                 Western Regional Office - Buffalo
## 2084                  Capital District Regional Office
## 2085                 Western Regional Office - Buffalo
## 2086                 Western Regional Office - Buffalo
## 2087                  Central New York Regional Office
## 2088                  Central New York Regional Office
## 2089 Metropolitan Area Regional Office - New York City
## 2090   Metropolitan Area Regional Office - Long Island
## 2091                  Capital District Regional Office
## 2092 Metropolitan Area Regional Office - New York City
## 2093                  Capital District Regional Office
## 2094 Metropolitan Area Regional Office - New York City
## 2095 Metropolitan Area Regional Office - New York City
## 2096               Western Regional Office - Rochester
## 2097               Western Regional Office - Rochester
## 2098   Metropolitan Area Regional Office - Long Island
## 2099               Western Regional Office - Rochester
## 2100                  Capital District Regional Office
## 2101  Metropolitan Area Regional Office - New Rochelle
## 2102 Metropolitan Area Regional Office - New York City
## 2103                  Capital District Regional Office
## 2104                  Central New York Regional Office
## 2105               Western Regional Office - Rochester
## 2106   Metropolitan Area Regional Office - Long Island
## 2107 Metropolitan Area Regional Office - New York City
## 2108                  Central New York Regional Office
## 2109                  Central New York Regional Office
## 2110 Metropolitan Area Regional Office - New York City
## 2111  Metropolitan Area Regional Office - New Rochelle
## 2112 Metropolitan Area Regional Office - New York City
## 2113 Metropolitan Area Regional Office - New York City
## 2114                  Central New York Regional Office
## 2115                  Central New York Regional Office
## 2116 Metropolitan Area Regional Office - New York City
## 2117                  Central New York Regional Office
## 2118                  Capital District Regional Office
## 2119                  Central New York Regional Office
## 2120  Metropolitan Area Regional Office - New Rochelle
## 2121 Metropolitan Area Regional Office - New York City
## 2122                  Central New York Regional Office
## 2123                  Capital District Regional Office
## 2124 Metropolitan Area Regional Office - New York City
## 2125 Metropolitan Area Regional Office - New York City
## 2126               Western Regional Office - Rochester
## 2127   Metropolitan Area Regional Office - Long Island
## 2128                  Capital District Regional Office
## 2129 Metropolitan Area Regional Office - New York City
## 2130  Metropolitan Area Regional Office - New Rochelle
## 2131                  Capital District Regional Office
## 2132 Metropolitan Area Regional Office - New York City
## 2133                 Western Regional Office - Buffalo
## 2134                 Western Regional Office - Buffalo
## 2135  Metropolitan Area Regional Office - New Rochelle
## 2136  Metropolitan Area Regional Office - New Rochelle
## 2137   Metropolitan Area Regional Office - Long Island
## 2138 Metropolitan Area Regional Office - New York City
## 2139                 Western Regional Office - Buffalo
## 2140                  Central New York Regional Office
## 2141 Metropolitan Area Regional Office - New York City
## 2142                  Capital District Regional Office
## 2143 Metropolitan Area Regional Office - New York City
## 2144                  Capital District Regional Office
## 2145 Metropolitan Area Regional Office - New York City
## 2146   Metropolitan Area Regional Office - Long Island
## 2147                 Western Regional Office - Buffalo
## 2148               Western Regional Office - Rochester
## 2149               Western Regional Office - Rochester
## 2150                 Western Regional Office - Buffalo
## 2151                  Central New York Regional Office
## 2152  Metropolitan Area Regional Office - New Rochelle
## 2153 Metropolitan Area Regional Office - New York City
## 2154                 Western Regional Office - Buffalo
## 2155                 Western Regional Office - Buffalo
## 2156                  Capital District Regional Office
## 2157  Metropolitan Area Regional Office - New Rochelle
## 2158 Metropolitan Area Regional Office - New York City
## 2159                  Central New York Regional Office
## 2160                  Central New York Regional Office
## 2161   Metropolitan Area Regional Office - Long Island
## 2162  Metropolitan Area Regional Office - New Rochelle
## 2163                 Western Regional Office - Buffalo
## 2164  Metropolitan Area Regional Office - New Rochelle
## 2165 Metropolitan Area Regional Office - New York City
## 2166 Metropolitan Area Regional Office - New York City
## 2167   Metropolitan Area Regional Office - Long Island
## 2168                  Central New York Regional Office
## 2169                  Capital District Regional Office
## 2170   Metropolitan Area Regional Office - Long Island
## 2171                  Capital District Regional Office
## 2172 Metropolitan Area Regional Office - New York City
## 2173 Metropolitan Area Regional Office - New York City
## 2174                  Central New York Regional Office
## 2175 Metropolitan Area Regional Office - New York City
## 2176                  Capital District Regional Office
## 2177                  Capital District Regional Office
## 2178 Metropolitan Area Regional Office - New York City
## 2179 Metropolitan Area Regional Office - New York City
## 2180               Western Regional Office - Rochester
## 2181               Western Regional Office - Rochester
## 2182 Metropolitan Area Regional Office - New York City
## 2183   Metropolitan Area Regional Office - Long Island
## 2184 Metropolitan Area Regional Office - New York City
## 2185                  Central New York Regional Office
## 2186 Metropolitan Area Regional Office - New York City
## 2187 Metropolitan Area Regional Office - New York City
## 2188                  Capital District Regional Office
## 2189                  Central New York Regional Office
## 2190               Western Regional Office - Rochester
## 2191               Western Regional Office - Rochester
## 2192  Metropolitan Area Regional Office - New Rochelle
## 2193 Metropolitan Area Regional Office - New York City
## 2194               Western Regional Office - Rochester
## 2195               Western Regional Office - Rochester
## 2196  Metropolitan Area Regional Office - New Rochelle
## 2197  Metropolitan Area Regional Office - New Rochelle
## 2198                  Central New York Regional Office
## 2199 Metropolitan Area Regional Office - New York City
## 2200                  Central New York Regional Office
## 2201 Metropolitan Area Regional Office - New York City
## 2202 Metropolitan Area Regional Office - New York City
## 2203               Western Regional Office - Rochester
## 2204                  Capital District Regional Office
## 2205 Metropolitan Area Regional Office - New York City
## 2206  Metropolitan Area Regional Office - New Rochelle
## 2207 Metropolitan Area Regional Office - New York City
## 2208 Metropolitan Area Regional Office - New York City
## 2209 Metropolitan Area Regional Office - New York City
## 2210   Metropolitan Area Regional Office - Long Island
## 2211                  Central New York Regional Office
## 2212               Western Regional Office - Rochester
## 2213  Metropolitan Area Regional Office - New Rochelle
## 2214                  Capital District Regional Office
## 2215   Metropolitan Area Regional Office - Long Island
## 2216                 Western Regional Office - Buffalo
## 2217               Western Regional Office - Rochester
## 2218                  Central New York Regional Office
## 2219                  Capital District Regional Office
## 2220               Western Regional Office - Rochester
## 2221                 Western Regional Office - Buffalo
## 2222 Metropolitan Area Regional Office - New York City
## 2223                 Western Regional Office - Buffalo
## 2224  Metropolitan Area Regional Office - New Rochelle
## 2225                  Capital District Regional Office
## 2226 Metropolitan Area Regional Office - New York City
## 2227                  Capital District Regional Office
## 2228 Metropolitan Area Regional Office - New York City
## 2229 Metropolitan Area Regional Office - New York City
## 2230 Metropolitan Area Regional Office - New York City
## 2231 Metropolitan Area Regional Office - New York City
## 2232  Metropolitan Area Regional Office - New Rochelle
## 2233  Metropolitan Area Regional Office - New Rochelle
## 2234  Metropolitan Area Regional Office - New Rochelle
## 2235 Metropolitan Area Regional Office - New York City
## 2236   Metropolitan Area Regional Office - Long Island
## 2237 Metropolitan Area Regional Office - New York City
## 2238                  Central New York Regional Office
## 2239                  Capital District Regional Office
## 2240 Metropolitan Area Regional Office - New York City
## 2241                  Central New York Regional Office
## 2242  Metropolitan Area Regional Office - New Rochelle
## 2243 Metropolitan Area Regional Office - New York City
## 2244                  Capital District Regional Office
## 2245                  Central New York Regional Office
## 2246  Metropolitan Area Regional Office - New Rochelle
## 2247                  Capital District Regional Office
## 2248                 Western Regional Office - Buffalo
## 2249                 Western Regional Office - Buffalo
## 2250 Metropolitan Area Regional Office - New York City
## 2251  Metropolitan Area Regional Office - New Rochelle
## 2252 Metropolitan Area Regional Office - New York City
## 2253   Metropolitan Area Regional Office - Long Island
## 2254  Metropolitan Area Regional Office - New Rochelle
## 2255 Metropolitan Area Regional Office - New York City
## 2256  Metropolitan Area Regional Office - New Rochelle
## 2257 Metropolitan Area Regional Office - New York City
## 2258 Metropolitan Area Regional Office - New York City
## 2259 Metropolitan Area Regional Office - New York City
## 2260 Metropolitan Area Regional Office - New York City
## 2261 Metropolitan Area Regional Office - New York City
## 2262                  Capital District Regional Office
## 2263               Western Regional Office - Rochester
## 2264                 Western Regional Office - Buffalo
## 2265 Metropolitan Area Regional Office - New York City
## 2266                 Western Regional Office - Buffalo
## 2267   Metropolitan Area Regional Office - Long Island
## 2268               Western Regional Office - Rochester
## 2269 Metropolitan Area Regional Office - New York City
## 2270 Metropolitan Area Regional Office - New York City
## 2271  Metropolitan Area Regional Office - New Rochelle
## 2272 Metropolitan Area Regional Office - New York City
## 2273   Metropolitan Area Regional Office - Long Island
## 2274  Metropolitan Area Regional Office - New Rochelle
## 2275  Metropolitan Area Regional Office - New Rochelle
## 2276                  Central New York Regional Office
## 2277 Metropolitan Area Regional Office - New York City
## 2278 Metropolitan Area Regional Office - New York City
## 2279 Metropolitan Area Regional Office - New York City
## 2280 Metropolitan Area Regional Office - New York City
## 2281 Metropolitan Area Regional Office - New York City
## 2282                  Central New York Regional Office
## 2283                  Capital District Regional Office
## 2284 Metropolitan Area Regional Office - New York City
## 2285                  Central New York Regional Office
## 2286  Metropolitan Area Regional Office - New Rochelle
## 2287                  Capital District Regional Office
## 2288  Metropolitan Area Regional Office - New Rochelle
## 2289 Metropolitan Area Regional Office - New York City
## 2290 Metropolitan Area Regional Office - New York City
## 2291                  Capital District Regional Office
## 2292   Metropolitan Area Regional Office - Long Island
## 2293 Metropolitan Area Regional Office - New York City
## 2294 Metropolitan Area Regional Office - New York City
## 2295                 Western Regional Office - Buffalo
## 2296 Metropolitan Area Regional Office - New York City
## 2297                 Western Regional Office - Buffalo
## 2298 Metropolitan Area Regional Office - New York City
## 2299                 Western Regional Office - Buffalo
## 2300 Metropolitan Area Regional Office - New York City
## 2301   Metropolitan Area Regional Office - Long Island
## 2302  Metropolitan Area Regional Office - New Rochelle
## 2303 Metropolitan Area Regional Office - New York City
## 2304 Metropolitan Area Regional Office - New York City
## 2305   Metropolitan Area Regional Office - Long Island
## 2306   Metropolitan Area Regional Office - Long Island
## 2307 Metropolitan Area Regional Office - New York City
## 2308 Metropolitan Area Regional Office - New York City
## 2309                 Western Regional Office - Buffalo
## 2310                 Western Regional Office - Buffalo
## 2311                 Western Regional Office - Buffalo
## 2312                 Western Regional Office - Buffalo
## 2313                 Western Regional Office - Buffalo
## 2314 Metropolitan Area Regional Office - New York City
## 2315   Metropolitan Area Regional Office - Long Island
## 2316               Western Regional Office - Rochester
## 2317                  Central New York Regional Office
## 2318                  Capital District Regional Office
## 2319                  Capital District Regional Office
## 2320               Western Regional Office - Rochester
## 2321                  Capital District Regional Office
## 2322                  Capital District Regional Office
## 2323  Metropolitan Area Regional Office - New Rochelle
## 2324                  Capital District Regional Office
## 2325 Metropolitan Area Regional Office - New York City
## 2326                  Capital District Regional Office
## 2327 Metropolitan Area Regional Office - New York City
## 2328               Western Regional Office - Rochester
## 2329                  Capital District Regional Office
## 2330 Metropolitan Area Regional Office - New York City
## 2331  Metropolitan Area Regional Office - New Rochelle
## 2332 Metropolitan Area Regional Office - New York City
## 2333   Metropolitan Area Regional Office - Long Island
## 2334 Metropolitan Area Regional Office - New York City
## 2335                  Central New York Regional Office
## 2336                  Capital District Regional Office
## 2337   Metropolitan Area Regional Office - Long Island
## 2338 Metropolitan Area Regional Office - New York City
## 2339                  Capital District Regional Office
## 2340                 Western Regional Office - Buffalo
## 2341 Metropolitan Area Regional Office - New York City
## 2342 Metropolitan Area Regional Office - New York City
## 2343                  Central New York Regional Office
## 2344  Metropolitan Area Regional Office - New Rochelle
## 2345                  Capital District Regional Office
## 2346               Western Regional Office - Rochester
## 2347  Metropolitan Area Regional Office - New Rochelle
## 2348                  Capital District Regional Office
## 2349               Western Regional Office - Rochester
## 2350                 Western Regional Office - Buffalo
## 2351 Metropolitan Area Regional Office - New York City
## 2352 Metropolitan Area Regional Office - New York City
## 2353   Metropolitan Area Regional Office - Long Island
## 2354                  Central New York Regional Office
## 2355                  Capital District Regional Office
## 2356  Metropolitan Area Regional Office - New Rochelle
## 2357  Metropolitan Area Regional Office - New Rochelle
## 2358  Metropolitan Area Regional Office - New Rochelle
## 2359               Western Regional Office - Rochester
## 2360 Metropolitan Area Regional Office - New York City
## 2361                 Western Regional Office - Buffalo
## 2362  Metropolitan Area Regional Office - New Rochelle
## 2363                  Central New York Regional Office
## 2364               Western Regional Office - Rochester
## 2365               Western Regional Office - Rochester
## 2366 Metropolitan Area Regional Office - New York City
## 2367   Metropolitan Area Regional Office - Long Island
## 2368 Metropolitan Area Regional Office - New York City
## 2369                  Central New York Regional Office
## 2370 Metropolitan Area Regional Office - New York City
## 2371  Metropolitan Area Regional Office - New Rochelle
## 2372                  Capital District Regional Office
## 2373  Metropolitan Area Regional Office - New Rochelle
## 2374 Metropolitan Area Regional Office - New York City
## 2375 Metropolitan Area Regional Office - New York City
## 2376               Western Regional Office - Rochester
## 2377               Western Regional Office - Rochester
## 2378               Western Regional Office - Rochester
## 2379   Metropolitan Area Regional Office - Long Island
## 2380                  Central New York Regional Office
## 2381               Western Regional Office - Rochester
## 2382                  Central New York Regional Office
## 2383                  Central New York Regional Office
## 2384 Metropolitan Area Regional Office - New York City
## 2385 Metropolitan Area Regional Office - New York City
## 2386 Metropolitan Area Regional Office - New York City
## 2387   Metropolitan Area Regional Office - Long Island
## 2388               Western Regional Office - Rochester
## 2389                  Capital District Regional Office
## 2390                  Central New York Regional Office
## 2391 Metropolitan Area Regional Office - New York City
## 2392 Metropolitan Area Regional Office - New York City
## 2393 Metropolitan Area Regional Office - New York City
## 2394 Metropolitan Area Regional Office - New York City
## 2395 Metropolitan Area Regional Office - New York City
## 2396                  Central New York Regional Office
## 2397                  Central New York Regional Office
## 2398                 Western Regional Office - Buffalo
## 2399                  Central New York Regional Office
## 2400 Metropolitan Area Regional Office - New York City
## 2401 Metropolitan Area Regional Office - New York City
## 2402  Metropolitan Area Regional Office - New Rochelle
## 2403 Metropolitan Area Regional Office - New York City
## 2404                 Western Regional Office - Buffalo
## 2405               Western Regional Office - Rochester
## 2406                  Central New York Regional Office
## 2407  Metropolitan Area Regional Office - New Rochelle
## 2408  Metropolitan Area Regional Office - New Rochelle
## 2409 Metropolitan Area Regional Office - New York City
## 2410 Metropolitan Area Regional Office - New York City
## 2411               Western Regional Office - Rochester
## 2412 Metropolitan Area Regional Office - New York City
## 2413  Metropolitan Area Regional Office - New Rochelle
## 2414  Metropolitan Area Regional Office - New Rochelle
## 2415               Western Regional Office - Rochester
## 2416                  Central New York Regional Office
## 2417                  Central New York Regional Office
## 2418 Metropolitan Area Regional Office - New York City
## 2419 Metropolitan Area Regional Office - New York City
## 2420                  Central New York Regional Office
## 2421 Metropolitan Area Regional Office - New York City
## 2422               Western Regional Office - Rochester
## 2423                  Capital District Regional Office
## 2424               Western Regional Office - Rochester
## 2425                  Central New York Regional Office
## 2426 Metropolitan Area Regional Office - New York City
## 2427  Metropolitan Area Regional Office - New Rochelle
## 2428                 Western Regional Office - Buffalo
## 2429 Metropolitan Area Regional Office - New York City
## 2430                  Capital District Regional Office
## 2431 Metropolitan Area Regional Office - New York City
## 2432                  Capital District Regional Office
## 2433               Western Regional Office - Rochester
## 2434                  Central New York Regional Office
## 2435 Metropolitan Area Regional Office - New York City
## 2436   Metropolitan Area Regional Office - Long Island
## 2437 Metropolitan Area Regional Office - New York City
## 2438   Metropolitan Area Regional Office - Long Island
## 2439                  Central New York Regional Office
## 2440               Western Regional Office - Rochester
## 2441 Metropolitan Area Regional Office - New York City
## 2442   Metropolitan Area Regional Office - Long Island
## 2443 Metropolitan Area Regional Office - New York City
## 2444               Western Regional Office - Rochester
## 2445 Metropolitan Area Regional Office - New York City
## 2446                  Central New York Regional Office
## 2447               Western Regional Office - Rochester
## 2448                  Central New York Regional Office
## 2449               Western Regional Office - Rochester
## 2450   Metropolitan Area Regional Office - Long Island
## 2451                  Capital District Regional Office
## 2452 Metropolitan Area Regional Office - New York City
## 2453   Metropolitan Area Regional Office - Long Island
## 2454                  Central New York Regional Office
## 2455                  Capital District Regional Office
## 2456 Metropolitan Area Regional Office - New York City
## 2457                 Western Regional Office - Buffalo
## 2458                  Capital District Regional Office
## 2459   Metropolitan Area Regional Office - Long Island
## 2460                  Central New York Regional Office
## 2461                  Central New York Regional Office
## 2462  Metropolitan Area Regional Office - New Rochelle
## 2463                  Capital District Regional Office
## 2464 Metropolitan Area Regional Office - New York City
## 2465  Metropolitan Area Regional Office - New Rochelle
## 2466 Metropolitan Area Regional Office - New York City
## 2467 Metropolitan Area Regional Office - New York City
## 2468               Western Regional Office - Rochester
## 2469   Metropolitan Area Regional Office - Long Island
## 2470  Metropolitan Area Regional Office - New Rochelle
## 2471   Metropolitan Area Regional Office - Long Island
## 2472 Metropolitan Area Regional Office - New York City
## 2473 Metropolitan Area Regional Office - New York City
## 2474               Western Regional Office - Rochester
## 2475                  Capital District Regional Office
## 2476  Metropolitan Area Regional Office - New Rochelle
## 2477                  Central New York Regional Office
## 2478 Metropolitan Area Regional Office - New York City
## 2479 Metropolitan Area Regional Office - New York City
## 2480   Metropolitan Area Regional Office - Long Island
## 2481                  Central New York Regional Office
## 2482 Metropolitan Area Regional Office - New York City
## 2483                  Central New York Regional Office
## 2484  Metropolitan Area Regional Office - New Rochelle
## 2485 Metropolitan Area Regional Office - New York City
## 2486                  Capital District Regional Office
## 2487 Metropolitan Area Regional Office - New York City
## 2488                  Central New York Regional Office
## 2489                  Capital District Regional Office
## 2490                  Central New York Regional Office
## 2491               Western Regional Office - Rochester
## 2492 Metropolitan Area Regional Office - New York City
## 2493  Metropolitan Area Regional Office - New Rochelle
## 2494                  Central New York Regional Office
## 2495  Metropolitan Area Regional Office - New Rochelle
## 2496 Metropolitan Area Regional Office - New York City
## 2497                  Central New York Regional Office
## 2498               Western Regional Office - Rochester
## 2499               Western Regional Office - Rochester
## 2500                  Central New York Regional Office
## 2501                  Central New York Regional Office
## 2502                 Western Regional Office - Buffalo
## 2503   Metropolitan Area Regional Office - Long Island
## 2504                  Capital District Regional Office
## 2505               Western Regional Office - Rochester
## 2506               Western Regional Office - Rochester
## 2507 Metropolitan Area Regional Office - New York City
## 2508                  Central New York Regional Office
## 2509  Metropolitan Area Regional Office - New Rochelle
## 2510 Metropolitan Area Regional Office - New York City
## 2511                  Central New York Regional Office
## 2512 Metropolitan Area Regional Office - New York City
## 2513   Metropolitan Area Regional Office - Long Island
## 2514               Western Regional Office - Rochester
## 2515                  Central New York Regional Office
## 2516 Metropolitan Area Regional Office - New York City
## 2517 Metropolitan Area Regional Office - New York City
## 2518                  Capital District Regional Office
## 2519               Western Regional Office - Rochester
## 2520   Metropolitan Area Regional Office - Long Island
## 2521 Metropolitan Area Regional Office - New York City
## 2522   Metropolitan Area Regional Office - Long Island
## 2523 Metropolitan Area Regional Office - New York City
## 2524  Metropolitan Area Regional Office - New Rochelle
## 2525  Metropolitan Area Regional Office - New Rochelle
## 2526                  Central New York Regional Office
## 2527   Metropolitan Area Regional Office - Long Island
## 2528 Metropolitan Area Regional Office - New York City
## 2529                  Central New York Regional Office
## 2530                  Central New York Regional Office
## 2531  Metropolitan Area Regional Office - New Rochelle
## 2532 Metropolitan Area Regional Office - New York City
## 2533               Western Regional Office - Rochester
## 2534  Metropolitan Area Regional Office - New Rochelle
## 2535                 Western Regional Office - Buffalo
## 2536                  Central New York Regional Office
## 2537                 Western Regional Office - Buffalo
## 2538  Metropolitan Area Regional Office - New Rochelle
## 2539 Metropolitan Area Regional Office - New York City
## 2540 Metropolitan Area Regional Office - New York City
## 2541 Metropolitan Area Regional Office - New York City
## 2542 Metropolitan Area Regional Office - New York City
## 2543                  Capital District Regional Office
## 2544 Metropolitan Area Regional Office - New York City
## 2545                  Central New York Regional Office
## 2546               Western Regional Office - Rochester
## 2547 Metropolitan Area Regional Office - New York City
## 2548               Western Regional Office - Rochester
## 2549               Western Regional Office - Rochester
## 2550 Metropolitan Area Regional Office - New York City
## 2551                  Capital District Regional Office
## 2552                  Capital District Regional Office
## 2553  Metropolitan Area Regional Office - New Rochelle
## 2554   Metropolitan Area Regional Office - Long Island
## 2555                  Central New York Regional Office
## 2556                  Central New York Regional Office
## 2557 Metropolitan Area Regional Office - New York City
## 2558               Western Regional Office - Rochester
## 2559 Metropolitan Area Regional Office - New York City
## 2560                 Western Regional Office - Buffalo
## 2561 Metropolitan Area Regional Office - New York City
## 2562   Metropolitan Area Regional Office - Long Island
## 2563 Metropolitan Area Regional Office - New York City
## 2564                  Central New York Regional Office
## 2565                  Capital District Regional Office
## 2566 Metropolitan Area Regional Office - New York City
## 2567                  Capital District Regional Office
## 2568 Metropolitan Area Regional Office - New York City
## 2569 Metropolitan Area Regional Office - New York City
## 2570  Metropolitan Area Regional Office - New Rochelle
## 2571 Metropolitan Area Regional Office - New York City
## 2572                 Western Regional Office - Buffalo
## 2573                  Central New York Regional Office
## 2574  Metropolitan Area Regional Office - New Rochelle
## 2575               Western Regional Office - Rochester
## 2576  Metropolitan Area Regional Office - New Rochelle
## 2577                  Central New York Regional Office
## 2578                  Capital District Regional Office
## 2579 Metropolitan Area Regional Office - New York City
## 2580                 Western Regional Office - Buffalo
## 2581 Metropolitan Area Regional Office - New York City
## 2582 Metropolitan Area Regional Office - New York City
## 2583                 Western Regional Office - Buffalo
## 2584               Western Regional Office - Rochester
## 2585 Metropolitan Area Regional Office - New York City
## 2586                  Central New York Regional Office
## 2587               Western Regional Office - Rochester
## 2588  Metropolitan Area Regional Office - New Rochelle
## 2589                  Capital District Regional Office
## 2590 Metropolitan Area Regional Office - New York City
## 2591 Metropolitan Area Regional Office - New York City
## 2592                  Central New York Regional Office
## 2593                 Western Regional Office - Buffalo
## 2594 Metropolitan Area Regional Office - New York City
## 2595                  Central New York Regional Office
## 2596                  Central New York Regional Office
## 2597  Metropolitan Area Regional Office - New Rochelle
## 2598 Metropolitan Area Regional Office - New York City
## 2599   Metropolitan Area Regional Office - Long Island
## 2600  Metropolitan Area Regional Office - New Rochelle
## 2601 Metropolitan Area Regional Office - New York City
## 2602  Metropolitan Area Regional Office - New Rochelle
## 2603  Metropolitan Area Regional Office - New Rochelle
## 2604 Metropolitan Area Regional Office - New York City
## 2605                  Capital District Regional Office
## 2606               Western Regional Office - Rochester
## 2607                  Capital District Regional Office
## 2608                 Western Regional Office - Buffalo
## 2609                  Central New York Regional Office
## 2610  Metropolitan Area Regional Office - New Rochelle
## 2611  Metropolitan Area Regional Office - New Rochelle
## 2612 Metropolitan Area Regional Office - New York City
## 2613 Metropolitan Area Regional Office - New York City
## 2614   Metropolitan Area Regional Office - Long Island
## 2615   Metropolitan Area Regional Office - Long Island
## 2616                  Central New York Regional Office
## 2617 Metropolitan Area Regional Office - New York City
## 2618   Metropolitan Area Regional Office - Long Island
## 2619                 Western Regional Office - Buffalo
## 2620   Metropolitan Area Regional Office - Long Island
## 2621                  Capital District Regional Office
## 2622 Metropolitan Area Regional Office - New York City
## 2623               Western Regional Office - Rochester
## 2624                  Capital District Regional Office
## 2625 Metropolitan Area Regional Office - New York City
## 2626                  Central New York Regional Office
## 2627               Western Regional Office - Rochester
## 2628                  Capital District Regional Office
## 2629 Metropolitan Area Regional Office - New York City
## 2630 Metropolitan Area Regional Office - New York City
## 2631                 Western Regional Office - Buffalo
## 2632                  Capital District Regional Office
## 2633 Metropolitan Area Regional Office - New York City
## 2634                  Capital District Regional Office
## 2635                  Central New York Regional Office
## 2636 Metropolitan Area Regional Office - New York City
## 2637               Western Regional Office - Rochester
## 2638                  Central New York Regional Office
## 2639               Western Regional Office - Rochester
## 2640  Metropolitan Area Regional Office - New Rochelle
## 2641   Metropolitan Area Regional Office - Long Island
## 2642 Metropolitan Area Regional Office - New York City
## 2643                  Central New York Regional Office
## 2644               Western Regional Office - Rochester
## 2645               Western Regional Office - Rochester
## 2646                 Western Regional Office - Buffalo
## 2647                  Central New York Regional Office
## 2648 Metropolitan Area Regional Office - New York City
## 2649   Metropolitan Area Regional Office - Long Island
## 2650  Metropolitan Area Regional Office - New Rochelle
## 2651 Metropolitan Area Regional Office - New York City
## 2652   Metropolitan Area Regional Office - Long Island
## 2653   Metropolitan Area Regional Office - Long Island
## 2654                  Central New York Regional Office
## 2655   Metropolitan Area Regional Office - Long Island
## 2656 Metropolitan Area Regional Office - New York City
## 2657                  Central New York Regional Office
## 2658                 Western Regional Office - Buffalo
## 2659                  Central New York Regional Office
## 2660  Metropolitan Area Regional Office - New Rochelle
## 2661   Metropolitan Area Regional Office - Long Island
## 2662 Metropolitan Area Regional Office - New York City
## 2663                  Capital District Regional Office
## 2664               Western Regional Office - Rochester
## 2665   Metropolitan Area Regional Office - Long Island
## 2666                  Capital District Regional Office
## 2667   Metropolitan Area Regional Office - Long Island
## 2668                  Central New York Regional Office
## 2669  Metropolitan Area Regional Office - New Rochelle
## 2670 Metropolitan Area Regional Office - New York City
## 2671 Metropolitan Area Regional Office - New York City
## 2672                  Central New York Regional Office
## 2673   Metropolitan Area Regional Office - Long Island
## 2674                 Western Regional Office - Buffalo
## 2675   Metropolitan Area Regional Office - Long Island
## 2676  Metropolitan Area Regional Office - New Rochelle
## 2677                 Western Regional Office - Buffalo
## 2678                  Central New York Regional Office
## 2679               Western Regional Office - Rochester
## 2680                 Western Regional Office - Buffalo
## 2681                  Capital District Regional Office
## 2682                  Capital District Regional Office
## 2683  Metropolitan Area Regional Office - New Rochelle
## 2684                  Capital District Regional Office
## 2685 Metropolitan Area Regional Office - New York City
## 2686  Metropolitan Area Regional Office - New Rochelle
## 2687 Metropolitan Area Regional Office - New York City
## 2688 Metropolitan Area Regional Office - New York City
## 2689                 Western Regional Office - Buffalo
## 2690 Metropolitan Area Regional Office - New York City
## 2691 Metropolitan Area Regional Office - New York City
## 2692 Metropolitan Area Regional Office - New York City
## 2693               Western Regional Office - Rochester
## 2694 Metropolitan Area Regional Office - New York City
## 2695 Metropolitan Area Regional Office - New York City
## 2696 Metropolitan Area Regional Office - New York City
## 2697                  Capital District Regional Office
## 2698 Metropolitan Area Regional Office - New York City
## 2699                  Central New York Regional Office
## 2700   Metropolitan Area Regional Office - Long Island
## 2701                  Capital District Regional Office
## 2702 Metropolitan Area Regional Office - New York City
## 2703                  Central New York Regional Office
## 2704  Metropolitan Area Regional Office - New Rochelle
## 2705 Metropolitan Area Regional Office - New York City
## 2706   Metropolitan Area Regional Office - Long Island
## 2707                  Capital District Regional Office
## 2708  Metropolitan Area Regional Office - New Rochelle
## 2709                  Capital District Regional Office
## 2710   Metropolitan Area Regional Office - Long Island
## 2711   Metropolitan Area Regional Office - Long Island
## 2712 Metropolitan Area Regional Office - New York City
## 2713 Metropolitan Area Regional Office - New York City
## 2714  Metropolitan Area Regional Office - New Rochelle
## 2715                  Capital District Regional Office
## 2716                  Central New York Regional Office
## 2717  Metropolitan Area Regional Office - New Rochelle
## 2718 Metropolitan Area Regional Office - New York City
## 2719 Metropolitan Area Regional Office - New York City
## 2720               Western Regional Office - Rochester
## 2721   Metropolitan Area Regional Office - Long Island
## 2722                  Capital District Regional Office
## 2723  Metropolitan Area Regional Office - New Rochelle
## 2724 Metropolitan Area Regional Office - New York City
## 2725   Metropolitan Area Regional Office - Long Island
## 2726                 Western Regional Office - Buffalo
## 2727 Metropolitan Area Regional Office - New York City
## 2728                  Central New York Regional Office
## 2729 Metropolitan Area Regional Office - New York City
## 2730  Metropolitan Area Regional Office - New Rochelle
## 2731   Metropolitan Area Regional Office - Long Island
## 2732   Metropolitan Area Regional Office - Long Island
## 2733               Western Regional Office - Rochester
## 2734 Metropolitan Area Regional Office - New York City
## 2735               Western Regional Office - Rochester
## 2736 Metropolitan Area Regional Office - New York City
## 2737   Metropolitan Area Regional Office - Long Island
## 2738                  Central New York Regional Office
## 2739                  Capital District Regional Office
## 2740                  Capital District Regional Office
## 2741                  Central New York Regional Office
## 2742                 Western Regional Office - Buffalo
## 2743                  Capital District Regional Office
## 2744 Metropolitan Area Regional Office - New York City
## 2745 Metropolitan Area Regional Office - New York City
## 2746                  Capital District Regional Office
## 2747 Metropolitan Area Regional Office - New York City
## 2748 Metropolitan Area Regional Office - New York City
## 2749 Metropolitan Area Regional Office - New York City
## 2750 Metropolitan Area Regional Office - New York City
## 2751                  Central New York Regional Office
## 2752  Metropolitan Area Regional Office - New Rochelle
## 2753  Metropolitan Area Regional Office - New Rochelle
## 2754 Metropolitan Area Regional Office - New York City
## 2755               Western Regional Office - Rochester
## 2756                  Capital District Regional Office
## 2757   Metropolitan Area Regional Office - Long Island
## 2758                  Central New York Regional Office
## 2759 Metropolitan Area Regional Office - New York City
## 2760                  Central New York Regional Office
## 2761 Metropolitan Area Regional Office - New York City
## 2762 Metropolitan Area Regional Office - New York City
## 2763                 Western Regional Office - Buffalo
## 2764 Metropolitan Area Regional Office - New York City
## 2765               Western Regional Office - Rochester
## 2766                  Central New York Regional Office
## 2767                 Western Regional Office - Buffalo
## 2768                 Western Regional Office - Buffalo
## 2769                  Central New York Regional Office
## 2770  Metropolitan Area Regional Office - New Rochelle
## 2771   Metropolitan Area Regional Office - Long Island
## 2772 Metropolitan Area Regional Office - New York City
## 2773 Metropolitan Area Regional Office - New York City
## 2774   Metropolitan Area Regional Office - Long Island
## 2775               Western Regional Office - Rochester
## 2776 Metropolitan Area Regional Office - New York City
## 2777 Metropolitan Area Regional Office - New York City
##                                                                       Main.Site.Name
## 1                                                                                   
## 2                                                                                   
## 3                                                                                   
## 4                                                                                   
## 5                                                                                   
## 6                                                                                   
## 7                                                                                   
## 8                                                                                   
## 9                                                                                   
## 10                                                             NYU Langone Hospitals
## 11                                                                                  
## 12                                                            Oneida Health Hospital
## 13                                                             NYU Langone Hospitals
## 14                                         Our Lady of Lourdes Memorial Hospital Inc
## 15                                                                                  
## 16                                                               University Hospital
## 17                                                                                  
## 18                                                                                  
## 19                                                                                  
## 20                                       Adirondack Medical Center-Saranac Lake Site
## 21                                                                                  
## 22                                                            Olean General Hospital
## 23                                                          Strong Memorial Hospital
## 24                                                                                  
## 25                                                                                  
## 26                                                                                  
## 27                                                                                  
## 28                                                                                  
## 29                                                                                  
## 30                                                                                  
## 31                                              Whitney M Young Jr Health Center Inc
## 32                                                                                  
## 33                                                                                  
## 34                                                                                  
## 35                                                                                  
## 36                                                       Rome Memorial Hospital, Inc
## 37                                                     Mary Imogene Bassett Hospital
## 38                                                                                  
## 39                                                    Vassar Brothers Medical Center
## 40                                                                                  
## 41                                          Cumberland Diagnostic & Treatment Center
## 42                                            FMS-Southern Manhattan Dialysis Center
## 43                                                             Bronx Dialysis Center
## 44                             New York City Department of Health and Mental Hygiene
## 45                                            Planned Parenthood Hudson Peconic, Inc
## 46                                          North Country Family Health Center, Inc.
## 47                                                                                  
## 48                                                                Samaritan Hospital
## 49                                                                                  
## 50                                                                                  
## 51                                                             NYU Langone Hospitals
## 52                                Montefiore Medical Center - Henry & Lucy Moses Div
## 53                                                             Bronx Dialysis Center
## 54                                                             NYU Langone Hospitals
## 55                                               Staten Island University Hosp-North
## 56                                                        Cleve Hill Dialysis Center
## 57                                                                                  
## 58                                                      Morris Heights Health Center
## 59                                            FMS-Southern Manhattan Dialysis Center
## 60                                                                                  
## 61                                                           Mosaic Health Rushville
## 62                                      Faxton-St Lukes Healthcare St Lukes Division
## 63                                                                   Phelps Hospital
## 64                                                                                  
## 65                                            Good Samaritan Hospital Medical Center
## 66                                      Eastern Niagara Hospital - Lockport Division
## 67                                               Clifton Springs Hospital and Clinic
## 68                                                   North Shore University Hospital
## 69                                                                  Mount Sinai West
## 70                                                        Columbia Memorial Hospital
## 71                                                                                  
## 72                                                            Putnam Hospital Center
## 73                                                                   Oswego Hospital
## 74                               Southern Tier Community Health Center Network, Inc.
## 75                                 Westchester Institute for Human Development, Inc.
## 76                                               Staten Island University Hosp-North
## 77                                                             Bronx Dialysis Center
## 78       The University of Vermont Health Network - Elizabethtown Community Hospital
## 79                                                                                  
## 80                                                          Strong Memorial Hospital
## 81                                                                                  
## 82                                                    Family Health Center of Harlem
## 83                                Montefiore Medical Center - Henry & Lucy Moses Div
## 84                                                 Long Island Jewish Medical Center
## 85                                                             Eastman Dental Center
## 86                                                                                  
## 87                                                     Hudson River Healthcare, Inc.
## 88                                                                                  
## 89                                          Cumberland Diagnostic & Treatment Center
## 90                                                               Lenox Hill Hospital
## 91                                                                                  
## 92                                                                                  
## 93                                                    Claxton-Hepburn Medical Center
## 94                                                                                  
## 95                                                             Bronx Dialysis Center
## 96                                                         Warrensburg Health Center
## 97                                                                                  
## 98                                                                                  
## 99                                                                                  
## 100                                                                                 
## 101                                                                                 
## 102                                                  Renaissance Health Care Network
## 103                                                                 Mount Sinai West
## 104                                                                                 
## 105                                      NewYork-Presbyterian/Hudson Valley Hospital
## 106                                                                                 
## 107                   John T Mather Memorial Hospital of Port Jefferson New York Inc
## 108                                                                                 
## 109                                                                                 
## 110                                                                                 
## 111                                                      Crouse Community Center Inc
## 112                                                            NYU Langone Hospitals
## 113                                                                                 
## 114                                 Memorial Hospital for Cancer and Allied Diseases
## 115                                                            Bronx Dialysis Center
## 116                                                                                 
## 117                                                       Rochester General Hospital
## 118                                                                                 
## 119                                                     Morris Heights Health Center
## 120                                                              University Hospital
## 121                                                  Renaissance Health Care Network
## 122                                              St. Joseph's Hospital Health Center
## 123                                     Sunnyview Hospital and Rehabilitation Center
## 124                                                        BronxCare Hospital Center
## 125                                        Planned Parenthood Margaret Sanger Center
## 126                                                                                 
## 127                                                                                 
## 128                                                                                 
## 129                                                            Bronx Dialysis Center
## 130                                                Lower Eastside Service Center Inc
## 131                                                                                 
## 132                                                Long Island Jewish Medical Center
## 133                                                                                 
## 134                                                       Westchester Medical Center
## 135                                                        Warrensburg Health Center
## 136                                                                  Oswego Hospital
## 137                                                                                 
## 138                                                  North Shore University Hospital
## 139                                                                                 
## 140                                                                                 
## 141                                        Planned Parenthood Margaret Sanger Center
## 142                                              St. Joseph's Hospital Health Center
## 143                                                                                 
## 144                                     Faxton-St Lukes Healthcare St Lukes Division
## 145                                                                                 
## 146                                                                                 
## 147                                                    Mary Imogene Bassett Hospital
## 148                                       Monroe County Department of Health Clinics
## 149                                                       Rochester General Hospital
## 150                                     Faxton-St Lukes Healthcare St Lukes Division
## 151                                                         Samaritan Medical Center
## 152                                                                                 
## 153                                                                                 
## 154                                 Memorial Hospital for Cancer and Allied Diseases
## 155                                                      Housing Works East New York
## 156                       Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 157                                                          JGB Rehabilitation Corp
## 158                                                                                 
## 159                                                                                 
## 160                                                            Bronx Dialysis Center
## 161                                              St. Joseph's Hospital Health Center
## 162                                                         Strong Memorial Hospital
## 163                                                                                 
## 164                                                     Community Healthcare Network
## 165                                                                                 
## 166                                                          JGB Rehabilitation Corp
## 167                                                                  Crouse Hospital
## 168                                                                                 
## 169                                                                SBH Health System
## 170                                                    Mary Imogene Bassett Hospital
## 171                                                             Project Renewal, Inc
## 172                                                                                 
## 173                                                     Hospital for Special Surgery
## 174                                                                                 
## 175                                                                                 
## 176                                       Charles B Wang Community Health Center Inc
## 177                                                                                 
## 178                                                             Glens Falls Hospital
## 179                                                                                 
## 180                                                  North Shore University Hospital
## 181                                                                                 
## 182                                                  University Hospital of Brooklyn
## 183                                                                                 
## 184                                                                                 
## 185                                                                                 
## 186                                                                                 
## 187                                                                                 
## 188                                                                                 
## 189                                                       Rochester General Hospital
## 190                                                                                 
## 191                                                                                 
## 192                                                     Morris Heights Health Center
## 193                                   Northwest Buffalo Community Health Care Center
## 194                                                                                 
## 195                                                Long Island Jewish Medical Center
## 196                                             Open Door Family Medical Center, Inc
## 197                                                             River Hospital, Inc.
## 198                                                         Samaritan Medical Center
## 199                                         Morrisania Diagnostic & Treatment Center
## 200                                                       Columbia Memorial Hospital
## 201                                                            Bronx Dialysis Center
## 202                                     HealthAlliance Hospital Mary's Avenue Campus
## 203                                                                                 
## 204                                                                Saratoga Hospital
## 205               Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 206                                                  Community Memorial Hospital Inc
## 207                                                   Wyckoff Heights Medical Center
## 208                                                       Rochester General Hospital
## 209                                                                                 
## 210                                                    Hudson River Healthcare, Inc.
## 211                                                    Union Community Health Center
## 212                                                                                 
## 213                                                      Sisters of Charity Hospital
## 214                                                             Mount Sinai Hospital
## 215                                                             Glens Falls Hospital
## 216                                                                                 
## 217                                                   Family Health Center of Harlem
## 218                                                                                 
## 219                                                       Care For the Homeless, Inc
## 220                                                                                 
## 221                                                     Community Healthcare Network
## 222                                 Memorial Hospital for Cancer and Allied Diseases
## 223                                                Long Island Jewish Medical Center
## 224                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 225                                                             Mount Sinai Hospital
## 226                         Planned Parenthood of Central and Western New York, Inc.
## 227                                                                                 
## 228                                                            NYU Langone Hospitals
## 229                                                              University Hospital
## 230                                                           F.F. Thompson Hospital
## 231                                       William F Ryan Community Health Center Inc
## 232                                                        Freedom Center of Buffalo
## 233                                                  North Shore University Hospital
## 234                                                                                 
## 235                                                                                 
## 236                                                                                 
## 237                                                    Long Island Select Healthcare
## 238                                                         Nathan Littauer Hospital
## 239                                                       University Dialysis Center
## 240                                                  Jamaica Hospital Medical Center
## 241                                                                                 
## 242                                                                                 
## 243                                     Ahava Medical and Rehabilitation Center, LLC
## 244                                                                                 
## 245                                                   Claxton-Hepburn Medical Center
## 246                                                                                 
## 247                                                                                 
## 248                                                                                 
## 249                                            Joseph P Addabbo-Family Health Center
## 250                                                New York University Dental Center
## 251                                                            St. Mary's Healthcare
## 252                                         Cumberland Diagnostic & Treatment Center
## 253                                                                                 
## 254                                                                                 
## 255                                           Planned Parenthood Hudson Peconic, Inc
## 256                                                                                 
## 257                                                                                 
## 258                                                                                 
## 259                                                                                 
## 260                                                                                 
## 261                       Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 262                                        Planned Parenthood Margaret Sanger Center
## 263                                       Charles B Wang Community Health Center Inc
## 264                                           Staten Island Artificial Kidney Center
## 265                                                               Samaritan Hospital
## 266                                                            NYU Langone Hospitals
## 267                               Montefiore Medical Center - Henry & Lucy Moses Div
## 268                                 Memorial Hospital for Cancer and Allied Diseases
## 269                                                                                 
## 270                                                             Fingerlakes UCP, Inc
## 271                                                                                 
## 272                                                                                 
## 273                                    Morningside Nursing and Rehabilitation Center
## 274                                                                                 
## 275                                                                                 
## 276                               Montefiore Medical Center - Henry & Lucy Moses Div
## 277                                                                                 
## 278                                                                                 
## 279                                                                                 
## 280                                                 Brooks-TLC Hospital System, Inc.
## 281                                                             Mount Sinai Hospital
## 282                                                                        EHS, Inc.
## 283                               Montefiore Medical Center - Henry & Lucy Moses Div
## 284                                                                  Oswego Hospital
## 285                                                    Mary Imogene Bassett Hospital
## 286                                                                                 
## 287                                                                                 
## 288                                                                                 
## 289                                                               Samaritan Hospital
## 290                                       William F Ryan Community Health Center Inc
## 291                                           FMS-Southern Manhattan Dialysis Center
## 292                                                       Northern Dutchess Hospital
## 293                                                                                 
## 294                                         Cumberland Diagnostic & Treatment Center
## 295                                                                                 
## 296                                   Beacon Christian Community Health Center, Inc.
## 297                                                                                 
## 298                                                                                 
## 299                                                           UPMC Chautauqua at WCA
## 300                                                                                 
## 301                       Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 302                                                       Columbia Memorial Hospital
## 303                                                               Glen Cove Hospital
## 304                                        Our Lady of Lourdes Memorial Hospital Inc
## 305                                                                                 
## 306                                 NewYork-Presbyterian Brooklyn Methodist Hospital
## 307                                                                                 
## 308                                                                                 
## 309                               Montefiore Medical Center - Henry & Lucy Moses Div
## 310                                                                                 
## 311                                                                                 
## 312                                                               St Peters Hospital
## 313                                                                                 
## 314                                                                                 
## 315                   John T Mather Memorial Hospital of Port Jefferson New York Inc
## 316                                                       Care For the Homeless, Inc
## 317                                                    Upper Room AIDS Ministry ADHC
## 318                                                                Saratoga Hospital
## 319                                                                                 
## 320                                           FMS-Southern Manhattan Dialysis Center
## 321                                                   Vassar Brothers Medical Center
## 322                                                                                 
## 323                                                             Mount Sinai Hospital
## 324                                                       Arnot Ogden Medical Center
## 325                                                       Rochester General Hospital
## 326                                                                                 
## 327                                                                                 
## 328                                                                                 
## 329                                                         Strong Memorial Hospital
## 330                                                       Erie County Medical Center
## 331                                                            NYU Langone Hospitals
## 332                                                                                 
## 333                                   University Hospital SUNY Health Science Center
## 334                                                           F.F. Thompson Hospital
## 335                                                                                 
## 336                                                               Samaritan Hospital
## 337                                             ODA Primary Health Care Network, Inc
## 338                                                                                 
## 339                                                  The Unity Hospital of Rochester
## 340                                                          Geneva General Hospital
## 341                                         North Country Family Health Center, Inc.
## 342                                       Public Health Solutions Fort Greene Center
## 343                                                               St Peters Hospital
## 344                                                    Hudson River Healthcare, Inc.
## 345                                                            Bronx Dialysis Center
## 346                                                                                 
## 347                                   University Hospital SUNY Health Science Center
## 348                                                                                 
## 349                                             St Johns Episcopal Hospital So Shore
## 350                                     Ryan/Chelsea-Clinton Community Health Center
## 351                                               Richmond University Medical Center
## 352                                                        Maimonides Medical Center
## 353                                                     Morris Heights Health Center
## 354                                                         Medina Memorial Hospital
## 355                                                                                 
## 356                                                    Hudson River Healthcare, Inc.
## 357                                                           Massena Hospital, Inc.
## 358                                                     Morris Heights Health Center
## 359                                                               St. James Hospital
## 360                               Montefiore Medical Center - Henry & Lucy Moses Div
## 361                                        Our Lady of Lourdes Memorial Hospital Inc
## 362                                                                                 
## 363                                                             Mount Sinai Hospital
## 364                       Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 365                                                                                 
## 366                                                                                 
## 367                                                     Community Healthcare Network
## 368                                           FMS-Southern Manhattan Dialysis Center
## 369                                                 Brooks-TLC Hospital System, Inc.
## 370                                                  Premier Healthcare D & T Center
## 371                                                                Saratoga Hospital
## 372                                                          Mount Sinai Beth Israel
## 373                           CenterLight Healthcare Diagnostic and Treatment Center
## 374                                                                                 
## 375                                                             Glens Falls Hospital
## 376                                                       Valley Health Services Inc
## 377                                              Columbia University Health Care Inc
## 378                                                                                 
## 379                                                  The Unity Hospital of Rochester
## 380                                      Adirondack Medical Center-Saranac Lake Site
## 381                                                         Strong Memorial Hospital
## 382                                                               Samaritan Hospital
## 383                                                     Morris Heights Health Center
## 384                                                                                 
## 385                                                                                 
## 386                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 387                                                                                 
## 388                                                                Saratoga Hospital
## 389                                                            NYU Langone Hospitals
## 390                                                                                 
## 391                                                 Nassau University Medical Center
## 392                                                                                 
## 393                                                        Warrensburg Health Center
## 394                                                                                 
## 395                                                            Rogosin Kidney Center
## 396                                                                                 
## 397                                 Memorial Hospital for Cancer and Allied Diseases
## 398                                     Sunnyview Hospital and Rehabilitation Center
## 399                                                                                 
## 400                                                                                 
## 401                                                                                 
## 402                                                                                 
## 403                                                  North Shore University Hospital
## 404                                                       Erie County Medical Center
## 405                                             St Luke's Cornwall Hospital/Newburgh
## 406                                                                Highland Hospital
## 407                                                                                 
## 408                                    Family Health Network of Central New York Inc
## 409                                    Family Health Network of Central New York Inc
## 410                                        Planned Parenthood Margaret Sanger Center
## 411                                                                                 
## 412                                             Open Door Family Medical Center, Inc
## 413                         Planned Parenthood of Central and Western New York, Inc.
## 414                                                                                 
## 415                                                   Buffalo General Medical Center
## 416                                                            NYU Langone Hospitals
## 417                                                  The Unity Hospital of Rochester
## 418                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 419                                                                                 
## 420                                           Good Samaritan Hospital Medical Center
## 421                                             ODA Primary Health Care Network, Inc
## 422                                     Sunnyview Hospital and Rehabilitation Center
## 423                                                           F.F. Thompson Hospital
## 424                                                      Sisters of Charity Hospital
## 425                                                                                 
## 426                                                                                 
## 427                                                                                 
## 428                                                            NYU Langone Hospitals
## 429                                                                                 
## 430                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 431                                                                                 
## 432                                                       Rochester General Hospital
## 433                                                                                 
## 434                                                                                 
## 435                                                                                 
## 436                                                                                 
## 437                                          Oak Orchard Community Health Center Inc
## 438                                                                                 
## 439                                            Niagara Falls Memorial Medical Center
## 440                                                            NYU Langone Hospitals
## 441                                                                                 
## 442                                                                                 
## 443                                                                                 
## 444                                                                                 
## 445                                   Brownsville Multi-Service Family Health Center
## 446                                                                                 
## 447                                                            NYU Langone Hospitals
## 448                                                      NewYork-Presbyterian/Queens
## 449                                                   Wyckoff Heights Medical Center
## 450                                                              University Hospital
## 451                                                                                 
## 452                                                            NYU Langone Hospitals
## 453                                                               Samaritan Hospital
## 454                              BronxCare Dr. Martin Luther King, Jr. Health Center
## 455                                                         Strong Memorial Hospital
## 456                                                                                 
## 457                                                            Bronx Dialysis Center
## 458                               Montefiore Medical Center - Henry & Lucy Moses Div
## 459                                                                                 
## 460                                                     White Plains Hospital Center
## 461                                                                                 
## 462                                                   Anthony L Jordan Health Center
## 463                           CenterLight Healthcare Diagnostic and Treatment Center
## 464                                                                                 
## 465                                                                                 
## 466                                                       Carthage Area Hospital Inc
## 467                                                                   Ellis Hospital
## 468                                                                                 
## 469                   John T Mather Memorial Hospital of Port Jefferson New York Inc
## 470                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 471              United Health Services Hospitals Inc. - Binghamton General Hospital
## 472                                                   Buffalo General Medical Center
## 473                                                        Damian Family Care Center
## 474                                                         Samaritan Medical Center
## 475                                                           Betances Health Center
## 476                                                Long Island Jewish Medical Center
## 477                                                            Bronx Dialysis Center
## 478                                                                                 
## 479             The University of Vermont Health Network - Alice Hyde Medical Center
## 480                                                   Anthony L Jordan Health Center
## 481                                                     Community Healthcare Network
## 482                                                                                 
## 483                                                                                 
## 484                                                     Garnet Health Medical Center
## 485                                                                                 
## 486                                                       Rochester General Hospital
## 487                               Bushwick Center for Rehabilitation and Health Care
## 488                                                            NYU Langone Hospitals
## 489                   New York-Presbyterian Hospital - New York Weill Cornell Center
## 490                                                                                 
## 491                   John T Mather Memorial Hospital of Port Jefferson New York Inc
## 492                                                                                 
## 493  The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 494                                                                                 
## 495                                             Center for Disability Services, Inc.
## 496                                                                                 
## 497                                                  University Hospital of Brooklyn
## 498                                                                                 
## 499                                                                                 
## 500                                                                Urban Health Plan
## 501                                                                                 
## 502                                           FMS-Southern Manhattan Dialysis Center
## 503                                             ODA Primary Health Care Network, Inc
## 504                                                                St Anns Community
## 505                                   Weill Cornell Imaging at New York Presbyterian
## 506                                                                                 
## 507                               Montefiore Medical Center - Henry & Lucy Moses Div
## 508                                                            NYU Langone Hospitals
## 509                                                                                 
## 510                                                               St Peters Hospital
## 511                                                      St. Joseph's Medical Center
## 512                                                                                 
## 513                                                        Maimonides Medical Center
## 514                                                   Buffalo General Medical Center
## 515                                                                                 
## 516                                                                                 
## 517                                                                Urban Health Plan
## 518                                                                                 
## 519                                                   Family Health Center of Harlem
## 520                                                                Urban Health Plan
## 521                                              Staten Island University Hosp-North
## 522                                                                                 
## 523                                                   Family Health Center of Harlem
## 524                                                                                 
## 525                                                            Eastman Dental Center
## 526                                                                                 
## 527                                             ODA Primary Health Care Network, Inc
## 528                                                                   Ellis Hospital
## 529                                                                                 
## 530                                                        Damian Family Care Center
## 531                                                   Long Island Community Hospital
## 532                                                         Bellevue Hospital Center
## 533                                                                                 
## 534                                                               St Peters Hospital
## 535                                                               Samaritan Hospital
## 536                                                                                 
## 537                                                      Sisters of Charity Hospital
## 538                                                             Glens Falls Hospital
## 539                                                                Saratoga Hospital
## 540                                                              University Hospital
## 541                                                Long Island Jewish Medical Center
## 542                                             Open Door Family Medical Center, Inc
## 543                                                               St Peters Hospital
## 544                                                        Damian Family Care Center
## 545                                                         Nathan Littauer Hospital
## 546                                                                                 
## 547                                                                                 
## 548                                         Cumberland Diagnostic & Treatment Center
## 549                                                                Urban Health Plan
## 550                                                          Mosaic Health Rushville
## 551                           CenterLight Healthcare Diagnostic and Treatment Center
## 552                                             St Luke's Cornwall Hospital/Newburgh
## 553                                                                                 
## 554                                                    Hudson River Healthcare, Inc.
## 555                                                                                 
## 556                                           FMS-Southern Manhattan Dialysis Center
## 557              United Health Services Hospitals Inc. - Binghamton General Hospital
## 558                                                                                 
## 559                                                      NewYork-Presbyterian/Queens
## 560                                                                                 
## 561                                                  Jamaica Hospital Medical Center
## 562                                                                                 
## 563                                          Community Health Center of Buffalo, Inc
## 564                                                                                 
## 565                                                           UPMC Chautauqua at WCA
## 566                               Montefiore Medical Center - Henry & Lucy Moses Div
## 567                                                                                 
## 568                                                                                 
## 569                                                     Hospital for Special Surgery
## 570                                                                                 
## 571                                                                                 
## 572                                                                                 
## 573                                                            NYU Langone Hospitals
## 574                                                                                 
## 575                                                                                 
## 576                                                       A.O. Fox Memorial Hospital
## 577                                         L'Refuah Medical & Rehabilitation Center
## 578                                                       Rochester General Hospital
## 579                                                        Warrensburg Health Center
## 580                                                     Community Healthcare Network
## 581                             Friedwald Center for Rehabilitation and Nursing, LLC
## 582                                                                                 
## 583                                                                                 
## 584                         Planned Parenthood of Central and Western New York, Inc.
## 585                                                            NYU Langone Hospitals
## 586                                                                                 
## 587                                                    Mary Imogene Bassett Hospital
## 588                                           FMS-Southern Manhattan Dialysis Center
## 589                                                    Hudson River Healthcare, Inc.
## 590                                                                                 
## 591                                                                Highland Hospital
## 592                                                     Gramercy Surgery Center, Inc
## 593                                                       Cleve Hill Dialysis Center
## 594                                                            NYU Langone Hospitals
## 595                                              Staten Island University Hosp-North
## 596                                             Avantus Irving Place Dialysis Center
## 597                                                       University Dialysis Center
## 598                                                                                 
## 599                                                            NYU Langone Hospitals
## 600                                                               Samaritan Hospital
## 601                                                                Saratoga Hospital
## 602                                                    Mary Imogene Bassett Hospital
## 603                                                       Cleve Hill Dialysis Center
## 604                                                               St Peters Hospital
## 605                                                                                 
## 606                                             Center for Disability Services, Inc.
## 607                                                              University Hospital
## 608                                                         Strong Memorial Hospital
## 609                                             Whitney M Young Jr Health Center Inc
## 610                                                         Samaritan Medical Center
## 611                                                                                 
## 612                                                                                 
## 613                                                       Northern Dutchess Hospital
## 614                                                                                 
## 615                                                                                 
## 616                                                          Mount Sinai Beth Israel
## 617                                                     Morris Heights Health Center
## 618                                                                                 
## 619                         Hudson Valley Regional Community Health Centers - Putnam
## 620                                                          Canton-Potsdam Hospital
## 621                                                                                 
## 622                                                                                 
## 623                               Montefiore Medical Center - Henry & Lucy Moses Div
## 624                                                   Buffalo General Medical Center
## 625                                                                                 
## 626                                     Faxton-St Lukes Healthcare St Lukes Division
## 627                                                                 Corning Hospital
## 628                                                                                 
## 629                                                                                 
## 630                                                                                 
## 631                                                                                 
## 632                                                  North Shore University Hospital
## 633                                                               Samaritan Hospital
## 634                                                               St Peters Hospital
## 635                                                                                 
## 636                                                                                 
## 637                                                                                 
## 638                                                         Garden City Surgi Center
## 639                                                Long Island Jewish Medical Center
## 640                                                                                 
## 641                                                                                 
## 642                                                       Rochester General Hospital
## 643                                           FMS-Southern Manhattan Dialysis Center
## 644                                                    Hudson River Healthcare, Inc.
## 645                                                    Hudson River Healthcare, Inc.
## 646                                                   Buffalo General Medical Center
## 647                                                       The Children's Aid Society
## 648                                                                                 
## 649                                                                                 
## 650                                                                                 
## 651                                                 Aspire of Western New York, Inc.
## 652                                                                                 
## 653                                     Sunnyview Hospital and Rehabilitation Center
## 654                                                             St. Charles Hospital
## 655                                                                                 
## 656                                                  Jamaica Hospital Medical Center
## 657                                                                                 
## 658                                                                                 
## 659                                                       Rochester General Hospital
## 660                                                 St. Joseph's Dialysis - Regional
## 661                                                                      NYSARC, Inc
## 662                                                                                 
## 663                                                                                 
## 664                                   University Hospital SUNY Health Science Center
## 665        Suffolk County Department of Health Clinic Services - Hauppauge Methadone
## 666                                                                                 
## 667                                                             St. Charles Hospital
## 668                                                                                 
## 669                                                           F.F. Thompson Hospital
## 670                                              Huntington Artificial Kidney Center
## 671                                      Adirondack Medical Center-Saranac Lake Site
## 672                               Montefiore Medical Center - Henry & Lucy Moses Div
## 673                               Montefiore Medical Center - Henry & Lucy Moses Div
## 674                                                                                 
## 675                                                                                 
## 676                                                      Rome Memorial Hospital, Inc
## 677                                                                                 
## 678                                                                                 
## 679                                                         Strong Memorial Hospital
## 680                                                                                 
## 681                                                         SJRH - St Johns Division
## 682                                                                                 
## 683              United Health Services Hospitals Inc. - Binghamton General Hospital
## 684                                        Planned Parenthood Margaret Sanger Center
## 685                                                    Upper Room AIDS Ministry ADHC
## 686                                                         Mount Sinai South Nassau
## 687                                                   Buffalo General Medical Center
## 688                                                            NYU Langone Hospitals
## 689                                                                      ConnextCare
## 690                                                                                 
## 691                                           FMS-Southern Manhattan Dialysis Center
## 692                                                           Betances Health Center
## 693                                                                                 
## 694                                                    Mary Imogene Bassett Hospital
## 695                                              Island Rehabilitative Services Corp
## 696                                                                                 
## 697                                                         Strong Memorial Hospital
## 698                                                             Glens Falls Hospital
## 699                                                          Canton-Potsdam Hospital
## 700                                                                                 
## 701                                                                                 
## 702                                                                                 
## 703                                                               Samaritan Hospital
## 704                                             Center for Disability Services, Inc.
## 705                                        Planned Parenthood Margaret Sanger Center
## 706                                              Staten Island University Hosp-North
## 707                                                                                 
## 708                                                                                 
## 709                                                        Warrensburg Health Center
## 710                                                                                 
## 711                                                                Urban Health Plan
## 712                                                                Saratoga Hospital
## 713                                               Upstate Family Health Center, Inc.
## 714                                                                                 
## 715                                                                                 
## 716                                           Bethel Nursing & Rehabilitation Center
## 717                                                     Garnet Health Medical Center
## 718                                   University Hospital SUNY Health Science Center
## 719                                                     Morris Heights Health Center
## 720                         Planned Parenthood of Central and Western New York, Inc.
## 721                                           FMS-Southern Manhattan Dialysis Center
## 722                                                                                 
## 723                                                                                 
## 724                                                                                 
## 725                                                            Rogosin Kidney Center
## 726                                                           F.F. Thompson Hospital
## 727                                                     Morris Heights Health Center
## 728                                                                                 
## 729                                                                                 
## 730                                                            NYU Langone Hospitals
## 731                                                    Hudson River Healthcare, Inc.
## 732                                                                Highland Hospital
## 733                                        Mount St Marys Hospital and Health Center
## 734                                                    Mary Imogene Bassett Hospital
## 735                                                                                 
## 736                                                                                 
## 737                                                                                 
## 738                                                            NYU Langone Hospitals
## 739                                             Syracuse Community Health Center Inc
## 740                                                            NYU Langone Hospitals
## 741                                                                                 
## 742                                                                                 
## 743                                     Sunnyview Hospital and Rehabilitation Center
## 744                                                              University Hospital
## 745                                                                                 
## 746                                                                                 
## 747                                                                                 
## 748                                                                                 
## 749                                             Whitney M Young Jr Health Center Inc
## 750                                                                                 
## 751                                                    Hudson River Healthcare, Inc.
## 752                                                                                 
## 753                                              St. Joseph's Hospital Health Center
## 754                                                               Samaritan Hospital
## 755                                                      St. Joseph's Medical Center
## 756                                                            Little Falls Hospital
## 757                                                                                 
## 758                                                        Mercy Hospital of Buffalo
## 759                                   Franklin Center for Rehabilitation and Nursing
## 760                                                                      ConnextCare
## 761                                                Long Island Jewish Medical Center
## 762                                                                  Trillium Health
## 763                                                                                 
## 764                                        Planned Parenthood Margaret Sanger Center
## 765                                                               St Peters Hospital
## 766                                                                                 
## 767                                            Niagara Falls Memorial Medical Center
## 768                                             Main Street Radiology at Bayside LLC
## 769                                                                                 
## 770                                                                                 
## 771                                                        Mercy Hospital of Buffalo
## 772                                                      Healthcare Choices NY, Inc.
## 773                                                                                 
## 774                                                   Buffalo General Medical Center
## 775                       Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 776                                                   Chenango Memorial Hospital Inc
## 777                                              Staten Island University Hosp-North
## 778                                                  Cayuga Medical Center at Ithaca
## 779                                                                                 
## 780                               Montefiore Medical Center - Henry & Lucy Moses Div
## 781                                                     Hospital for Special Surgery
## 782                               Montefiore Medical Center - Henry & Lucy Moses Div
## 783                                                                                 
## 784                                                   Wyckoff Heights Medical Center
## 785                               Montefiore Medical Center - Henry & Lucy Moses Div
## 786                                                                                 
## 787                                            East NY Diagnostic & Treatment Center
## 788                                                                                 
## 789                                                            Eastman Dental Center
## 790                                                            NYU Langone Hospitals
## 791                                             St Johns Episcopal Hospital So Shore
## 792                                                 Floating Hospital (Incorporated)
## 793                                     Community Health Center of the North Country
## 794                                                                                 
## 795                                                Long Island Jewish Medical Center
## 796                                                                                 
## 797                                                       Columbia Memorial Hospital
## 798                                                                                 
## 799                                                                   Ellis Hospital
## 800                                                                                 
## 801                                                                                 
## 802                                                          Canton-Potsdam Hospital
## 803                               Montefiore Medical Center - Henry & Lucy Moses Div
## 804                                                                                 
## 805                                                         Franziska Racker Centers
## 806                                                                                 
## 807                                                             Heritage Health Care
## 808                                                         Strong Memorial Hospital
## 809                                                    Hudson River Healthcare, Inc.
## 810                                                            Bronx Dialysis Center
## 811                                                         Strong Memorial Hospital
## 812                                                                                 
## 813                                                                                 
## 814                                                                                 
## 815                                                    Hudson River Healthcare, Inc.
## 816                                                            Rogosin Kidney Center
## 817                                                             Glens Falls Hospital
## 818                                                       A.O. Fox Memorial Hospital
## 819                                                                                 
## 820                                                                                 
## 821                                                       University Dialysis Center
## 822                                                Long Island Jewish Medical Center
## 823                                                                                 
## 824                                                Long Island Jewish Medical Center
## 825                                                                                 
## 826                                                                                 
## 827                                                                                 
## 828                                                                                 
## 829                                                    Hudson River Healthcare, Inc.
## 830                                                                                 
## 831                                                              University Hospital
## 832                                                               St Peters Hospital
## 833                               Montefiore Medical Center - Henry & Lucy Moses Div
## 834                                       East Harlem Council for Human Services Inc
## 835                                                                P R O M E S A Inc
## 836                                                                                 
## 837                                                Long Island Jewish Medical Center
## 838                                                                                 
## 839                                                                   Ellis Hospital
## 840                                                                                 
## 841                                                  University Hospital of Brooklyn
## 842                                                                                 
## 843                                                    Mary Imogene Bassett Hospital
## 844                                                                                 
## 845                                                       Rochester General Hospital
## 846                                             Syracuse Community Health Center Inc
## 847                                                                                 
## 848                                                    Mary Imogene Bassett Hospital
## 849                                                   Allhealth D&T Center-Brooklyn2
## 850                                                                                 
## 851                                                                                 
## 852                                                                                 
## 853                                                   Albany Medical Center Hospital
## 854                                                                                 
## 855                                                                                 
## 856                                                                                 
## 857                                           FMS-Southern Manhattan Dialysis Center
## 858                                                                                 
## 859                                     Faxton-St Lukes Healthcare St Lukes Division
## 860                                                      St. Joseph's Medical Center
## 861                                                                                 
## 862                               Montefiore Medical Center - Henry & Lucy Moses Div
## 863                                                                                 
## 864                                                            Bronx Dialysis Center
## 865                                                            Bronx Dialysis Center
## 866                                                               Doctors United Inc
## 867                                                                Urban Health Plan
## 868                                                                                 
## 869                                                                                 
## 870                                                           Oneida Health Hospital
## 871                                                          McAuliffe Health Center
## 872                                       William F Ryan Community Health Center Inc
## 873                                             Syracuse Community Health Center Inc
## 874                                                                   Ellis Hospital
## 875                                                Wyoming County Community Hospital
## 876                                        Planned Parenthood Margaret Sanger Center
## 877                                                            NYU Langone Hospitals
## 878                                                                                 
## 879                                                                Saratoga Hospital
## 880                                                                                 
## 881                                                Wyoming County Community Hospital
## 882                                                             Glens Falls Hospital
## 883                                                                                 
## 884                               Montefiore Medical Center - Henry & Lucy Moses Div
## 885                                                                                 
## 886                                                                                 
## 887                                                                                 
## 888                           CenterLight Healthcare Diagnostic and Treatment Center
## 889                                                                Saratoga Hospital
## 890                                                                                 
## 891                                                Lower Eastside Service Center Inc
## 892                                                         Strong Memorial Hospital
## 893                                         Morrisania Diagnostic & Treatment Center
## 894                                                      Sisters of Charity Hospital
## 895                                                                                 
## 896                                        Planned Parenthood Margaret Sanger Center
## 897                                          Community Health Center of Buffalo, Inc
## 898                                                                                 
## 899                                                                                 
## 900                                                                                 
## 901                                                       Erie County Medical Center
## 902                         Planned Parenthood of Central and Western New York, Inc.
## 903                                                                                 
## 904                                                           Olean General Hospital
## 905                                                                                 
## 906                                                                                 
## 907                                                            NYU Langone Hospitals
## 908                                                                                 
## 909                                                  North Shore University Hospital
## 910                                                                                 
## 911                                                   Vassar Brothers Medical Center
## 912                                                  Renaissance Health Care Network
## 913                            New York City Department of Health and Mental Hygiene
## 914                           CenterLight Healthcare Diagnostic and Treatment Center
## 915                                                        Damian Family Care Center
## 916                                                        Warrensburg Health Center
## 917                                                                Urban Health Plan
## 918                                   Brownsville Multi-Service Family Health Center
## 919                                                                                 
## 920                                                       Columbia Memorial Hospital
## 921                                                          Mount Sinai Beth Israel
## 922                                             Mt Vernon Neighborhood Health Center
## 923                                                                                 
## 924                                           Lincoln Medical & Mental Health Center
## 925                                                                                 
## 926                                                                                 
## 927                                                            NYU Langone Hospitals
## 928                                                                                 
## 929                                             Jericho Road Community Health Center
## 930                                              Nicholas H. Noyes Memorial Hospital
## 931                                                            NYU Langone Hospitals
## 932                                                      St. Joseph's Medical Center
## 933                                                    Mary Imogene Bassett Hospital
## 934                                           Planned Parenthood Hudson Peconic, Inc
## 935                                                               Samaritan Hospital
## 936                                       Gouverneur Diagnostic and Treatment Center
## 937                                                                                 
## 938                                                                   All County LLC
## 939                                                                                 
## 940                                                                                 
## 941                                        Our Lady of Lourdes Memorial Hospital Inc
## 942                                                                                 
## 943                                                  Cayuga Medical Center at Ithaca
## 944                                                                                 
## 945                                                             Mount Sinai Hospital
## 946                                                           F.F. Thompson Hospital
## 947                                                       Westchester Medical Center
## 948                                                                                 
## 949                                                                                 
## 950                                                     Hospital for Special Surgery
## 951  The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 952                                     Eastern Niagara Hospital - Lockport Division
## 953                                                   Albany Medical Center Hospital
## 954                              BronxCare Dr. Martin Luther King, Jr. Health Center
## 955                                                  Port Washington Dialysis Center
## 956                                                                   Premium Health
## 957                                                                                 
## 958                                                               St Peters Hospital
## 959                                                                                 
## 960                                                                                 
## 961                                                             Refuah Health Center
## 962                                                                                 
## 963                                                                                 
## 964                                                                                 
## 965              Planned Parenthood of the North Country, New York, Inc. - Watertown
## 966                                                                                 
## 967                                                     White Plains Hospital Center
## 968                                                                                 
## 969                                                                                 
## 970                                                                                 
## 971                                                                                 
## 972                               United Memorial Medical Center North Street Campus
## 973                                                           Olean General Hospital
## 974                                           FMS-Southern Manhattan Dialysis Center
## 975                                                        Interfaith Medical Center
## 976                                                  University Hospital of Brooklyn
## 977                                                                                 
## 978                                                                                 
## 979                                                       Westchester Medical Center
## 980                                       Brooklyn Hospital Center - Downtown Campus
## 981                                                    Northern Westchester Hospital
## 982                                                            NYU Langone Hospitals
## 983                                                                                 
## 984                                    Family Health Network of Central New York Inc
## 985                                                                                 
## 986                                                   Bon Secours Community Hospital
## 987                                                                                 
## 988                                                                                 
## 989              United Health Services Hospitals Inc. - Binghamton General Hospital
## 990                                               United Cerebral Palsy D & T Center
## 991                                                   Family Health Center of Harlem
## 992                                              Metro Community Health Center Bronx
## 993                                       William F Ryan Community Health Center Inc
## 994                                      Adirondack Medical Center-Saranac Lake Site
## 995                                                                                 
## 996                                             Syracuse Community Health Center Inc
## 997                                 Winifred Masterson Burke Rehabilitation Hospital
## 998                                                                                 
## 999                                                            NYU Langone Hospitals
## 1000                                                           NYU Langone Hospitals
## 1001                                                 North Shore University Hospital
## 1002                                                                                
## 1003                                       Our Lady of Lourdes Memorial Hospital Inc
## 1004                                                                                
## 1005                                                                                
## 1006                                                                                
## 1007                                                                                
## 1008                                       Planned Parenthood Margaret Sanger Center
## 1009                                                                                
## 1010                                Winifred Masterson Burke Rehabilitation Hospital
## 1011                                                                                
## 1012                                                                                
## 1013                                                           Bronx Dialysis Center
## 1014                                                                 Phelps Hospital
## 1015                                                      Rochester General Hospital
## 1016                                                                                
## 1017                                                                                
## 1018                                               Long Island Jewish Medical Center
## 1019                                                                                
## 1020                                                           The Chautauqua Center
## 1021                                                              St Peters Hospital
## 1022                                                  Long Island Community Hospital
## 1023                                                       Maimonides Medical Center
## 1024                                                                                
## 1025                                                                                
## 1026                                                           Bronx Dialysis Center
## 1027                                                                                
## 1028                                                                                
## 1029              Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 1030                                                                                
## 1031                                     Bedford Stuyvesant Family Health Center Inc
## 1032                                                           Bronx Dialysis Center
## 1033                                                        Mount Sinai South Nassau
## 1034                                                                                
## 1035                                                                                
## 1036                                                                                
## 1037                                                  Family Health Center of Harlem
## 1038                                                                  Ellis Hospital
## 1039                                                               Urban Health Plan
## 1040                                                 St Regis Mohawk Health Services
## 1041                                                                                
## 1042                                                  Albany Medical Center Hospital
## 1043                                                                                
## 1044                                                                                
## 1045                                                                                
## 1046                                Fort Tryon Center for Rehabilitation and Nursing
## 1047                                          FMS-Southern Manhattan Dialysis Center
## 1048                                                           NYU Langone Hospitals
## 1049                                                 North Shore University Hospital
## 1050                                             Columbia University Health Care Inc
## 1051                                                                                
## 1052                                              Richmond University Medical Center
## 1053                                                                                
## 1054                                                      Carthage Area Hospital Inc
## 1055                           New York City Department of Health and Mental Hygiene
## 1056                                                    Hospital for Special Surgery
## 1057                                                                                
## 1058                                                                                
## 1059                                                  Vassar Brothers Medical Center
## 1060                                                                                
## 1061                                            ODA Primary Health Care Network, Inc
## 1062                                                                 Oswego Hospital
## 1063                                                           NYU Langone Hospitals
## 1064                                                                                
## 1065                                                                                
## 1066                                                                                
## 1067                                                                                
## 1068                                                                                
## 1069                                                      Rochester General Hospital
## 1070                                                              Samaritan Hospital
## 1071                                          Good Samaritan Hospital Medical Center
## 1072                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1073             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1074                                                   Mary Imogene Bassett Hospital
## 1075                                                                                
## 1076                                  University Hospital SUNY Health Science Center
## 1077                                                                                
## 1078                                                                                
## 1079                                           Buffalo Hearing and Speech Center Inc
## 1080                                                      Columbia Memorial Hospital
## 1081                                                 Baker Victory Healthcare Center
## 1082                                                                                
## 1083                                                              St Peters Hospital
## 1084                                                                                
## 1085                                                                                
## 1086                                                   Mary Imogene Bassett Hospital
## 1087                                                        SJRH - St Johns Division
## 1088                                                                                
## 1089                                                                                
## 1090                                        North Country Family Health Center, Inc.
## 1091                                                                                
## 1092                                                 The Unity Hospital of Rochester
## 1093                                        Cumberland Diagnostic & Treatment Center
## 1094                                                                                
## 1095                                                                                
## 1096                                                  Family Health Center of Harlem
## 1097                                          FMS-Southern Manhattan Dialysis Center
## 1098                                                         JGB Rehabilitation Corp
## 1099                                                                                
## 1100                                                   Mary Imogene Bassett Hospital
## 1101                                                       Maimonides Medical Center
## 1102                                                             Lenox Hill Hospital
## 1103                                Memorial Hospital for Cancer and Allied Diseases
## 1104                                                                                
## 1105                                  Weill Cornell Imaging at New York Presbyterian
## 1106                                                              St. James Hospital
## 1107                                                   Mary Imogene Bassett Hospital
## 1108                                                                                
## 1109                                                               Highland Hospital
## 1110                                                                     Medcare LLC
## 1111                                                      Columbia Memorial Hospital
## 1112                                                                                
## 1113                                                                                
## 1114             Planned Parenthood of the North Country, New York, Inc. - Watertown
## 1115                                                 Jamaica Hospital Medical Center
## 1116                                                                                
## 1117                                                    Community Healthcare Network
## 1118                                                           Coney Island Hospital
## 1119                                                                                
## 1120                                          HASC Diagnostic & Treatment Center Inc
## 1121                                                 Renaissance Health Care Network
## 1122                                             Medalliance Medical Health Services
## 1123                                                              Eddy Village Green
## 1124                                                                                
## 1125                                                            Glens Falls Hospital
## 1126                                                                                
## 1127                                                               Highland Hospital
## 1128                                                   Hudson River Healthcare, Inc.
## 1129                                                     NewYork-Presbyterian/Queens
## 1130                                               Long Island Jewish Medical Center
## 1131                                                            Mount Sinai Hospital
## 1132                                                  Buffalo General Medical Center
## 1133                                                                                
## 1134                                                         Mount Sinai Beth Israel
## 1135                                                                                
## 1136                                          FMS-Southern Manhattan Dialysis Center
## 1137                                                      Rochester General Hospital
## 1138                                                        Nathan Littauer Hospital
## 1139                                                 The Unity Hospital of Rochester
## 1140                                                            Mount Sinai Hospital
## 1141                                                                                
## 1142                                                                                
## 1143                                                                                
## 1144                                                                                
## 1145                                             Staten Island University Hosp-North
## 1146                                             Staten Island University Hosp-North
## 1147                                                                                
## 1148                                                           St. Mary's Healthcare
## 1149                                            Mt Vernon Neighborhood Health Center
## 1150                                                                                
## 1151                                            Syracuse Community Health Center Inc
## 1152                                                                                
## 1153                                                                                
## 1154                                                                                
## 1155                                                                                
## 1156                                                                                
## 1157                                                                                
## 1158                                                          Olean General Hospital
## 1159                                                                                
## 1160                                             St. Joseph's Hospital Health Center
## 1161                                                                                
## 1162                                                                                
## 1163                                                Segundo Ruiz Belvis D & T Center
## 1164                                                                                
## 1165       Suffolk County Department of Health Clinic Services - Hauppauge Methadone
## 1166 The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 1167                                                                                
## 1168                                                                                
## 1169                                               Hempstead Community Health Center
## 1170                                                      Carthage Area Hospital Inc
## 1171                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1172                                          Planned Parenthood Hudson Peconic, Inc
## 1173                                                        Strong Memorial Hospital
## 1174                                                               Wayne Health Care
## 1175                                                                                
## 1176                                                                                
## 1177                                                                                
## 1178                                                                                
## 1179                                                           NYU Langone Hospitals
## 1180                                                    White Plains Hospital Center
## 1181                                                                                
## 1182                                          Good Samaritan Hospital Medical Center
## 1183                                                      Rochester General Hospital
## 1184                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 1185                                                                                
## 1186                                         Oak Orchard Community Health Center Inc
## 1187                                                                                
## 1188                                                               Urban Health Plan
## 1189                                                                                
## 1190                                               Long Island Jewish Medical Center
## 1191                                                                                
## 1192                                                                  Ellis Hospital
## 1193                                    HealthAlliance Hospital Mary's Avenue Campus
## 1194                                                    Morris Heights Health Center
## 1195                                                                                
## 1196                                                                                
## 1197                                                                                
## 1198                                       Planned Parenthood Margaret Sanger Center
## 1199                                                    Community Healthcare Network
## 1200                                                  Claxton-Hepburn Medical Center
## 1201                                                                                
## 1202 The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 1203                                                                                
## 1204                                                                                
## 1205                                                           NYU Langone Hospitals
## 1206                                                    Community Healthcare Network
## 1207                                                                                
## 1208                                                Floating Hospital (Incorporated)
## 1209                                                 Catholic Managed Long Term Care
## 1210                                                                                
## 1211                                                                                
## 1212                                                               Settlement Health
## 1213                                                         JGB Rehabilitation Corp
## 1214                                                       BronxCare Hospital Center
## 1215                                                           NYU Langone Hospitals
## 1216                                                               SBH Health System
## 1217                                                  Family Health Center of Harlem
## 1218                                                       Dialysis Center of Oneida
## 1219                                                                                
## 1220                                                                                
## 1221                                               Brookdale Hospital Medical Center
## 1222                                                       Auburn Community Hospital
## 1223                                                             Lenox Hill Hospital
## 1224                                                           NYU Langone Hospitals
## 1225                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1226                                                                                
## 1227                                                            Mount Sinai Hospital
## 1228                                                           NYU Langone Hospitals
## 1229                                                                                
## 1230                                                                                
## 1231                                                      Rochester General Hospital
## 1232                                                                                
## 1233                                                                                
## 1234                                          Staten Island Artificial Kidney Center
## 1235                                                             University Hospital
## 1236                                                                His Branches Inc
## 1237                                                     NewYork-Presbyterian/Queens
## 1238                                                             University Hospital
## 1239                                                                                
## 1240                                                                                
## 1241              Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 1242                                                                                
## 1243                                                   Hudson River Healthcare, Inc.
## 1244                                                 The Unity Hospital of Rochester
## 1245                                                            Glens Falls Hospital
## 1246                                                  Albany Medical Center Hospital
## 1247                                                                                
## 1248                                                 The Unity Hospital of Rochester
## 1249                                                    Morris Heights Health Center
## 1250                                                                                
## 1251                                                           Bronx Dialysis Center
## 1252                                                                                
## 1253                                    Eastern Niagara Hospital - Lockport Division
## 1254                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 1255                                                      Arnot Ogden Medical Center
## 1256                                                      A.O. Fox Memorial Hospital
## 1257                                                           The Chautauqua Center
## 1258                                                                                
## 1259                                                                                
## 1260                                                  Buffalo General Medical Center
## 1261                                             Staten Island University Hosp-North
## 1262                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1263                                               Long Island Jewish Medical Center
## 1264                                         HealthAlliance Hospital Broadway Campus
## 1265             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1266                                                                     ConnextCare
## 1267                                                                                
## 1268                                                                                
## 1269                                      William F Ryan Community Health Center Inc
## 1270                                                                                
## 1271                             BronxCare Dr. Martin Luther King, Jr. Health Center
## 1272                                                           NYU Langone Hospitals
## 1273                                                                                
## 1274                                                                                
## 1275                                                                                
## 1276                                      William F Ryan Community Health Center Inc
## 1277                                                               SBH Health System
## 1278                              United Memorial Medical Center North Street Campus
## 1279                                                          Putnam Hospital Center
## 1280                                    Faxton-St Lukes Healthcare St Lukes Division
## 1281                                            Open Door Family Medical Center, Inc
## 1282                                          FMS-Southern Manhattan Dialysis Center
## 1283                                                                                
## 1284                                                           NYU Langone Hospitals
## 1285                                                                                
## 1286                                                                                
## 1287                                      Monroe County Department of Health Clinics
## 1288                                    Faxton-St Lukes Healthcare St Lukes Division
## 1289                                             Metro Community Health Center Bronx
## 1290                                                                                
## 1291                                                           NYU Langone Hospitals
## 1292                                                                                
## 1293                                                          F.F. Thompson Hospital
## 1294                                               New Alternatives for Children Inc
## 1295                                                                                
## 1296                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1297                                                                                
## 1298                                  University Hospital SUNY Health Science Center
## 1299                                                                                
## 1300                                                      University Dialysis Center
## 1301                                                                                
## 1302                                                         Adapt Community Network
## 1303                              Palm Gardens Center for Nursing and Rehabilitation
## 1304                                                                                
## 1305                                                                                
## 1306                                                                                
## 1307                                                      Columbia Memorial Hospital
## 1308                                                  Buffalo General Medical Center
## 1309                                                        Samaritan Medical Center
## 1310                                                                                
## 1311                                                                                
## 1312                                                           Bronx Dialysis Center
## 1313                                 Family Planning of South Central New York, Inc.
## 1314                                                              Samaritan Hospital
## 1315                                         Oak Orchard Community Health Center Inc
## 1316                                                                                
## 1317                                                                                
## 1318                                                      Cleve Hill Dialysis Center
## 1319                                          FMS-Southern Manhattan Dialysis Center
## 1320                                                                                
## 1321                                             Staten Island University Hosp-North
## 1322                                                       Maimonides Medical Center
## 1323                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1324                                                           Eastman Dental Center
## 1325                                    Community Health Center of the North Country
## 1326                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1327                                                       Warrensburg Health Center
## 1328                                                                                
## 1329                                                                                
## 1330                                                     Sisters of Charity Hospital
## 1331                                                 University Hospital of Brooklyn
## 1332                                                                                
## 1333                                                 Community Memorial Hospital Inc
## 1334                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1335                                    Prasad Childrens Dental Health Program, Inc.
## 1336                                        Morrisania Diagnostic & Treatment Center
## 1337                                                                                
## 1338                                                                                
## 1339                                             Clifton Springs Hospital and Clinic
## 1340                                                    Community Healthcare Network
## 1341                                                    Morris Heights Health Center
## 1342                                                    Hospital for Special Surgery
## 1343                                                                 Phelps Hospital
## 1344                                                                                
## 1345                                                        Nathan Littauer Hospital
## 1346                                                   St Anthony Community Hospital
## 1347     The University of Vermont Health Network - Elizabethtown Community Hospital
## 1348                                                  Tioga County Health Department
## 1349                                                                                
## 1350                                                                                
## 1351                                       Planned Parenthood Margaret Sanger Center
## 1352                              Michael Callen-Audre Lorde Community Health Center
## 1353                                                                                
## 1354                                                                                
## 1355                                                     Rome Memorial Hospital, Inc
## 1356                                                    Utica Avenue Dialysis Clinic
## 1357                                                                                
## 1358                                                                                
## 1359                           Yonkers Gardens Center for Nursing and Rehabilitation
## 1360                                        Cumberland Diagnostic & Treatment Center
## 1361                                                 Oswego County Opportunities Inc
## 1362                                        L'Refuah Medical & Rehabilitation Center
## 1363                                                St. Joseph's Dialysis - Regional
## 1364                                       Planned Parenthood Margaret Sanger Center
## 1365                                                                                
## 1366                                                                                
## 1367                                                                                
## 1368                                                                                
## 1369                                                    Delaware Valley Hospital Inc
## 1370                                               Long Island Jewish Medical Center
## 1371                                                      Care For the Homeless, Inc
## 1372                                                           Little Falls Hospital
## 1373                                                              Samaritan Hospital
## 1374                                               New York University Dental Center
## 1375                                                        Nathan Littauer Hospital
## 1376                                Memorial Hospital for Cancer and Allied Diseases
## 1377                                                                                
## 1378                                                   Lewis County General Hospital
## 1379                                                    Community Healthcare Network
## 1380                                       Our Lady of Lourdes Memorial Hospital Inc
## 1381                           New York City Department of Health and Mental Hygiene
## 1382                                                                                
## 1383                                               Long Island Jewish Medical Center
## 1384                                    Ahava Medical and Rehabilitation Center, LLC
## 1385                                                                                
## 1386                                                         Mount Sinai Beth Israel
## 1387                                                                                
## 1388                                               Hempstead Community Health Center
## 1389                                                 Jamaica Hospital Medical Center
## 1390                                                               Saratoga Hospital
## 1391                                                              Samaritan Hospital
## 1392                                               Long Island Jewish Medical Center
## 1393                                                   Lewis County General Hospital
## 1394                                                                                
## 1395                                                                                
## 1396                                                           Bronx Dialysis Center
## 1397                                                                                
## 1398                                                               Highland Hospital
## 1399                                       Our Lady of Lourdes Memorial Hospital Inc
## 1400                                          Planned Parenthood Hudson Peconic, Inc
## 1401                                                                                
## 1402                                                               Saratoga Hospital
## 1403                                                   Mary Imogene Bassett Hospital
## 1404                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1405                                                           NYU Langone Hospitals
## 1406                                    Sunnyview Hospital and Rehabilitation Center
## 1407                                             Staten Island University Hosp-North
## 1408                                                   Mary Imogene Bassett Hospital
## 1409                                                    Morris Heights Health Center
## 1410                                                              Samaritan Hospital
## 1411                                                         Adapt Community Network
## 1412                                                      Columbia Memorial Hospital
## 1413                                            ODA Primary Health Care Network, Inc
## 1414                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1415                                                                                
## 1416                                                       Warrensburg Health Center
## 1417                                                                                
## 1418                                                         Mount Sinai Beth Israel
## 1419                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1420                                   Family Health Network of Central New York Inc
## 1421                                                              Samaritan Hospital
## 1422                                                           NYU Langone Hospitals
## 1423                                    Faxton-St Lukes Healthcare St Lukes Division
## 1424                                  Finger Lakes Migrant Health Care Project, Inc.
## 1425                                                           NYU Langone Hospitals
## 1426                                                                                
## 1427                                                                                
## 1428                                                                                
## 1429                                                          Putnam Hospital Center
## 1430                                  University Hospital SUNY Health Science Center
## 1431                                                                                
## 1432                                                      Rochester General Hospital
## 1433                                                        Strong Memorial Hospital
## 1434                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1435                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 1436                                          FMS-Southern Manhattan Dialysis Center
## 1437                                                        Strong Memorial Hospital
## 1438                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1439                        Planned Parenthood of Central and Western New York, Inc.
## 1440                                                      Rochester General Hospital
## 1441                                                      Peconic Bay Medical Center
## 1442                                                                                
## 1443                                                      The Children's Aid Society
## 1444                                                                                
## 1445                                                                                
## 1446                                                     St. Joseph's Medical Center
## 1447                                                              Samaritan Hospital
## 1448                                       Our Lady of Lourdes Memorial Hospital Inc
## 1449                                          Planned Parenthood Hudson Peconic, Inc
## 1450                                                                                
## 1451                                                 Renaissance Health Care Network
## 1452                                                                                
## 1453                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1454                                                                                
## 1455                                                                                
## 1456                                                      Rochester General Hospital
## 1457                                                              St Peters Hospital
## 1458                                          FMS-Southern Manhattan Dialysis Center
## 1459                                    Eastern Niagara Hospital - Lockport Division
## 1460                                                   Lewis County General Hospital
## 1461                                                       Damian Family Care Center
## 1462                                                                 Phelps Hospital
## 1463                                                      Arnot Ogden Medical Center
## 1464                                                                                
## 1465                                                                                
## 1466                                                                                
## 1467                                                     Sisters of Charity Hospital
## 1468                                                        Samaritan Medical Center
## 1469                                                 Port Washington Dialysis Center
## 1470                                            Open Door Family Medical Center, Inc
## 1471                                                                                
## 1472                                                              Samaritan Hospital
## 1473                                                        Lutheran Retirement Home
## 1474                                                                                
## 1475                                  Northwest Buffalo Community Health Care Center
## 1476                                                                                
## 1477                                      William F Ryan Community Health Center Inc
## 1478                                                               Urban Health Plan
## 1479                                     NewYork-Presbyterian/Hudson Valley Hospital
## 1480                                                                                
## 1481                                                                                
## 1482                                                                                
## 1483                                                                                
## 1484                                       Our Lady of Lourdes Memorial Hospital Inc
## 1485                                                                                
## 1486                                                                                
## 1487                                                  Allhealth D&T Center-Brooklyn2
## 1488                                                                  Premium Health
## 1489                                                                                
## 1490                                                      Cleve Hill Dialysis Center
## 1491                                                                                
## 1492                                                 North Shore University Hospital
## 1493                                         Oak Orchard Community Health Center Inc
## 1494                                           Niagara Falls Memorial Medical Center
## 1495                SUNY at Stony Brook School of Dental Medicine Dental Care Center
## 1496                                                                                
## 1497                                                   Hudson River Healthcare, Inc.
## 1498                                                                                
## 1499                                                                 Oswego Hospital
## 1500                                                        Strong Memorial Hospital
## 1501                                         Community Health Center of Buffalo, Inc
## 1502                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1503                                            Mt Vernon Neighborhood Health Center
## 1504                                                                                
## 1505                                                                                
## 1506                                                                                
## 1507                                                                                
## 1508                                                                                
## 1509                                                                                
## 1510                                                      University Dialysis Center
## 1511                                                 The Unity Hospital of Rochester
## 1512                                                    Morris Heights Health Center
## 1513                                                      The Children's Aid Society
## 1514                                                        Strong Memorial Hospital
## 1515                                                                                
## 1516                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1517                                                    Delaware Valley Hospital Inc
## 1518                                                           NYU Langone Hospitals
## 1519                                                   Brooklyn Plaza Medical Center
## 1520                                                           Bronx Dialysis Center
## 1521                                                       BronxCare Hospital Center
## 1522                                                      Westchester Medical Center
## 1523                                                                                
## 1524                                                                                
## 1525                                                           Bronx Dialysis Center
## 1526                                                  Vassar Brothers Medical Center
## 1527                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1528                                                                                
## 1529                                                                                
## 1530                                                                                
## 1531                                                               Urban Health Plan
## 1532                                                      Westchester Medical Center
## 1533                                                                                
## 1534                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1535                                                  Family Health Center of Harlem
## 1536                                                   Northern Westchester Hospital
## 1537                                                           Bronx Dialysis Center
## 1538                                                      Rochester General Hospital
## 1539                                                                                
## 1540                                                               Highland Hospital
## 1541                                                                                
## 1542                                                              St Peters Hospital
## 1543                                                                                
## 1544                                                 Port Washington Dialysis Center
## 1545                                                                                
## 1546                                                                                
## 1547                                                                                
## 1548                                                           St. Mary's Healthcare
## 1549                                                  Family Health Center of Harlem
## 1550                                          FMS-Southern Manhattan Dialysis Center
## 1551                                                                                
## 1552                                                           St. Mary's Healthcare
## 1553     The University of Vermont Health Network - Elizabethtown Community Hospital
## 1554                                                                                
## 1555                                                           NYU Langone Hospitals
## 1556                                                                                
## 1557                                                                                
## 1558                                                                                
## 1559                                                        SJRH - St Johns Division
## 1560                                                            Mount Sinai Hospital
## 1561                                                                                
## 1562                                                                                
## 1563                                                                                
## 1564                                                                                
## 1565                                                                                
## 1566                                                             University Hospital
## 1567                                                            Mount Sinai Hospital
## 1568                                                                                
## 1569                                        North Country Family Health Center, Inc.
## 1570                                                   Mary Imogene Bassett Hospital
## 1571                                                               Highland Hospital
## 1572                                                                                
## 1573                                                                                
## 1574                                                           NYU Langone Hospitals
## 1575                                                    White Plains Hospital Center
## 1576                                                                                
## 1577                                          Good Samaritan Hospital Medical Center
## 1578                                       Planned Parenthood Margaret Sanger Center
## 1579                                                                                
## 1580                                                                                
## 1581                                                      Rochester General Hospital
## 1582                                                       Warrensburg Health Center
## 1583                                                                                
## 1584                                                                                
## 1585                                                 The Unity Hospital of Rochester
## 1586                                                             University Hospital
## 1587                                                         Geneva General Hospital
## 1588                                                                  Ellis Hospital
## 1589             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1590                                           Niagara Falls Memorial Medical Center
## 1591                                                                                
## 1592                                    Community Health Center of the North Country
## 1593                                                                                
## 1594                             Southern Tier Community Health Center Network, Inc.
## 1595                                                              St Peters Hospital
## 1596                                                               Urban Health Plan
## 1597                                                            St. Charles Hospital
## 1598                                                                                
## 1599                                                                                
## 1600                                                                                
## 1601                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1602                                                               Saratoga Hospital
## 1603                                                                                
## 1604                                                    Morris Heights Health Center
## 1605                                                              St Peters Hospital
## 1606                                                                                
## 1607                                               Long Island Jewish Medical Center
## 1608                                                                                
## 1609                                               Brookdale Hospital Medical Center
## 1610                                                   Hudson River Healthcare, Inc.
## 1611                                                               Narco Freedom Inc
## 1612                                               New York University Dental Center
## 1613                                                                                
## 1614                                          FMS-Southern Manhattan Dialysis Center
## 1615       Suffolk County Department of Health Clinic Services - Hauppauge Methadone
## 1616                                                            Mount Sinai Hospital
## 1617                                                               Saratoga Hospital
## 1618                                                                                
## 1619                                                                                
## 1620                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1621                                                         Hometown Health Centers
## 1622                                                                                
## 1623                                                                                
## 1624                                             Cooperative Magnetic Imaging Center
## 1625                                                          WNY Medical Management
## 1626                                                                                
## 1627                                                 University Hospital of Brooklyn
## 1628                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1629                                                                                
## 1630                                          FMS-Southern Manhattan Dialysis Center
## 1631                                                  Buffalo General Medical Center
## 1632                                                               Urban Health Plan
## 1633                                                    Morris Heights Health Center
## 1634                                                                                
## 1635                                                                                
## 1636                                                                                
## 1637                                                                                
## 1638                                                                                
## 1639            The University of Vermont Health Network - Alice Hyde Medical Center
## 1640                                                                                
## 1641                                             Upper Hudson Planned Parenthood Inc
## 1642                                                                                
## 1643                                                               Highland Hospital
## 1644                                                  Family Health Center of Harlem
## 1645             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1646                                            Open Door Family Medical Center, Inc
## 1647                                                   New York Neuro & Rehab Center
## 1648                                                    Morris Heights Health Center
## 1649                                        Cumberland Diagnostic & Treatment Center
## 1650                                                                                
## 1651                                              START Treatment & Recovery Centers
## 1652                                                                                
## 1653                                                                                
## 1654                                         Westchester County Department of Health
## 1655                                                        Mount Sinai South Nassau
## 1656                                                                                
## 1657                                    Faxton-St Lukes Healthcare St Lukes Division
## 1658                                                   Hudson River Healthcare, Inc.
## 1659                                               Long Island Jewish Medical Center
## 1660                                                            Glens Falls Hospital
## 1661                                  Weill Cornell Imaging at New York Presbyterian
## 1662                                                  Albany Medical Center Hospital
## 1663 The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 1664                                                    Community Healthcare Network
## 1665                                                                 Oswego Hospital
## 1666                                                        Strong Memorial Hospital
## 1667                                                          Betances Health Center
## 1668                                                                                
## 1669                                                                                
## 1670                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1671                    The Hamlet Rehabilitation and Healthcare Center at Nesconset
## 1672                                                              St Peters Hospital
## 1673                                                     St Elizabeth Medical Center
## 1674                                                         Geneva General Hospital
## 1675                                                                     ConnextCare
## 1676                                          FMS-Southern Manhattan Dialysis Center
## 1677                                                                  Ellis Hospital
## 1678                                                    Newtown Dialysis Center, Inc
## 1679                                                   Mary Imogene Bassett Hospital
## 1680                                                                                
## 1681                                                   Mary Imogene Bassett Hospital
## 1682                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1683                                                           St. Mary's Healthcare
## 1684                                                                                
## 1685                                                           Bronx Dialysis Center
## 1686                                                      Rochester General Hospital
## 1687                                                            St. Charles Hospital
## 1688                                                           NYU Langone Hospitals
## 1689                                                 The Unity Hospital of Rochester
## 1690                                       Mount St Marys Hospital and Health Center
## 1691                                                       Broome County Health Dept
## 1692                                                                                
## 1693                                                                                
## 1694                                                                     ConnextCare
## 1695                                                           Bronx Dialysis Center
## 1696                                    Faxton-St Lukes Healthcare St Lukes Division
## 1697                                                                                
## 1698                                                  Long Island Community Hospital
## 1699                                                                                
## 1700                                              START Treatment & Recovery Centers
## 1701                                                                                
## 1702                                       Planned Parenthood Margaret Sanger Center
## 1703                                  Four Seasons Nursing and Rehabilitation Center
## 1704                                                            Calvary Hospital Inc
## 1705                                                         Canton-Potsdam Hospital
## 1706                                                               Urban Health Plan
## 1707                              Michael Callen-Audre Lorde Community Health Center
## 1708                                                                                
## 1709                                                                                
## 1710                                                                                
## 1711                                                               SBH Health System
## 1712                                                              Samaritan Hospital
## 1713                                                                                
## 1714                                                  City Wide Health Facility Inc.
## 1715                                                                                
## 1716                                                                                
## 1717                                                                 Oswego Hospital
## 1718                                                                                
## 1719                                                                                
## 1720                                                        Bellevue Hospital Center
## 1721                                                 Port Washington Dialysis Center
## 1722                                                             Gouverneur Hospital
## 1723                                                                                
## 1724                                        Morrisania Diagnostic & Treatment Center
## 1725                                                                                
## 1726                                   Family Health Network of Central New York Inc
## 1727                                                           Little Falls Hospital
## 1728                                                           NYU Langone Hospitals
## 1729                                                 Cayuga Medical Center at Ithaca
## 1730                                                             St Francis Hospital
## 1731                                                                                
## 1732                                                    Hospital for Special Surgery
## 1733                                Winifred Masterson Burke Rehabilitation Hospital
## 1734                                                  Long Island Community Hospital
## 1735                                                                                
## 1736                                             Nicholas H. Noyes Memorial Hospital
## 1737                                                                                
## 1738                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1739                                                                                
## 1740                                                          Oneida Health Hospital
## 1741                                                                                
## 1742                                           Joseph P Addabbo-Family Health Center
## 1743                                          FMS-Southern Manhattan Dialysis Center
## 1744                                                                                
## 1745                                                                                
## 1746                                                                 Phelps Hospital
## 1747                                  University Hospital SUNY Health Science Center
## 1748                                                      Carthage Area Hospital Inc
## 1749                                        L'Refuah Medical & Rehabilitation Center
## 1750                                                         Hometown Health Centers
## 1751                                                               Highland Hospital
## 1752                                                                                
## 1753                                                    Community Healthcare Network
## 1754                                         HealthAlliance Hospital Broadway Campus
## 1755                                                                                
## 1756                                                                     ConnextCare
## 1757                                                                                
## 1758                                                                                
## 1759                                                   Brooklyn Plaza Medical Center
## 1760                                                                                
## 1761                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1762                                                Brookdale Family Care Center Inc
## 1763                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1764                                                   Long Island Select Healthcare
## 1765                                                                                
## 1766                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 1767                                                    White Plains Hospital Center
## 1768                                                                                
## 1769                                                   Mary Imogene Bassett Hospital
## 1770                                                        Mount Sinai South Nassau
## 1771                                                      Arnot Ogden Medical Center
## 1772                                                                                
## 1773                                                              St. James Hospital
## 1774                                                   Mary Imogene Bassett Hospital
## 1775                                                                                
## 1776                                                                                
## 1777                                                        Strong Memorial Hospital
## 1778                                                                                
## 1779                                                                                
## 1780                                                                                
## 1781                                                                                
## 1782                                Memorial Hospital for Cancer and Allied Diseases
## 1783                                                                                
## 1784                                                                                
## 1785                                        Cumberland Diagnostic & Treatment Center
## 1786                                                                                
## 1787                                                                                
## 1788                                          FMS-Southern Manhattan Dialysis Center
## 1789                                                                                
## 1790                                                                                
## 1791                                                              Samaritan Hospital
## 1792                                                        Mount Sinai South Nassau
## 1793                                             Staten Island University Hosp-North
## 1794                                  University Hospital SUNY Health Science Center
## 1795                                               Long Island Jewish Medical Center
## 1796                                                   East Hill Family Medical Inc.
## 1797                                                                                
## 1798                                                           NYU Langone Hospitals
## 1799                                                          Margaretville Hospital
## 1800                                                  Chenango Memorial Hospital Inc
## 1801                                                                                
## 1802                                                                                
## 1803                                                                                
## 1804                                                              Samaritan Hospital
## 1805                                                                                
## 1806                                       Planned Parenthood Margaret Sanger Center
## 1807                                               Long Island Jewish Medical Center
## 1808                                                                                
## 1809                                                             University Hospital
## 1810                                                                                
## 1811                                                           NYU Langone Hospitals
## 1812                                                  The New Jewish Home, Manhattan
## 1813                                                               Saratoga Hospital
## 1814                                                  Buffalo General Medical Center
## 1815                                                           NYU Langone Hospitals
## 1816                                            ODA Primary Health Care Network, Inc
## 1817                                                                                
## 1818                                                                                
## 1819                                                           Bronx Dialysis Center
## 1820                                                                                
## 1821                                                                                
## 1822                                                                                
## 1823                                                              Doctors United Inc
## 1824                                                                                
## 1825                                                  Claxton-Hepburn Medical Center
## 1826                                                          F.F. Thompson Hospital
## 1827                                          FMS-Southern Manhattan Dialysis Center
## 1828                                                                                
## 1829                                                              St Peters Hospital
## 1830                                                            Refuah Health Center
## 1831                                                              St. James Hospital
## 1832                                                                                
## 1833                                                         Mount Sinai Beth Israel
## 1834                                                       BronxCare Hospital Center
## 1835                                    Sunnyview Hospital and Rehabilitation Center
## 1836                                                                                
## 1837              Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 1838                                  University Hospital SUNY Health Science Center
## 1839                                                       Warrensburg Health Center
## 1840                                                                                
## 1841                                                                                
## 1842                                                                                
## 1843                                                              Southside Hospital
## 1844                                           Century Medical & Dental Center, Inc.
## 1845                                                                                
## 1846 The University of Vermont Health Network - Champlain Valley Physicians Hospital
## 1847                                                           St. Mary's Healthcare
## 1848                                                              Eddy Village Green
## 1849                                            Syracuse Community Health Center Inc
## 1850                                             St. Joseph's Hospital Health Center
## 1851                                                                                
## 1852                                                  Buffalo General Medical Center
## 1853                                                                                
## 1854                                         HealthAlliance Hospital Broadway Campus
## 1855                                          FMS-Southern Manhattan Dialysis Center
## 1856                                                        Strong Memorial Hospital
## 1857                                         HealthAlliance Hospital Broadway Campus
## 1858                                                       Damian Family Care Center
## 1859                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1860                                                                                
## 1861                                   New York Eye and Ear Infirmary of Mount Sinai
## 1862                                                    Morris Heights Health Center
## 1863                                                           NYU Langone Hospitals
## 1864                                                           Bronx Dialysis Center
## 1865             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1866                                                                                
## 1867                                                                                
## 1868                                                             Schofield Residence
## 1869                                                                                
## 1870                                                                                
## 1871                                                   Hudson River Healthcare, Inc.
## 1872                                                      Rochester General Hospital
## 1873                                                              Samaritan Hospital
## 1874                                                                                
## 1875                                                                                
## 1876                                                                                
## 1877                                                 Oneida County Health Department
## 1878                                                                                
## 1879                                                                                
## 1880                                                  Buffalo General Medical Center
## 1881                                                     Sisters of Charity Hospital
## 1882                                                              St Peters Hospital
## 1883                                                        Strong Memorial Hospital
## 1884                                                            Refuah Health Center
## 1885                                                             Gouverneur Hospital
## 1886                                                           NYU Langone Hospitals
## 1887                                                                                
## 1888                                                                                
## 1889                                                 Jamaica Hospital Medical Center
## 1890                                                                                
## 1891             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1892             United Health Services Hospitals Inc. - Binghamton General Hospital
## 1893                                                            Glens Falls Hospital
## 1894                                                     Rome Memorial Hospital, Inc
## 1895                                                                                
## 1896                                                               Saratoga Hospital
## 1897                                                  Family Health Center of Harlem
## 1898                                                                                
## 1899                                                                                
## 1900                                       Our Lady of Lourdes Memorial Hospital Inc
## 1901                                                                                
## 1902                                                      The Children's Aid Society
## 1903                                                                                
## 1904                                  Finger Lakes Migrant Health Care Project, Inc.
## 1905                                                   Mary Imogene Bassett Hospital
## 1906                                                                                
## 1907                                                                                
## 1908                                                                                
## 1909                                   New York Eye and Ear Infirmary of Mount Sinai
## 1910                                         Community Medical and Dental Care, Inc.
## 1911                                                                                
## 1912                                       Our Lady of Lourdes Memorial Hospital Inc
## 1913                                                       Damian Family Care Center
## 1914                                            Main Street Radiology at Bayside LLC
## 1915                                                                                
## 1916                                                                                
## 1917                                                              St Peters Hospital
## 1918                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1919                                                              St Peters Hospital
## 1920                                                                                
## 1921                                                            St. Charles Hospital
## 1922                                                                                
## 1923                                                                                
## 1924                                                                                
## 1925                                                            Glens Falls Hospital
## 1926                                        L'Refuah Medical & Rehabilitation Center
## 1927                                                     Sisters of Charity Hospital
## 1928                                                   St Anthony Community Hospital
## 1929                                                      Care For the Homeless, Inc
## 1930                                                                                
## 1931                                                                                
## 1932                                                                                
## 1933                                                  Family Health Center of Harlem
## 1934                                                                                
## 1935                                                        Strong Memorial Hospital
## 1936                                  University Hospital SUNY Health Science Center
## 1937                                                     St. Joseph's Medical Center
## 1938                                      William F Ryan Community Health Center Inc
## 1939                                                                                
## 1940                                                                                
## 1941                                                                                
## 1942                                                   Mary Imogene Bassett Hospital
## 1943                                                                                
## 1944              Memorial Hosp of Wm F & Gertrude F Jones A/K/A Jones Memorial Hosp
## 1945                                                                                
## 1946                                                               SBH Health System
## 1947                                                 North Shore University Hospital
## 1948                                                                                
## 1949                                                     Sisters of Charity Hospital
## 1950                                      William F Ryan Community Health Center Inc
## 1951                                                               Saratoga Hospital
## 1952                                                                                
## 1953                                                       Mercy Hospital of Buffalo
## 1954                                            Mt Vernon Neighborhood Health Center
## 1955                                                                                
## 1956                                                                                
## 1957                                                     Sisters of Charity Hospital
## 1958                                               Hempstead Community Health Center
## 1959                                                                                
## 1960                                                                                
## 1961                                  Weill Cornell Imaging at New York Presbyterian
## 1962                                           Buffalo Hearing and Speech Center Inc
## 1963                                                       Damian Family Care Center
## 1964                                            Whitney M Young Jr Health Center Inc
## 1965                                                                                
## 1966                                                     Sisters of Charity Hospital
## 1967                                                           NYU Langone Hospitals
## 1968                                              Upstate Family Health Center, Inc.
## 1969                                       Our Lady of Lourdes Memorial Hospital Inc
## 1970                                                                                
## 1971                                                           Bronx Dialysis Center
## 1972                                                                                
## 1973                                                                                
## 1974                                                                                
## 1975                                                                                
## 1976                                                              Samaritan Hospital
## 1977                                                                                
## 1978                                                    Community Healthcare Network
## 1979                                    Sunnyview Hospital and Rehabilitation Center
## 1980                                                                                
## 1981                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 1982                                                                                
## 1983                                                 Living Center at Geneva - South
## 1984                                                                                
## 1985                                                      Arnot Ogden Medical Center
## 1986                                          FMS-Southern Manhattan Dialysis Center
## 1987                              Montefiore Medical Center - Henry & Lucy Moses Div
## 1988                                                                                
## 1989                                                                                
## 1990                                                   Hudson River Healthcare, Inc.
## 1991                                                       Warrensburg Health Center
## 1992                                              Upstate Family Health Center, Inc.
## 1993                                                     St. Joseph's Medical Center
## 1994                                                                                
## 1995                                Winifred Masterson Burke Rehabilitation Hospital
## 1996                                                                                
## 1997                                                      Columbia Memorial Hospital
## 1998                                                                                
## 1999                                                                                
## 2000                                                                                
## 2001                                                                                
## 2002                              Michael Callen-Audre Lorde Community Health Center
## 2003                                            Jericho Road Community Health Center
## 2004                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2005                                                                                
## 2006                                                                                
## 2007                                                                                
## 2008                                                        Medina Memorial Hospital
## 2009                                                             University Hospital
## 2010                                                                                
## 2011                                                                                
## 2012                                                                                
## 2013                                                                                
## 2014                                                  Vassar Brothers Medical Center
## 2015             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2016                                                                                
## 2017                                                                                
## 2018                                                              Samaritan Hospital
## 2019                                                        Strong Memorial Hospital
## 2020                                     NewYork-Presbyterian/Hudson Valley Hospital
## 2021                                                                  Ellis Hospital
## 2022                                              Richmond University Medical Center
## 2023                                           Buffalo Hearing and Speech Center Inc
## 2024                                                        Strong Memorial Hospital
## 2025                                                                                
## 2026                                                                                
## 2027                                                                                
## 2028                                             Metro Community Health Center Bronx
## 2029                                                                                
## 2030                                                                                
## 2031                                                            Glens Falls Hospital
## 2032                                                                                
## 2033                                                      Rochester General Hospital
## 2034                                                                                
## 2035                                                           Rogosin Kidney Center
## 2036                                                           St. Mary's Healthcare
## 2037                                                        Strong Memorial Hospital
## 2038                                                       Maimonides Medical Center
## 2039                                                                                
## 2040                                                          La Casa De Salud, Inc.
## 2041                                                                                
## 2042                                                     Crouse Community Center Inc
## 2043                                                              Southside Hospital
## 2044                                                   Hudson River Healthcare, Inc.
## 2045                                                                                
## 2046                                                  Family Health Center of Harlem
## 2047                                                                                
## 2048                                      Brooklyn Hospital Center - Downtown Campus
## 2049                                    HealthAlliance Hospital Mary's Avenue Campus
## 2050                                                        Strong Memorial Hospital
## 2051                                                      Columbia Memorial Hospital
## 2052                                                     Rome Memorial Hospital, Inc
## 2053                                  Weill Cornell Imaging at New York Presbyterian
## 2054                                                                                
## 2055                                             St. Joseph's Hospital Health Center
## 2056                                                               Highland Hospital
## 2057                                                                                
## 2058                                                                Corning Hospital
## 2059                                           East NY Diagnostic & Treatment Center
## 2060                                            Syracuse Community Health Center Inc
## 2061                                            Main Street Radiology at Bayside LLC
## 2062                                                      Erie County Medical Center
## 2063                                                    Morris Heights Health Center
## 2064                                                             Lenox Hill Hospital
## 2065                                                          Oneida Health Hospital
## 2066                                       Mount St Marys Hospital and Health Center
## 2067                                                      Cleve Hill Dialysis Center
## 2068                                Memorial Hospital for Cancer and Allied Diseases
## 2069                                                    Morris Heights Health Center
## 2070                                                                                
## 2071                                                                                
## 2072                                                                                
## 2073                                                                                
## 2074                                                                                
## 2075                                                                                
## 2076                                                 North Shore University Hospital
## 2077                                                                                
## 2078                                                 The Unity Hospital of Rochester
## 2079                                                      Rochester General Hospital
## 2080                                                    Hospital for Special Surgery
## 2081             Planned Parenthood of the North Country, New York, Inc. - Watertown
## 2082                                                            Mount Sinai Hospital
## 2083                                                                                
## 2084                                                       Warrensburg Health Center
## 2085                                                  Buffalo General Medical Center
## 2086                                                          Olean General Hospital
## 2087                                       Our Lady of Lourdes Memorial Hospital Inc
## 2088                                                  Claxton-Hepburn Medical Center
## 2089                                             Northern Manor Geriatric Center Inc
## 2090                                                                                
## 2091                                                       Warrensburg Health Center
## 2092                                                               Urban Health Plan
## 2093                                          FMS-Southern Manhattan Dialysis Center
## 2094                                                               Urban Health Plan
## 2095                                Memorial Hospital for Cancer and Allied Diseases
## 2096                                                         Mosaic Health Rushville
## 2097                                                                                
## 2098                                                                                
## 2099                                                 The Unity Hospital of Rochester
## 2100                                                   Mary Imogene Bassett Hospital
## 2101                                                                                
## 2102                                                                                
## 2103                                                                                
## 2104                                                           Little Falls Hospital
## 2105                                                 The Unity Hospital of Rochester
## 2106                                                                                
## 2107                                      Brooklyn Hospital Center - Downtown Campus
## 2108                                                                                
## 2109                                                         Canton-Potsdam Hospital
## 2110                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2111                                                                                
## 2112                                            Avantus Irving Place Dialysis Center
## 2113                                                           Bronx Dialysis Center
## 2114                                   Family Health Network of Central New York Inc
## 2115                                            Syracuse Community Health Center Inc
## 2116                                  Brownsville Multi-Service Family Health Center
## 2117                                                                                
## 2118                                                                                
## 2119                                                                                
## 2120                                                                                
## 2121                                        Cumberland Diagnostic & Treatment Center
## 2122                                                       Auburn Community Hospital
## 2123                                                                                
## 2124                                                            Project Renewal, Inc
## 2125                                           East NY Diagnostic & Treatment Center
## 2126                                                        Strong Memorial Hospital
## 2127                                                            St. Charles Hospital
## 2128                                       Planned Parenthood Margaret Sanger Center
## 2129                                                           NYU Langone Hospitals
## 2130                                                Montefiore Mount Vernon Hospital
## 2131                                                       Warrensburg Health Center
## 2132                                           East NY Diagnostic & Treatment Center
## 2133                                                                                
## 2134                                                                                
## 2135                                         HealthAlliance Hospital Broadway Campus
## 2136                                                      Westchester Medical Center
## 2137                                               Hempstead Community Health Center
## 2138                                                               Narco Freedom Inc
## 2139                                                                                
## 2140                                                      Carthage Area Hospital Inc
## 2141                                                                                
## 2142                                                                                
## 2143                                           Century Medical & Dental Center, Inc.
## 2144                                                   Mary Imogene Bassett Hospital
## 2145                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 2146                                                             University Hospital
## 2147                                                   Roswell Park Cancer Institute
## 2148                                                                                
## 2149                                          FMS-Southern Manhattan Dialysis Center
## 2150                                                                                
## 2151                                                                                
## 2152                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2153                                                                                
## 2154                                                                                
## 2155                                                          Olean General Hospital
## 2156                                                        Nathan Littauer Hospital
## 2157                                                  Vassar Brothers Medical Center
## 2158                                                                                
## 2159                                       Our Lady of Lourdes Memorial Hospital Inc
## 2160                                                     St Elizabeth Medical Center
## 2161                                                   Hudson River Healthcare, Inc.
## 2162                                                                 Phelps Hospital
## 2163                                       Mount St Marys Hospital and Health Center
## 2164                                                                                
## 2165                                                                                
## 2166                                                                                
## 2167                                                                                
## 2168                                                                                
## 2169                                                                                
## 2170                                                                                
## 2171                                                              Samaritan Hospital
## 2172                                                                                
## 2173                                                    Morris Heights Health Center
## 2174                                                   East Hill Family Medical Inc.
## 2175                                                       Maimonides Medical Center
## 2176                                                        Nathan Littauer Hospital
## 2177                                                      A.O. Fox Memorial Hospital
## 2178                                                 North Shore University Hospital
## 2179                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2180                                                        Strong Memorial Hospital
## 2181                                                                                
## 2182                                            ODA Primary Health Care Network, Inc
## 2183                                                                                
## 2184                                        Cumberland Diagnostic & Treatment Center
## 2185                                                                                
## 2186                                                       Maimonides Medical Center
## 2187                                                    Community Healthcare Network
## 2188                                            Whitney M Young Jr Health Center Inc
## 2189                                       Our Lady of Lourdes Memorial Hospital Inc
## 2190                                                                                
## 2191                                                                                
## 2192                                                                                
## 2193                                                           NYU Langone Hospitals
## 2194                                                               Highland Hospital
## 2195                                                        Strong Memorial Hospital
## 2196                                                                                
## 2197                                                                                
## 2198                                        North Country Family Health Center, Inc.
## 2199                                                                                
## 2200                                                                                
## 2201                                                 Renaissance Health Care Network
## 2202                                                                                
## 2203                                             Nicholas H. Noyes Memorial Hospital
## 2204                                                       Warrensburg Health Center
## 2205                                                           Coney Island Hospital
## 2206                                         HealthAlliance Hospital Broadway Campus
## 2207                                                       Damian Family Care Center
## 2208                                           Joseph P Addabbo-Family Health Center
## 2209                                                         Mount Sinai Beth Israel
## 2210                                                             University Hospital
## 2211                                                 Community Memorial Hospital Inc
## 2212                                                 The Unity Hospital of Rochester
## 2213                                                                                
## 2214                                                                                
## 2215                                                           Bronx Dialysis Center
## 2216                                                                     NYSARC, Inc
## 2217                                  Finger Lakes Migrant Health Care Project, Inc.
## 2218                                    Faxton-St Lukes Healthcare St Lukes Division
## 2219                                            Whitney M Young Jr Health Center Inc
## 2220                                                 The Unity Hospital of Rochester
## 2221                                                                                
## 2222                                  Brownsville Multi-Service Family Health Center
## 2223                                                                                
## 2224                                                                                
## 2225                                                                                
## 2226                                                                                
## 2227                                                                                
## 2228                                                                                
## 2229                                                   New York Neuro & Rehab Center
## 2230                                                                                
## 2231                                                     St. Joseph's Medical Center
## 2232                                                                                
## 2233                                                                                
## 2234                                            Open Door Family Medical Center, Inc
## 2235                                                                                
## 2236                                                        Mount Sinai South Nassau
## 2237                                                             St Marys Center Inc
## 2238                                       Our Lady of Lourdes Memorial Hospital Inc
## 2239                                                              St Peters Hospital
## 2240                                                                                
## 2241                                                                                
## 2242                                                                                
## 2243                                                   Union Community Health Center
## 2244                                                            Glens Falls Hospital
## 2245                                                                                
## 2246                                                                                
## 2247                                                                                
## 2248                                                   Roswell Park Cancer Institute
## 2249                                                                                
## 2250                                                                                
## 2251                                                                                
## 2252                                                                                
## 2253                                                          Woodmere Dialysis, LLC
## 2254                                                    Garnet Health Medical Center
## 2255                                                 University Hospital of Brooklyn
## 2256                                                     St. Joseph's Medical Center
## 2257                                                                                
## 2258                                             Staten Island University Hosp-North
## 2259                                                           NYU Langone Hospitals
## 2260                                                      The Children's Aid Society
## 2261                                                                                
## 2262                                                   Mary Imogene Bassett Hospital
## 2263                                                               Highland Hospital
## 2264                                                  Buffalo General Medical Center
## 2265                                                    Hospital for Special Surgery
## 2266                                                                                
## 2267                                                                                
## 2268                                                        Strong Memorial Hospital
## 2269                                                       Maimonides Medical Center
## 2270                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2271                                                                                
## 2272                                                              Doctors United Inc
## 2273                                                                                
## 2274                                         HealthAlliance Hospital Broadway Campus
## 2275                                                                                
## 2276                                                                                
## 2277                                                                                
## 2278                                                     NewYork-Presbyterian/Queens
## 2279                                                                                
## 2280                                                    Morris Heights Health Center
## 2281                                          FMS-Southern Manhattan Dialysis Center
## 2282                                                 Community Memorial Hospital Inc
## 2283                                            Aurelia Osborn Fox Memorial Hospital
## 2284                                                                                
## 2285                                                                                
## 2286                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2287                                                                                
## 2288                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 2289                                                     St. Joseph's Medical Center
## 2290                                                                                
## 2291                                                                                
## 2292                                                   Long Island Select Healthcare
## 2293                              Michael Callen-Audre Lorde Community Health Center
## 2294                                                           NYU Langone Hospitals
## 2295                                                          Olean General Hospital
## 2296                                            Main Street Radiology at Bayside LLC
## 2297                                                                                
## 2298                                                                                
## 2299                                           Niagara Falls Memorial Medical Center
## 2300                                                                                
## 2301                                                   Hudson River Healthcare, Inc.
## 2302                                                                                
## 2303                NY Hotel Trades Council&Hotel Assoc of NYC Health/Midtown Clinic
## 2304                                        Cumberland Diagnostic & Treatment Center
## 2305                                                                                
## 2306                                                                                
## 2307                                                                                
## 2308                                                                                
## 2309                                                     Sisters of Charity Hospital
## 2310                                                                                
## 2311                                  Northwest Buffalo Community Health Care Center
## 2312                                                     Sisters of Charity Hospital
## 2313                                                     Sisters of Charity Hospital
## 2314                                      William F Ryan Community Health Center Inc
## 2315                                               Long Island Jewish Medical Center
## 2316                                                                                
## 2317                                                     Rome Memorial Hospital, Inc
## 2318                                                              Samaritan Hospital
## 2319                                                            Glens Falls Hospital
## 2320                                                                                
## 2321                                                                                
## 2322                                                                                
## 2323                                                                                
## 2324                                                                                
## 2325                                      Brooklyn Hospital Center - Downtown Campus
## 2326                                            Whitney M Young Jr Health Center Inc
## 2327                                          FMS-Southern Manhattan Dialysis Center
## 2328                                                                                
## 2329                                                   Mary Imogene Bassett Hospital
## 2330                                                                                
## 2331                                                  Family Health Center of Harlem
## 2332                                                    Morris Heights Health Center
## 2333                                                                                
## 2334                                                                                
## 2335                                                                                
## 2336                                                      University Dialysis Center
## 2337                                                                                
## 2338                                               Long Island Jewish Medical Center
## 2339                                                                                
## 2340                                                                                
## 2341                                                                                
## 2342                                                                                
## 2343                                                                                
## 2344                                            St Luke's Cornwall Hospital/Newburgh
## 2345                                                      A.O. Fox Memorial Hospital
## 2346                                                      Rochester General Hospital
## 2347                                                   St Anthony Community Hospital
## 2348                                                                                
## 2349                                                                                
## 2350                                                                                
## 2351                                             Staten Island University Hosp-North
## 2352                                                    Morris Heights Health Center
## 2353                                               Long Island Jewish Medical Center
## 2354                                                                 Oswego Hospital
## 2355                                                               Saratoga Hospital
## 2356                                                          Putnam Hospital Center
## 2357                                                          Putnam Hospital Center
## 2358                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2359                                                                                
## 2360                                NewYork-Presbyterian Brooklyn Methodist Hospital
## 2361                                                                                
## 2362                                                                                
## 2363                                                         Canton-Potsdam Hospital
## 2364                                                              St. James Hospital
## 2365                                                      Rochester General Hospital
## 2366                                                                                
## 2367                                               Hempstead Community Health Center
## 2368                          CenterLight Healthcare Diagnostic and Treatment Center
## 2369                                                                                
## 2370                                             Staten Island University Hosp-North
## 2371                                        Garnet Health Medical Center - Catskills
## 2372                                                           St. Mary's Healthcare
## 2373                                                                                
## 2374                                                                                
## 2375                                           East NY Diagnostic & Treatment Center
## 2376                                                          F.F. Thompson Hospital
## 2377                                                      Rochester General Hospital
## 2378                                                      Rochester General Hospital
## 2379                                                             University Hospital
## 2380                                  University Hospital SUNY Health Science Center
## 2381                                                                                
## 2382             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2383                                                                                
## 2384                                                                                
## 2385                                                      The Children's Aid Society
## 2386                                                       Damian Family Care Center
## 2387                                                                                
## 2388                                                                                
## 2389                                                   Mary Imogene Bassett Hospital
## 2390                                                                                
## 2391                                  Brownsville Multi-Service Family Health Center
## 2392                                       Planned Parenthood Margaret Sanger Center
## 2393                                                           Coney Island Hospital
## 2394                                                                                
## 2395                                                           NYU Langone Hospitals
## 2396                                    Faxton-St Lukes Healthcare St Lukes Division
## 2397                                                     Rome Memorial Hospital, Inc
## 2398                                       Mount St Marys Hospital and Health Center
## 2399                                                                                
## 2400                                                                                
## 2401                                                                                
## 2402                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2403                                                    Newtown Dialysis Center, Inc
## 2404                                                  Buffalo General Medical Center
## 2405                                                                                
## 2406                                        North Country Family Health Center, Inc.
## 2407                                            Open Door Family Medical Center, Inc
## 2408                                                                                
## 2409                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2410                                                   Hudson River Healthcare, Inc.
## 2411                                                               Highland Hospital
## 2412                                                                                
## 2413                                                                                
## 2414                                                                                
## 2415                                                                                
## 2416                                                     Crouse Community Center Inc
## 2417                                                                                
## 2418                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2419                                                                                
## 2420                                             Cooperative Magnetic Imaging Center
## 2421                                                           NYU Langone Hospitals
## 2422                                                           Eastman Dental Center
## 2423                                                              St Peters Hospital
## 2424                                                               Highland Hospital
## 2425                                                  Chenango Memorial Hospital Inc
## 2426                                        Cumberland Diagnostic & Treatment Center
## 2427                                                                                
## 2428                                                                                
## 2429                                                                                
## 2430                                                         Hometown Health Centers
## 2431                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2432                                                                                
## 2433                        Planned Parenthood of Central and Western New York, Inc.
## 2434                                                                                
## 2435                                                                                
## 2436                                                             University Hospital
## 2437                                                                                
## 2438                                                   Hudson River Healthcare, Inc.
## 2439                                                                                
## 2440                                                      Rochester General Hospital
## 2441                                                 University Hospital of Brooklyn
## 2442                                                                                
## 2443                                                                                
## 2444                                  Finger Lakes Migrant Health Care Project, Inc.
## 2445                                                                                
## 2446                                                                                
## 2447                                                                                
## 2448                                                                 Oswego Hospital
## 2449                                                                                
## 2450                                                             University Hospital
## 2451                                                                                
## 2452                                                                                
## 2453                                          Good Samaritan Hospital Medical Center
## 2454                                                 Cayuga Medical Center at Ithaca
## 2455                                                              Samaritan Hospital
## 2456                                                  Wyckoff Heights Medical Center
## 2457                                                                                
## 2458                                                              St Peters Hospital
## 2459                                                                                
## 2460                                             Cooperative Magnetic Imaging Center
## 2461                                    Faxton-St Lukes Healthcare St Lukes Division
## 2462                                         Westchester County Department of Health
## 2463                                            Whitney M Young Jr Health Center Inc
## 2464                                                           Bronx Dialysis Center
## 2465                                                   Hudson River Healthcare, Inc.
## 2466                                                                                
## 2467                                                                                
## 2468                                                        Strong Memorial Hospital
## 2469                                                   Hudson River Healthcare, Inc.
## 2470                                                        SJRH - St Johns Division
## 2471                    The Hamlet Rehabilitation and Healthcare Center at Nesconset
## 2472                                                                                
## 2473                                                Fairview Nursing Care Center Inc
## 2474                                                                                
## 2475                                                               Saratoga Hospital
## 2476                                            Open Door Family Medical Center, Inc
## 2477                                                         Canton-Potsdam Hospital
## 2478                                                                                
## 2479                                                                                
## 2480                                                                                
## 2481                                        Specialists' One-Day Surgery Center, LLC
## 2482                                                    Hospital for Special Surgery
## 2483                                                       Freedom Center of Buffalo
## 2484                                                                                
## 2485                                                                                
## 2486                                                                                
## 2487                                                Kingsbrook Jewish Medical Center
## 2488                                                                                
## 2489                                                      A.O. Fox Memorial Hospital
## 2490                                                                                
## 2491                                                 The Unity Hospital of Rochester
## 2492                                NewYork-Presbyterian Brooklyn Methodist Hospital
## 2493                                                                                
## 2494                                                                                
## 2495                                Winifred Masterson Burke Rehabilitation Hospital
## 2496                                             Staten Island University Hosp-North
## 2497                                                                 Crouse Hospital
## 2498                                                                                
## 2499                      Soldiers and Sailors Memorial Hospital of Yates County Inc
## 2500                                                                                
## 2501                                    Faxton-St Lukes Healthcare St Lukes Division
## 2502                                                           The Chautauqua Center
## 2503                                          Good Samaritan Hospital Medical Center
## 2504                                                        Nathan Littauer Hospital
## 2505                                                               Highland Hospital
## 2506                                                      Arnot Ogden Medical Center
## 2507                                                 Premier Healthcare D & T Center
## 2508                                                                                
## 2509                                                                                
## 2510                                                                                
## 2511                                                                                
## 2512                                                    Morris Heights Health Center
## 2513                                                                                
## 2514                                                      Rochester General Hospital
## 2515                                                St. Joseph's Dialysis - Regional
## 2516                                              START Treatment & Recovery Centers
## 2517                       Dr Susan Smith Mckinney Nursing and Rehabilitation Center
## 2518                                                                                
## 2519                                                           Linden Surgery Center
## 2520                                                                                
## 2521                                                           NYU Langone Hospitals
## 2522                                                                                
## 2523                                                                                
## 2524                                                  Vassar Brothers Medical Center
## 2525                                                                                
## 2526                                                   Mary Imogene Bassett Hospital
## 2527                                                 North Shore University Hospital
## 2528                                                                                
## 2529                                                 Guthrie Cortland Medical Center
## 2530                                                         Canton-Potsdam Hospital
## 2531                                                                                
## 2532                           New York City Department of Health and Mental Hygiene
## 2533                                                 The Unity Hospital of Rochester
## 2534                                                   Hudson River Healthcare, Inc.
## 2535                                         Community Health Center of Buffalo, Inc
## 2536             Planned Parenthood of the North Country, New York, Inc. - Watertown
## 2537                                                                                
## 2538                                                                                
## 2539                                                                                
## 2540                                                 Renaissance Health Care Network
## 2541                                               Long Island Jewish Medical Center
## 2542                                                                                
## 2543                                     Adirondack Medical Center-Saranac Lake Site
## 2544                                          Staten Island Artificial Kidney Center
## 2545                                                      A.O. Fox Memorial Hospital
## 2546                                          FMS-Southern Manhattan Dialysis Center
## 2547                                                                                
## 2548                                                                                
## 2549                                                          F.F. Thompson Hospital
## 2550                                                                                
## 2551                                                                                
## 2552                                          FMS-Southern Manhattan Dialysis Center
## 2553                                                                                
## 2554                                                                                
## 2555                                  University Hospital SUNY Health Science Center
## 2556                                        North Country Family Health Center, Inc.
## 2557                                                                                
## 2558                                                                                
## 2559                                                                                
## 2560                                                 Westfield Memorial Hospital Inc
## 2561                                                                                
## 2562                                                        Mount Sinai South Nassau
## 2563                                                                                
## 2564                                                     St Elizabeth Medical Center
## 2565                                                                  Ellis Hospital
## 2566                                                           Bronx Dialysis Center
## 2567                                                                                
## 2568                                                ParCare Community Health Network
## 2569                                                                                
## 2570                                                                                
## 2571                                                Brookdale Family Care Center Inc
## 2572                                                  Buffalo General Medical Center
## 2573                                                                                
## 2574                                                                                
## 2575                                                                                
## 2576                                                                                
## 2577             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2578                                                                                
## 2579                                              START Treatment & Recovery Centers
## 2580                                                                                
## 2581                                                                                
## 2582                                                    Hospital for Special Surgery
## 2583                                                                                
## 2584                                                  Anthony L Jordan Health Center
## 2585                                                                                
## 2586                                        North Country Family Health Center, Inc.
## 2587                                                        Strong Memorial Hospital
## 2588                                                                                
## 2589                                                              Samaritan Hospital
## 2590                             BronxCare Dr. Martin Luther King, Jr. Health Center
## 2591                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2592                                   Family Health Network of Central New York Inc
## 2593                                                          Olean General Hospital
## 2594                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2595                                    Faxton-St Lukes Healthcare St Lukes Division
## 2596                                                          Oneida Health Hospital
## 2597                                            Open Door Family Medical Center, Inc
## 2598                                              Richmond University Medical Center
## 2599                                                                                
## 2600                                                        SJRH - St Johns Division
## 2601                                        Morrisania Diagnostic & Treatment Center
## 2602                                                  Vassar Brothers Medical Center
## 2603                                Winifred Masterson Burke Rehabilitation Hospital
## 2604                                                           Bronx Dialysis Center
## 2605                                    Sunnyview Hospital and Rehabilitation Center
## 2606                                                                                
## 2607                                                              Samaritan Hospital
## 2608                                                                                
## 2609                                                        Samaritan Medical Center
## 2610                                                      Westchester Medical Center
## 2611                                                      Cleve Hill Dialysis Center
## 2612                                                                                
## 2613                              Montefiore Medical Center - Henry & Lucy Moses Div
## 2614                                                  Long Island Community Hospital
## 2615                                                                                
## 2616                                                         Mosaic Health Rushville
## 2617                                                                                
## 2618                                                             University Hospital
## 2619                                                                                
## 2620                                                                                
## 2621                                                        Nathan Littauer Hospital
## 2622                                                           NYU Langone Hospitals
## 2623                                                      Rochester General Hospital
## 2624                                                                                
## 2625                                                       Interfaith Medical Center
## 2626                                                                                
## 2627                                                                                
## 2628                                                                                
## 2629                                                                                
## 2630                                                 Jamaica Hospital Medical Center
## 2631                                  Northwest Buffalo Community Health Care Center
## 2632                                                           St. Mary's Healthcare
## 2633                                                       Damian Family Care Center
## 2634                                                                                
## 2635                                       Our Lady of Lourdes Memorial Hospital Inc
## 2636                                                               Urban Health Plan
## 2637                                                        Strong Memorial Hospital
## 2638             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2639                                                         Geneva General Hospital
## 2640                                                            Refuah Health Center
## 2641                                                 North Shore University Hospital
## 2642                                                                                
## 2643                                                 Cayuga Medical Center at Ithaca
## 2644                                                        Strong Memorial Hospital
## 2645                                  Finger Lakes Migrant Health Care Project, Inc.
## 2646                                                                                
## 2647                                                                                
## 2648                                                           NYU Langone Hospitals
## 2649                                                                                
## 2650                                       Planned Parenthood Margaret Sanger Center
## 2651                                                           NYU Langone Hospitals
## 2652                                          FMS-Southern Manhattan Dialysis Center
## 2653                                                           NYU Langone Hospitals
## 2654                                                          Oneida Health Hospital
## 2655                                                             University Hospital
## 2656                                                                                
## 2657                                                                                
## 2658                              United Memorial Medical Center North Street Campus
## 2659                                                                                
## 2660                      Cornerstone Family Healthcare:  The Kaplan Family Pavilion
## 2661                                                                                
## 2662                                                                                
## 2663                                                                                
## 2664                                                        Strong Memorial Hospital
## 2665                                                 North Shore University Hospital
## 2666                                                        Nathan Littauer Hospital
## 2667                                                           Bronx Dialysis Center
## 2668             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2669                                                                                
## 2670                                                           Bronx Dialysis Center
## 2671                                                    Morris Heights Health Center
## 2672                                                                                
## 2673                                                   Long Island Select Healthcare
## 2674                                         Oak Orchard Community Health Center Inc
## 2675                                                             St Francis Hospital
## 2676                                                                                
## 2677                                         Oak Orchard Community Health Center Inc
## 2678             United Health Services Hospitals Inc. - Binghamton General Hospital
## 2679                                                      Rochester General Hospital
## 2680                                                                                
## 2681                                                                                
## 2682                                                                                
## 2683                                                                                
## 2684                                                                                
## 2685                                                           NYU Langone Hospitals
## 2686                                                                                
## 2687                                                     NewYork-Presbyterian/Queens
## 2688                                                     Housing Works East New York
## 2689                                                  Buffalo General Medical Center
## 2690                                                                                
## 2691                                                                                
## 2692                                                                                
## 2693                                                      Rochester General Hospital
## 2694                          CenterLight Healthcare Diagnostic and Treatment Center
## 2695                                        L'Refuah Medical & Rehabilitation Center
## 2696                                                                                
## 2697                                                   Mary Imogene Bassett Hospital
## 2698                                                      Cleve Hill Dialysis Center
## 2699                                  University Hospital SUNY Health Science Center
## 2700                                                  Long Island Community Hospital
## 2701                                                                                
## 2702                                                  Wyckoff Heights Medical Center
## 2703                                                   Lewis County General Hospital
## 2704                                                                                
## 2705                                                            Mount Sinai Hospital
## 2706                                                                                
## 2707                                                              St Peters Hospital
## 2708                                                                                
## 2709                                                  Albany Medical Center Hospital
## 2710                                                                                
## 2711                                                                                
## 2712                  New York-Presbyterian Hospital - New York Weill Cornell Center
## 2713                                                      The Children's Aid Society
## 2714                                                       Damian Family Care Center
## 2715                                                       Warrensburg Health Center
## 2716                                                   Mary Imogene Bassett Hospital
## 2717                                                                                
## 2718                                                                                
## 2719                                                                                
## 2720                    United Cerebral Palsy Association of the Rochester Area, Inc
## 2721                                                                                
## 2722                                                              Samaritan Hospital
## 2723                                                                                
## 2724                                                       Damian Family Care Center
## 2725                                       Planned Parenthood Margaret Sanger Center
## 2726                                                                                
## 2727                                                                                
## 2728                                                         Canton-Potsdam Hospital
## 2729                                                           Bronx Dialysis Center
## 2730                                                  Vassar Brothers Medical Center
## 2731                                                             St Francis Hospital
## 2732                                                              Glen Cove Hospital
## 2733                                                                                
## 2734                                                                                
## 2735                                  Finger Lakes Migrant Health Care Project, Inc.
## 2736                                                               Urban Health Plan
## 2737                                               Long Island Jewish Medical Center
## 2738                                                                                
## 2739                                                  Albany Medical Center Hospital
## 2740                                       Planned Parenthood Margaret Sanger Center
## 2741                                                                                
## 2742                                                                                
## 2743                                                   Mary Imogene Bassett Hospital
## 2744                                              Richmond University Medical Center
## 2745                                                                                
## 2746                                                                  Ellis Hospital
## 2747                                                                                
## 2748                                                           NYU Langone Hospitals
## 2749                NY Hotel Trades Council&Hotel Assoc of NYC Health/Midtown Clinic
## 2750                                                       Maimonides Medical Center
## 2751                                                      Cleve Hill Dialysis Center
## 2752                                                     St. Joseph's Medical Center
## 2753                                Winifred Masterson Burke Rehabilitation Hospital
## 2754                                                                                
## 2755                                                                                
## 2756                                                   Hudson River Healthcare, Inc.
## 2757                                                                                
## 2758                                                        Franziska Racker Centers
## 2759                                                                                
## 2760                                    Faxton-St Lukes Healthcare St Lukes Division
## 2761                                                                                
## 2762                                                                                
## 2763                                                                                
## 2764                                                                                
## 2765                                                                                
## 2766                                       Our Lady of Lourdes Memorial Hospital Inc
## 2767                                                     Sisters of Charity Hospital
## 2768                                                                       EHS, Inc.
## 2769                                                    Upstate Cerebral Palsy, Inc.
## 2770                                            Mt Vernon Neighborhood Health Center
## 2771                                               Hempstead Community Health Center
## 2772                                                            Project Renewal, Inc
## 2773                                                               SBH Health System
## 2774                                                                                
## 2775                                                                                
## 2776                                                                                
## 2777                                                                                
##      Main.Site.Facility.ID Operating.Certificate.Number
## 1                       NA                     0301501F
## 2                       NA                     3227304N
## 3                       NA                     3301326N
## 4                       NA                     6027303N
## 5                       NA                     0228305N
## 6                       NA                     1406301N
## 7                       NA                     2905204R
## 8                       NA                      1401606
## 9                       NA                     5151501F
## 10                    1463                     7002053H
## 11                      NA                     2905202R
## 12                     397                     2601001H
## 13                    1463                     7002053H
## 14                      43                     0301001H
## 15                      NA                     1402201R
## 16                     245                     5151001H
## 17                      NA                     1401230R
## 18                      NA                     7002813R
## 19                      NA                     3502202R
## 20                     324                     1623001H
## 21                      NA                     3201201R
## 22                      66                     0401001H
## 23                     413                     2701005H
## 24                      NA                     0901205R
## 25                      NA                     7002805R
## 26                      NA                     5907209R
## 27                      NA                     7002807R
## 28                      NA                     5154213R
## 29                      NA                     2977200R
## 30                      NA                     0153205R
## 31                      11                     0101205R
## 32                      NA                     7000307N
## 33                      NA                      7001637
## 34                      NA                     0722304N
## 35                      NA                     7000243R
## 36                     589                     3201002H
## 37                     746                     3824000H
## 38                      NA                     3501205R
## 39                     181                     1302001H
## 40                      NA                     7003272R
## 41                    3722                     7001259R
## 42                    3414                     7002176R
## 43                    6661                     7000272R
## 44                    1339                     7002112R
## 45                    1049                     5902208R
## 46                    3541                     2201202R
## 47                      NA                     2908201R
## 48                     756                     4102002H
## 49                      NA                     7001113R
## 50                      NA                     5902319N
## 51                    1463                     7002053H
## 52                    1169                     7000006H
## 53                    6661                     7000272R
## 54                    1463                     7002053H
## 55                    1740                     7004003H
## 56                    6780                     1401232R
## 57                      NA                     3429304N
## 58                    1307                     7000236R
## 59                    3414                     7002176R
## 60                      NA                     1421308N
## 61                    4825                     6121203R
## 62                     599                     3202003H
## 63                    1129                     5932000H
## 64                      NA                     7001259R
## 65                     925                     5154001H
## 66                     565                     3101000H
## 67                     676                     3421000H
## 68                     541                     2951001H
## 69                    1466                     7002032H
## 70                     146                     1001000H
## 71                      NA                     1302001H
## 72                     752                     3950000H
## 73                     727                     3702000H
## 74                    6674                     0401201R
## 75                    6712                     5957204R
## 76                    1740                     7004003H
## 77                    6661                     7000272R
## 78                     303                     1552701C
## 79                      NA                     2906305N
## 80                     413                     2701005H
## 81                      NA                     7001108R
## 82                    9375                     7002137R
## 83                    1169                     7000006H
## 84                    1630                     7003004H
## 85                     415                     2701231R
## 86                      NA                     7000274R
## 87                    1040                     5901200R
## 88                      NA                     5149000H
## 89                    3722                     7001259R
## 90                    1450                     7002017H
## 91                      NA                     5151321N
## 92                      NA                     3301309N
## 93                     798                     4401000H
## 94                      NA                     4350204R
## 95                    6661                     7000272R
## 96                    1326                     5660200R
## 97                      NA                      4429601
## 98                      NA                     7003359N
## 99                      NA                      3202602
## 100                     NA                     2701240R
## 101                     NA                     3202209R
## 102                   4408                     7002136R
## 103                   1466                     7002032H
## 104                     NA                     4328200R
## 105                   1039                     5901000H
## 106                     NA                     2801001H
## 107                    895                     5149000H
## 108                     NA                     7000282R
## 109                     NA                     7002169R
## 110                     NA                      5905601
## 111                   4494                     2623300N
## 112                   1463                     7002053H
## 113                     NA                     7002195R
## 114                   1453                     7002020H
## 115                   6661                     7000272R
## 116                     NA                     3552201R
## 117                    411                     2701003H
## 118                     NA                     5263000H
## 119                   1307                     7000236R
## 120                    245                     5151001H
## 121                   4408                     7002136R
## 122                    630                     3301003H
## 123                    831                     4601004H
## 124                   1164                     7000001H
## 125                   1543                     7002273R
## 126                     NA                     7001104R
## 127                     NA                     5022000H
## 128                     NA                     0153203R
## 129                   6661                     7000272R
## 130                   1562                     7002293R
## 131                     NA                     7003396N
## 132                   1630                     7003004H
## 133                     NA                     0101000H
## 134                   1139                     5957001H
## 135                   1326                     5660200R
## 136                    727                     3702000H
## 137                     NA                     7002289R
## 138                    541                     2951001H
## 139                     NA                     5823200R
## 140                     NA                     7000384N
## 141                   1543                     7002273R
## 142                    630                     3301003H
## 143                     NA                     0101221R
## 144                    599                     3202003H
## 145                     NA                     1063302N
## 146                     NA                      0752601
## 147                    746                     3824000H
## 148                    422                     2701215R
## 149                    411                     2701003H
## 150                    599                     3202003H
## 151                    367                     2201000H
## 152                     NA                     5149304N
## 153                     NA                     3301321N
## 154                   1453                     7002020H
## 155                   7520                     7001281R
## 156                   2532                     3529200R
## 157                   3901                     7002131R
## 158                     NA                     7000241R
## 159                     NA                     7001111R
## 160                   6661                     7000272R
## 161                    630                     3301003H
## 162                    413                     2701005H
## 163                     NA                     4102313N
## 164                   1416                     7002119R
## 165                     NA                     1801000H
## 166                   3901                     7002131R
## 167                    636                     3301008H
## 168                     NA                     5401001H
## 169                   1176                     7000014H
## 170                    746                     3824000H
## 171                   7676                     7002161R
## 172                     NA                     5906304N
## 173                   1447                     7002012H
## 174                     NA                     7002050H
## 175                     NA                     3301226R
## 176                   1494                     7002107R
## 177                     NA                      7002645
## 178                   1005                     5601000H
## 179                     NA                      7001634
## 180                    541                     2951001H
## 181                     NA                      5125600
## 182                   1320                     7001037H
## 183                     NA                     1356304N
## 184                     NA                      3202606
## 185                     NA                      1451604
## 186                     NA                     7001003H
## 187                     NA                     7001394N
## 188                     NA                     5022301N
## 189                    411                     2701003H
## 190                     NA                     2701365N
## 191                     NA                     2950001H
## 192                   1307                     7000236R
## 193                   3770                     1401219R
## 194                     NA                     4102309N
## 195                   1630                     7003004H
## 196                   1084                     5905200R
## 197                    377                     2221700C
## 198                    367                     2201000H
## 199                   1201                     7000221R
## 200                    146                     1001000H
## 201                   6661                     7000272R
## 202                    989                     5501000H
## 203                     NA                      7000611
## 204                    818                     4501000H
## 205                     39                     0228000H
## 206                    401                     2625700C
## 207                   1318                     7001035H
## 208                    411                     2701003H
## 209                     NA                     7000255R
## 210                   1040                     5901200R
## 211                   6129                     7000255R
## 212                     NA                     0101224R
## 213                    218                     1401013H
## 214                   1456                     7002024H
## 215                   1005                     5601000H
## 216                     NA                     7000901L
## 217                   9375                     7002137R
## 218                     NA                     3301007H
## 219                   9000                     7000279R
## 220                     NA                     2850200R
## 221                   1416                     7002119R
## 222                   1453                     7002020H
## 223                   1630                     7003004H
## 224                   1458                     7002054H
## 225                   1456                     7002024H
## 226                    223                     1401238R
## 227                     NA                     1455203R
## 228                   1463                     7002053H
## 229                    245                     5151001H
## 230                    678                     3429000H
## 231                   1529                     7002243R
## 232                   9708                     0364201R
## 233                    541                     2951001H
## 234                     NA                     7002001H
## 235                     NA                     5150303N
## 236                     NA                     1435304N
## 237                    914                     5154212R
## 238                    330                     1701000H
## 239                   4548                     3301213R
## 240                   1629                     7003003H
## 241                     NA                     0101004H
## 242                     NA                     2952903L
## 243                   8621                     7001123R
## 244                     NA                     7004323N
## 245                    798                     4401000H
## 246                     NA                     0601303N
## 247                     NA                     4601307N
## 248                     NA                     1401008H
## 249                   3671                     7003234R
## 250                   3454                     7002139R
## 251                    484                     2801001H
## 252                   3722                     7001259R
## 253                     NA                     7000268R
## 254                     NA                     5522303N
## 255                   1049                     5902208R
## 256                     NA                     3620301N
## 257                     NA                      7001642
## 258                     NA                      0101601
## 259                     NA                     4520302N
## 260                     NA                     7000383N
## 261                   2532                     3529200R
## 262                   1543                     7002273R
## 263                   1494                     7002107R
## 264                   7065                     7004207R
## 265                    756                     4102002H
## 266                   1463                     7002053H
## 267                   1169                     7000006H
## 268                   1453                     7002020H
## 269                     NA                     7000397N
## 270                   5911                     3402201R
## 271                     NA                     2909305N
## 272                     NA                     0722301N
## 273                   1252                     7000391N
## 274                     NA                     2701001H
## 275                     NA                     5925300N
## 276                   1169                     7000006H
## 277                     NA                     1101901L
## 278                     NA                     7003401N
## 279                     NA                     4402201R
## 280                     98                     0601000H
## 281                   1456                     7002024H
## 282                   6094                     1401227R
## 283                   1169                     7000006H
## 284                    727                     3702000H
## 285                    746                     3824000H
## 286                     NA                     3101501F
## 287                     NA                     3301223R
## 288                     NA                     2201901L
## 289                    756                     4102002H
## 290                   1529                     7002243R
## 291                   3414                     7002176R
## 292                    192                     1327000H
## 293                     NA                     3121304N
## 294                   3722                     7001259R
## 295                     NA                     7001276R
## 296                   6872                     7004209R
## 297                     NA                     3702201R
## 298                     NA                     3702200R
## 299                    103                     0602001H
## 300                     NA                     1801305N
## 301                   2532                     3529200R
## 302                    146                     1001000H
## 303                    490                     2901000H
## 304                     43                     0301001H
## 305                     NA                     3227500F
## 306                   1306                     7001021H
## 307                     NA                     7003282R
## 308                     NA                     2950318N
## 309                   1169                     7000006H
## 310                     NA                     5501001H
## 311                     NA                     7001131R
## 312                      5                     0101004H
## 313                     NA                     0364201R
## 314                     NA                     0401303N
## 315                    895                     5149000H
## 316                   9000                     7000279R
## 317                   7027                     7002153R
## 318                    818                     4501000H
## 319                     NA                     5750301N
## 320                   3414                     7002176R
## 321                    181                     1302001H
## 322                     NA                     1427000N
## 323                   1456                     7002024H
## 324                    116                     0701000H
## 325                    411                     2701003H
## 326                     NA                     1401226R
## 327                     NA                     5154326N
## 328                     NA                     7001134R
## 329                    413                     2701005H
## 330                    210                     1401005H
## 331                   1463                     7002053H
## 332                     NA                     7003000H
## 333                    635                     3301007H
## 334                    678                     3429000H
## 335                     NA                     7001386N
## 336                    756                     4102002H
## 337                    845                     7001254R
## 338                     NA                     3202208R
## 339                    471                     2754001H
## 340                    671                     3402000H
## 341                   3541                     2201202R
## 342                   2872                     7002296R
## 343                      5                     0101004H
## 344                   1040                     5901200R
## 345                   6661                     7000272R
## 346                     NA                     2912500F
## 347                    635                     3301007H
## 348                     NA                     7003300N
## 349                   1635                     7001024H
## 350                   6288                     7002169R
## 351                   1738                     7004010H
## 352                   1305                     7001020H
## 353                   1307                     7000236R
## 354                    718                     3622700C
## 355                     NA                     5660200R
## 356                   1040                     5901200R
## 357                    804                     4402001H
## 358                   1307                     7000236R
## 359                    870                     5002001H
## 360                   1169                     7000006H
## 361                     43                     0301001H
## 362                     NA                     3227305N
## 363                   1456                     7002024H
## 364                   2532                     3529200R
## 365                     NA                     7002017H
## 366                     NA                     3501304N
## 367                   1416                     7002119R
## 368                   3414                     7002176R
## 369                     98                     0601000H
## 370                   7057                     7002154R
## 371                    818                     4501000H
## 372                   1439                     7002002H
## 373                   4520                     7000245R
## 374                     NA                     7003381N
## 375                   1005                     5601000H
## 376                   3170                     2124301N
## 377                   7078                     7002157R
## 378                     NA                     5522304N
## 379                    471                     2754001H
## 380                    324                     1623001H
## 381                    413                     2701005H
## 382                    756                     4102002H
## 383                   1307                     7000236R
## 384                     NA                     7003290R
## 385                     NA                     7002157R
## 386                   1458                     7002054H
## 387                     NA                     7000379N
## 388                    818                     4501000H
## 389                   1463                     7002053H
## 390                     NA                     7003387N
## 391                    528                     2950002H
## 392                     NA                     1852200R
## 393                   1326                     5660200R
## 394                     NA                     4102002H
## 395                   3136                     7002122R
## 396                     NA                     4353500F
## 397                   1453                     7002020H
## 398                    831                     4601004H
## 399                     NA                      4329601
## 400                     NA                     2221700C
## 401                     NA                     7002357N
## 402                     NA                     5968200R
## 403                    541                     2951001H
## 404                    210                     1401005H
## 405                    694                     3522000H
## 406                    409                     2701001H
## 407                     NA                      7000614
## 408                   4963                     1101201R
## 409                   4963                     1101201R
## 410                   1543                     7002273R
## 411                     NA                     3335202R
## 412                   1084                     5905200R
## 413                    223                     1401238R
## 414                     NA                     7002812R
## 415                    207                     1401014H
## 416                   1463                     7002053H
## 417                    471                     2754001H
## 418                   1458                     7002054H
## 419                     NA                     5905900L
## 420                    925                     5154001H
## 421                    845                     7001254R
## 422                    831                     4601004H
## 423                    678                     3429000H
## 424                    218                     1401013H
## 425                     NA                     7004209R
## 426                     NA                     3301213R
## 427                     NA                     7001395N
## 428                   1463                     7002053H
## 429                     NA                     7001393N
## 430                   1458                     7002054H
## 431                     NA                     7001309N
## 432                    411                     2701003H
## 433                     NA                     7003336N
## 434                     NA                     3530200R
## 435                     NA                     4329000H
## 436                     NA                     0226000N
## 437                    428                     2701221R
## 438                     NA                      4724601
## 439                    574                     3102000H
## 440                   1463                     7002053H
## 441                     NA                      3301603
## 442                     NA                     2951304N
## 443                     NA                     3529301N
## 444                     NA                      1404600
## 445                   2540                     7001256R
## 446                     NA                     5155205R
## 447                   1463                     7002053H
## 448                   1637                     7003010H
## 449                   1318                     7001035H
## 450                    245                     5151001H
## 451                     NA                     5154321N
## 452                   1463                     7002053H
## 453                    756                     4102002H
## 454                   1195                     7000212R
## 455                    413                     2701005H
## 456                     NA                     2951205R
## 457                   6661                     7000272R
## 458                   1169                     7000006H
## 459                     NA                     2961303N
## 460                   1045                     5902001H
## 461                     NA                     7003285R
## 462                    420                     2701211R
## 463                   4520                     7000245R
## 464                     NA                     0155301N
## 465                     NA                     3201308N
## 466                    379                     2238700C
## 467                    829                     4601001H
## 468                     NA                     5902208R
## 469                    895                     5149000H
## 470                   1458                     7002054H
## 471                     42                     0303001H
## 472                    207                     1401014H
## 473                   6067                     7003246R
## 474                    367                     2201000H
## 475                   1503                     7002208R
## 476                   1630                     7003004H
## 477                   6661                     7000272R
## 478                     NA                     4458701C
## 479                    325                     1624000H
## 480                    420                     2701211R
## 481                   1416                     7002119R
## 482                     NA                     7000269R
## 483                     NA                     0303307N
## 484                    699                     3523000H
## 485                     NA                     4552300N
## 486                    411                     2701003H
## 487                   4037                     7001364N
## 488                   1463                     7002053H
## 489                   1458                     7002054H
## 490                     NA                      3301605
## 491                    895                     5149000H
## 492                     NA                     4353202R
## 493                    135                     0901001H
## 494                     NA                     0228000H
## 495                      9                     0101203R
## 496                     NA                     7002811R
## 497                   1320                     7001037H
## 498                     NA                     2912200R
## 499                     NA                     7000800N
## 500                   1205                     7000225R
## 501                     NA                     2901304N
## 502                   3414                     7002176R
## 503                    845                     7001254R
## 504                    476                     2757300N
## 505                   8533                     7002188R
## 506                     NA                     3726201R
## 507                   1169                     7000006H
## 508                   1463                     7002053H
## 509                     NA                     0526304N
## 510                      5                     0101004H
## 511                   1098                     5907002H
## 512                     NA                     7001388N
## 513                   1305                     7001020H
## 514                    207                     1401014H
## 515                     NA                     3102207R
## 516                     NA                     7003273R
## 517                   1205                     7000225R
## 518                     NA                     0101305N
## 519                   9375                     7002137R
## 520                   1205                     7000225R
## 521                   1740                     7004003H
## 522                     NA                     7001128R
## 523                   9375                     7002137R
## 524                     NA                      7000610
## 525                    415                     2701231R
## 526                     NA                     5903312N
## 527                    845                     7001254R
## 528                    829                     4601001H
## 529                     NA                     7002141R
## 530                   6067                     7003246R
## 531                    885                     5123000H
## 532                   1438                     7002001H
## 533                     NA                     5154323N
## 534                      5                     0101004H
## 535                    756                     4102002H
## 536                     NA                     2201000N
## 537                    218                     1401013H
## 538                   1005                     5601000H
## 539                    818                     4501000H
## 540                    245                     5151001H
## 541                   1630                     7003004H
## 542                   1084                     5905200R
## 543                      5                     0101004H
## 544                   6067                     7003246R
## 545                    330                     1701000H
## 546                     NA                     3160301N
## 547                     NA                     7002137R
## 548                   3722                     7001259R
## 549                   1205                     7000225R
## 550                   4825                     6121203R
## 551                   4520                     7000245R
## 552                    694                     3522000H
## 553                     NA                     7000286R
## 554                   1040                     5901200R
## 555                     NA                     1301301N
## 556                   3414                     7002176R
## 557                     42                     0303001H
## 558                     NA                     1327302N
## 559                   1637                     7003010H
## 560                     NA                     7001152R
## 561                   1629                     7003003H
## 562                     NA                     1302208R
## 563                   7885                     1401230R
## 564                     NA                     5920502F
## 565                    103                     0602001H
## 566                   1169                     7000006H
## 567                     NA                     5401501F
## 568                     NA                     2951305N
## 569                   1447                     7002012H
## 570                     NA                     5907315N
## 571                     NA                     7000801N
## 572                     NA                     7002808R
## 573                   1463                     7002053H
## 574                     NA                     6120300N
## 575                     NA                     7003391N
## 576                    739                     3801000H
## 577                   6249                     7001296R
## 578                    411                     2701003H
## 579                   1326                     5660200R
## 580                   1416                     7002119R
## 581                    787                     4350305N
## 582                     NA                     7003007H
## 583                     NA                     1401204R
## 584                    223                     1401238R
## 585                   1463                     7002053H
## 586                     NA                     3331213R
## 587                    746                     3824000H
## 588                   3414                     7002176R
## 589                   1040                     5901200R
## 590                     NA                     2701241R
## 591                    409                     2701001H
## 592                   6908                     7002183R
## 593                   6780                     1401232R
## 594                   1463                     7002053H
## 595                   1740                     7004003H
## 596                   9566                     7002803R
## 597                   4548                     3301213R
## 598                     NA                     4552202R
## 599                   1463                     7002053H
## 600                    756                     4102002H
## 601                    818                     4501000H
## 602                    746                     3824000H
## 603                   6780                     1401232R
## 604                      5                     0101004H
## 605                     NA                     3402303N
## 606                      9                     0101203R
## 607                    245                     5151001H
## 608                    413                     2701005H
## 609                     11                     0101205R
## 610                    367                     2201000H
## 611                     NA                     2987200R
## 612                     NA                     2527200R
## 613                    192                     1327000H
## 614                     NA                     5157320N
## 615                     NA                     5401901L
## 616                   1439                     7002002H
## 617                   1307                     7000236R
## 618                     NA                     7000911L
## 619                   3921                     3922200R
## 620                    815                     4429000H
## 621                     NA                     5657300N
## 622                     NA                     4823700C
## 623                   1169                     7000006H
## 624                    207                     1401014H
## 625                     NA                      7002658
## 626                    599                     3202003H
## 627                    866                     5001000H
## 628                     NA                     7003419N
## 629                     NA                     0656200R
## 630                     NA                      0401600
## 631                     NA                     5901200R
## 632                    541                     2951001H
## 633                    756                     4102002H
## 634                      5                     0101004H
## 635                     NA                     7001143R
## 636                     NA                     7000226R
## 637                     NA                     7003350N
## 638                   3853                     2905204R
## 639                   1630                     7003004H
## 640                     NA                     5601202R
## 641                     NA                     7002145R
## 642                    411                     2701003H
## 643                   3414                     7002176R
## 644                   1040                     5901200R
## 645                   1040                     5901200R
## 646                    207                     1401014H
## 647                   6447                     7002233R
## 648                     NA                     7004324N
## 649                     NA                     2424000N
## 650                     NA                     0153302N
## 651                    222                     1401204R
## 652                     NA                     1451202R
## 653                    831                     4601004H
## 654                    896                     5149001H
## 655                     NA                     3327301N
## 656                   1629                     7003003H
## 657                     NA                     4350301N
## 658                     NA                     7004304N
## 659                    411                     2701003H
## 660                   9042                     3301221R
## 661                   4086                     0602201R
## 662                     NA                     0501000H
## 663                     NA                     1455501F
## 664                    635                     3301007H
## 665                   2951                     5155200R
## 666                     NA                     2701501F
## 667                    896                     5149001H
## 668                     NA                     5957300N
## 669                    678                     3429000H
## 670                   3396                     5153202R
## 671                    324                     1623001H
## 672                   1169                     7000006H
## 673                   1169                     7000006H
## 674                     NA                     2950316N
## 675                     NA                     7002231R
## 676                    589                     3201002H
## 677                     NA                     7003287R
## 678                     NA                      1624600
## 679                    413                     2701005H
## 680                     NA                     4353303N
## 681                   1097                     5907001H
## 682                     NA                     7001915L
## 683                     42                     0303001H
## 684                   1543                     7002273R
## 685                   7027                     7002153R
## 686                    527                     2950001H
## 687                    207                     1401014H
## 688                   1463                     7002053H
## 689                    738                     3726201R
## 690                     NA                     1552300N
## 691                   3414                     7002176R
## 692                   1503                     7002208R
## 693                     NA                     2725302N
## 694                    746                     3824000H
## 695                   3002                     7004204R
## 696                     NA                     2725300N
## 697                    413                     2701005H
## 698                   1005                     5601000H
## 699                    815                     4429000H
## 700                     NA                     7003288R
## 701                     NA                     1254302N
## 702                     NA                     2951306N
## 703                    756                     4102002H
## 704                      9                     0101203R
## 705                   1543                     7002273R
## 706                   1740                     7004003H
## 707                     NA                     4353204R
## 708                     NA                     0602001H
## 709                   1326                     5660200R
## 710                     NA                     3201002H
## 711                   1205                     7000225R
## 712                    818                     4501000H
## 713                   9999                     3202210R
## 714                     NA                     5957305N
## 715                     NA                     0901200R
## 716                   7278                     5921301N
## 717                    699                     3523000H
## 718                    635                     3301007H
## 719                   1307                     7000236R
## 720                    223                     1401238R
## 721                   3414                     7002176R
## 722                     NA                     2701239R
## 723                     NA                     7002176R
## 724                     NA                     2902307N
## 725                   3136                     7002122R
## 726                    678                     3429000H
## 727                   1307                     7000236R
## 728                     NA                     7000259R
## 729                     NA                     0301201R
## 730                   1463                     7002053H
## 731                   1040                     5901200R
## 732                    409                     2701001H
## 733                    583                     3121001H
## 734                    746                     3824000H
## 735                     NA                     4350203R
## 736                     NA                     2725301N
## 737                     NA                     7001265R
## 738                   1463                     7002053H
## 739                    642                     3301207R
## 740                   1463                     7002053H
## 741                     NA                     5123305N
## 742                     NA                     0658301N
## 743                    831                     4601004H
## 744                    245                     5151001H
## 745                     NA                     3301216R
## 746                     NA                     5153310N
## 747                     NA                     1701000N
## 748                     NA                      7001627
## 749                     11                     0101205R
## 750                     NA                     3274200R
## 751                   1040                     5901200R
## 752                     NA                     7002053H
## 753                    630                     3301003H
## 754                    756                     4102002H
## 755                   1098                     5907002H
## 756                    362                     2129700C
## 757                     NA                     7001275R
## 758                    213                     1401008H
## 759                   1708                     7003402N
## 760                    738                     3726201R
## 761                   1630                     7003004H
## 762                   4186                     2701230R
## 763                     NA                     7000267R
## 764                   1543                     7002273R
## 765                      5                     0101004H
## 766                     NA                     2124200R
## 767                    574                     3102000H
## 768                   6295                     7003259R
## 769                     NA                     5910301N
## 770                     NA                      5904602
## 771                    213                     1401008H
## 772                   6272                     7001299R
## 773                     NA                     4601004H
## 774                    207                     1401014H
## 775                   2532                     3529200R
## 776                    128                     0824000H
## 777                   1740                     7004003H
## 778                    977                     5401001H
## 779                     NA                     7001257R
## 780                   1169                     7000006H
## 781                   1447                     7002012H
## 782                   1169                     7000006H
## 783                     NA                     3201307N
## 784                   1318                     7001035H
## 785                   1169                     7000006H
## 786                     NA                     3535001H
## 787                   4789                     7001265R
## 788                     NA                     0364302N
## 789                    415                     2701231R
## 790                   1463                     7002053H
## 791                   1635                     7001024H
## 792                   1558                     7002289R
## 793                   3730                     4420200R
## 794                     NA                     7000006H
## 795                   1630                     7003004H
## 796                     NA                     2701211R
## 797                    146                     1001000H
## 798                     NA                     7000399N
## 799                    829                     4601001H
## 800                     NA                     5159200R
## 801                     NA                     2827000N
## 802                    815                     4429000H
## 803                   1169                     7000006H
## 804                     NA                     5151323N
## 805                    979                     5401200R
## 806                     NA                     7003386N
## 807                    510                     7002113R
## 808                    413                     2701005H
## 809                   1040                     5901200R
## 810                   6661                     7000272R
## 811                    413                     2701005H
## 812                     NA                     1322302N
## 813                     NA                     2701364N
## 814                     NA                     5947200R
## 815                   1040                     5901200R
## 816                   3136                     7002122R
## 817                   1005                     5601000H
## 818                    739                     3801000H
## 819                     NA                     1401008N
## 820                     NA                     5220301N
## 821                   4548                     3301213R
## 822                   1630                     7003004H
## 823                     NA                     7001912L
## 824                   1630                     7003004H
## 825                     NA                     3301327N
## 826                     NA                      7001645
## 827                     NA                     5904318N
## 828                     NA                     7002184R
## 829                   1040                     5901200R
## 830                     NA                     7001271R
## 831                    245                     5151001H
## 832                      5                     0101004H
## 833                   1169                     7000006H
## 834                   1512                     7002217R
## 835                   1206                     7000226R
## 836                     NA                      5724600
## 837                   1630                     7003004H
## 838                     NA                     1001200R
## 839                    829                     4601001H
## 840                     NA                     0601200R
## 841                   1320                     7001037H
## 842                     NA                     3301330N
## 843                    746                     3824000H
## 844                     NA                     4601901L
## 845                    411                     2701003H
## 846                    642                     3301207R
## 847                     NA                      1302604
## 848                    746                     3824000H
## 849                   6105                     7003245R
## 850                     NA                     7000240R
## 851                     NA                     1465200R
## 852                     NA                     7003309N
## 853                      1                     0101000H
## 854                     NA                     5127301N
## 855                     NA                      2701602
## 856                     NA                     5149001H
## 857                   3414                     7002176R
## 858                     NA                     5954300N
## 859                    599                     3202003H
## 860                   1098                     5907002H
## 861                     NA                     7002208R
## 862                   1169                     7000006H
## 863                     NA                     1456300N
## 864                   6661                     7000272R
## 865                   6661                     7000272R
## 866                   7857                     5924200R
## 867                   1205                     7000225R
## 868                     NA                     3824301N
## 869                     NA                     7001016H
## 870                    397                     2601001H
## 871                   3290                     3301209R
## 872                   1529                     7002243R
## 873                    642                     3301207R
## 874                    829                     4601001H
## 875                   1153                     6027000H
## 876                   1543                     7002273R
## 877                   1463                     7002053H
## 878                     NA                      5904601
## 879                    818                     4501000H
## 880                     NA                     3501204R
## 881                   1153                     6027000H
## 882                   1005                     5601000H
## 883                     NA                     0632000H
## 884                   1169                     7000006H
## 885                     NA                     7000288R
## 886                     NA                     7004322N
## 887                     NA                     7001046H
## 888                   4520                     7000245R
## 889                    818                     4501000H
## 890                     NA                     7001398N
## 891                   1562                     7002293R
## 892                    413                     2701005H
## 893                   1201                     7000221R
## 894                    218                     1401013H
## 895                     NA                     2952006H
## 896                   1543                     7002273R
## 897                   7885                     1401230R
## 898                     NA                     7001149R
## 899                     NA                     7004003H
## 900                     NA                     3350200R
## 901                    210                     1401005H
## 902                    223                     1401238R
## 903                     NA                     5924200R
## 904                     66                     0401001H
## 905                     NA                     1758901L
## 906                     NA                     1451203R
## 907                   1463                     7002053H
## 908                     NA                     7001254R
## 909                    541                     2951001H
## 910                     NA                     1401337N
## 911                    181                     1302001H
## 912                   4408                     7002136R
## 913                   1339                     7002112R
## 914                   4520                     7000245R
## 915                   6067                     7003246R
## 916                   1326                     5660200R
## 917                   1205                     7000225R
## 918                   2540                     7001256R
## 919                     NA                     3824000H
## 920                    146                     1001000H
## 921                   1439                     7002002H
## 922                   1727                     5903200R
## 923                     NA                     1101000H
## 924                   1172                     7000008H
## 925                     NA                     1403304N
## 926                     NA                     7000329N
## 927                   1463                     7002053H
## 928                     NA                     1823301N
## 929                   9542                     1401237R
## 930                    393                     2527000H
## 931                   1463                     7002053H
## 932                   1098                     5907002H
## 933                    746                     3824000H
## 934                   1049                     5902208R
## 935                    756                     4102002H
## 936                   1490                     7002103R
## 937                     NA                     3321200R
## 938                   6954                     7003267R
## 939                     NA                     5153210R
## 940                     NA                      2952606
## 941                     43                     0301001H
## 942                     NA                     4550200R
## 943                    977                     5401001H
## 944                     NA                     2757301N
## 945                   1456                     7002024H
## 946                    678                     3429000H
## 947                   1139                     5957001H
## 948                     NA                     4401300N
## 949                     NA                     7002131R
## 950                   1447                     7002012H
## 951                    135                     0901001H
## 952                    565                     3101000H
## 953                      1                     0101000H
## 954                   1195                     7000212R
## 955                   9926                     2951206R
## 956                   9443                     7001132R
## 957                     NA                     5157312N
## 958                      5                     0101004H
## 959                     NA                     7000387N
## 960                     NA                     7002113R
## 961                   4771                     4353202R
## 962                     NA                     7003413N
## 963                     NA                     7001147R
## 964                     NA                     7002803R
## 965                   3565                     2201201R
## 966                     NA                     3301219R
## 967                   1045                     5902001H
## 968                     NA                     5157318N
## 969                     NA                     5401313N
## 970                     NA                     3103000N
## 971                     NA                     0824303N
## 972                    339                     1801000H
## 973                     66                     0401001H
## 974                   3414                     7002176R
## 975                   1309                     7001046H
## 976                   1320                     7001037H
## 977                     NA                      4420600
## 978                     NA                     2701006H
## 979                   1139                     5957001H
## 980                   1288                     7001003H
## 981                   1117                     5920000H
## 982                   1463                     7002053H
## 983                     NA                     7001142R
## 984                   4963                     1101201R
## 985                     NA                     5153211R
## 986                    708                     3535001H
## 987                     NA                     4402200R
## 988                     NA                     7001800R
## 989                     42                     0303001H
## 990                   4695                     0701202R
## 991                   9375                     7002137R
## 992                   4506                     7000285R
## 993                   1529                     7002243R
## 994                    324                     1623001H
## 995                     NA                     5945200R
## 996                    642                     3301207R
## 997                   1046                     5902002H
## 998                     NA                     2801200R
## 999                   1463                     7002053H
## 1000                  1463                     7002053H
## 1001                   541                     2951001H
## 1002                    NA                     7001136R
## 1003                    43                     0301001H
## 1004                    NA                     1461302N
## 1005                    NA                     2750303N
## 1006                    NA                     4620300N
## 1007                    NA                     0101202R
## 1008                  1543                     7002273R
## 1009                    NA                     2801001N
## 1010                  1046                     5902002H
## 1011                    NA                     0622200R
## 1012                    NA                     3622700C
## 1013                  6661                     7000272R
## 1014                  1129                     5932000H
## 1015                   411                     2701003H
## 1016                    NA                     1401014H
## 1017                    NA                     5220202R
## 1018                  1630                     7003004H
## 1019                    NA                     4501301N
## 1020                  9422                     0601200R
## 1021                     5                     0101004H
## 1022                   885                     5123000H
## 1023                  1305                     7001020H
## 1024                    NA                     5154211R
## 1025                    NA                     7000350N
## 1026                  6661                     7000272R
## 1027                    NA                     2909304N
## 1028                    NA                     5401311N
## 1029                    39                     0228000H
## 1030                    NA                     3402201R
## 1031                  1357                     7001243R
## 1032                  6661                     7000272R
## 1033                   527                     2950001H
## 1034                    NA                     7000382N
## 1035                    NA                     5657200R
## 1036                    NA                     7002340N
## 1037                  9375                     7002137R
## 1038                   829                     4601001H
## 1039                  1205                     7000225R
## 1040                  3059                     1653200R
## 1041                    NA                     5904321N
## 1042                     1                     0101000H
## 1043                    NA                     1001303N
## 1044                    NA                     5903900L
## 1045                    NA                     2629303N
## 1046                  1585                     7002359N
## 1047                  3414                     7002176R
## 1048                  1463                     7002053H
## 1049                   541                     2951001H
## 1050                  7078                     7002157R
## 1051                    NA                     5220900L
## 1052                  1738                     7004010H
## 1053                    NA                     1401237R
## 1054                   379                     2238700C
## 1055                  1339                     7002112R
## 1056                  1447                     7002012H
## 1057                    NA                     3622000N
## 1058                    NA                     3526202R
## 1059                   181                     1302001H
## 1060                    NA                      2910601
## 1061                   845                     7001254R
## 1062                   727                     3702000H
## 1063                  1463                     7002053H
## 1064                    NA                     3353301N
## 1065                    NA                     2701006N
## 1066                    NA                     3501200R
## 1067                    NA                     7001034N
## 1068                    NA                     5501001H
## 1069                   411                     2701003H
## 1070                   756                     4102002H
## 1071                   925                     5154001H
## 1072                  1458                     7002054H
## 1073                    42                     0303001H
## 1074                   746                     3824000H
## 1075                    NA                     1302001H
## 1076                   635                     3301007H
## 1077                    NA                     3301209R
## 1078                    NA                     1257902L
## 1079                  5781                     1401201R
## 1080                   146                     1001000H
## 1081                  7646                     1402201R
## 1082                    NA                     7003246R
## 1083                     5                     0101004H
## 1084                    NA                     1421306N
## 1085                    NA                     1302309N
## 1086                   746                     3824000H
## 1087                  1097                     5907001H
## 1088                    NA                     7001146R
## 1089                    NA                     7002191R
## 1090                  3541                     2201202R
## 1091                    NA                     0501000N
## 1092                   471                     2754001H
## 1093                  3722                     7001259R
## 1094                    NA                     2124301N
## 1095                    NA                     7003001H
## 1096                  9375                     7002137R
## 1097                  3414                     7002176R
## 1098                  3901                     7002131R
## 1099                    NA                     7003234R
## 1100                   746                     3824000H
## 1101                  1305                     7001020H
## 1102                  1450                     7002017H
## 1103                  1453                     7002020H
## 1104                    NA                     3227303N
## 1105                  8533                     7002188R
## 1106                   870                     5002001H
## 1107                   746                     3824000H
## 1108                    NA                     7003417N
## 1109                   409                     2701001H
## 1110                  6754                     7003268R
## 1111                   146                     1001000H
## 1112                    NA                      3301602
## 1113                    NA                      5905602
## 1114                  3565                     2201201R
## 1115                  1629                     7003003H
## 1116                    NA                      5155600
## 1117                  1416                     7002119R
## 1118                  1294                     7001009H
## 1119                    NA                     3953200R
## 1120                  6265                     7001298R
## 1121                  4408                     7002136R
## 1122                  6672                     7000267R
## 1123                  4000                     0102001N
## 1124                    NA                     7003375N
## 1125                  1005                     5601000H
## 1126                    NA                     7001289R
## 1127                   409                     2701001H
## 1128                  1040                     5901200R
## 1129                  1637                     7003010H
## 1130                  1630                     7003004H
## 1131                  1456                     7002024H
## 1132                   207                     1401014H
## 1133                    NA                      7000609
## 1134                  1439                     7002002H
## 1135                    NA                     5957201R
## 1136                  3414                     7002176R
## 1137                   411                     2701003H
## 1138                   330                     1701000H
## 1139                   471                     2754001H
## 1140                  1456                     7002024H
## 1141                    NA                     2201207R
## 1142                    NA                     2910300N
## 1143                    NA                     3101000H
## 1144                    NA                     2902304N
## 1145                  1740                     7004003H
## 1146                  1740                     7004003H
## 1147                    NA                     3301328N
## 1148                   484                     2801001H
## 1149                  1727                     5903200R
## 1150                    NA                     0301001H
## 1151                   642                     3301207R
## 1152                    NA                     5957204R
## 1153                    NA                     0364301N
## 1154                    NA                     5123304N
## 1155                    NA                     5926300N
## 1156                    NA                     5932300N
## 1157                    NA                     1624000H
## 1158                    66                     0401001H
## 1159                    NA                     2754304N
## 1160                   630                     3301003H
## 1161                    NA                     7003411N
## 1162                    NA                     5901308N
## 1163                  4326                     7000243R
## 1164                    NA                     3801200R
## 1165                  2951                     5155200R
## 1166                   135                     0901001H
## 1167                    NA                     2952310N
## 1168                    NA                     0823300N
## 1169                  4419                     2908201R
## 1170                   379                     2238700C
## 1171                  1169                     7000006H
## 1172                  1049                     5902208R
## 1173                   413                     2701005H
## 1174                  1029                     5820000N
## 1175                    NA                     1363201R
## 1176                    NA                     2522200R
## 1177                    NA                     4102307N
## 1178                    NA                     7001033H
## 1179                  1463                     7002053H
## 1180                  1045                     5902001H
## 1181                    NA                     7000024H
## 1182                   925                     5154001H
## 1183                   411                     2701003H
## 1184                  2532                     3529200R
## 1185                    NA                     4401302N
## 1186                   428                     2701221R
## 1187                    NA                     3429000H
## 1188                  1205                     7000225R
## 1189                    NA                     5150302N
## 1190                  1630                     7003004H
## 1191                    NA                     0155304N
## 1192                   829                     4601001H
## 1193                   989                     5501000H
## 1194                  1307                     7000236R
## 1195                    NA                     2623300N
## 1196                    NA                     1406303N
## 1197                    NA                     7002173R
## 1198                  1543                     7002273R
## 1199                  1416                     7002119R
## 1200                   798                     4401000H
## 1201                    NA                     7003362N
## 1202                   135                     0901001H
## 1203                    NA                     0151301N
## 1204                    NA                     3227200R
## 1205                  1463                     7002053H
## 1206                  1416                     7002119R
## 1207                    NA                     2913201R
## 1208                  1558                     7002289R
## 1209                  9052                     7002191R
## 1210                    NA                     5946201R
## 1211                    NA                     0301308N
## 1212                  1492                     7002105R
## 1213                  3901                     7002131R
## 1214                  1164                     7000001H
## 1215                  1463                     7002053H
## 1216                  1176                     7000014H
## 1217                  9375                     7002137R
## 1218                 10074                     2601201R
## 1219                    NA                     3301227R
## 1220                    NA                     7003409N
## 1221                  1286                     7001002H
## 1222                    85                     0501000H
## 1223                  1450                     7002017H
## 1224                  1463                     7002053H
## 1225                  1458                     7002054H
## 1226                    NA                     1101312N
## 1227                  1456                     7002024H
## 1228                  1463                     7002053H
## 1229                    NA                     7001138R
## 1230                    NA                     7001256R
## 1231                   411                     2701003H
## 1232                    NA                     5002302N
## 1233                    NA                     4569200R
## 1234                  7065                     7004207R
## 1235                   245                     5151001H
## 1236                  9230                     2701240R
## 1237                  1637                     7003010H
## 1238                   245                     5151001H
## 1239                    NA                     2729300N
## 1240                    NA                     7003385N
## 1241                    39                     0228000H
## 1242                    NA                     5902318N
## 1243                  1040                     5901200R
## 1244                   471                     2754001H
## 1245                  1005                     5601000H
## 1246                     1                     0101000H
## 1247                    NA                     2850301N
## 1248                   471                     2754001H
## 1249                  1307                     7000236R
## 1250                    NA                     5158302N
## 1251                  6661                     7000272R
## 1252                    NA                     2601001H
## 1253                   565                     3101000H
## 1254                  2532                     3529200R
## 1255                   116                     0701000H
## 1256                   739                     3801000H
## 1257                  9422                     0601200R
## 1258                    NA                     5946202R
## 1259                    NA                     7000011H
## 1260                   207                     1401014H
## 1261                  1740                     7004003H
## 1262                  1169                     7000006H
## 1263                  1630                     7003004H
## 1264                   990                     5501001H
## 1265                    42                     0303001H
## 1266                   738                     3726201R
## 1267                    NA                      0901601
## 1268                    NA                     3402000H
## 1269                  1529                     7002243R
## 1270                    NA                     1101201R
## 1271                  1195                     7000212R
## 1272                  1463                     7002053H
## 1273                    NA                     4429000H
## 1274                    NA                     5151208R
## 1275                    NA                     5902212R
## 1276                  1529                     7002243R
## 1277                  1176                     7000014H
## 1278                   339                     1801000H
## 1279                   752                     3950000H
## 1280                   599                     3202003H
## 1281                  1084                     5905200R
## 1282                  3414                     7002176R
## 1283                    NA                     1226701C
## 1284                  1463                     7002053H
## 1285                    NA                     3202315N
## 1286                    NA                     1401219R
## 1287                   422                     2701215R
## 1288                   599                     3202003H
## 1289                  4506                     7000285R
## 1290                    NA                     2701230R
## 1291                  1463                     7002053H
## 1292                    NA                     7000356N
## 1293                   678                     3429000H
## 1294                  6998                     7002185R
## 1295                    NA                     7003410N
## 1296                  1458                     7002054H
## 1297                    NA                     2601202R
## 1298                   635                     3301007H
## 1299                    NA                     4322300N
## 1300                  4548                     3301213R
## 1301                    NA                     5907001H
## 1302                  2761                     7002288R
## 1303                  1392                     7001391N
## 1304                    NA                     5324303N
## 1305                    NA                     7003377N
## 1306                    NA                      7002656
## 1307                   146                     1001000H
## 1308                   207                     1401014H
## 1309                   367                     2201000H
## 1310                    NA                      7003608
## 1311                    NA                     4823000N
## 1312                  6661                     7000272R
## 1313                   742                     3801202R
## 1314                   756                     4102002H
## 1315                   428                     2701221R
## 1316                    NA                     5153311N
## 1317                    NA                     5923500F
## 1318                  6780                     1401232R
## 1319                  3414                     7002176R
## 1320                    NA                     2950900L
## 1321                  1740                     7004003H
## 1322                  1305                     7001020H
## 1323                  1458                     7002054H
## 1324                   415                     2701231R
## 1325                  3730                     4420200R
## 1326                  1169                     7000006H
## 1327                  1326                     5660200R
## 1328                    NA                     7001002H
## 1329                    NA                     5902501F
## 1330                   218                     1401013H
## 1331                  1320                     7001037H
## 1332                    NA                     1356200R
## 1333                   401                     2625700C
## 1334                  1169                     7000006H
## 1335                  7884                     5254200R
## 1336                  1201                     7000221R
## 1337                    NA                     5820000H
## 1338                    NA                     2201202R
## 1339                   676                     3421000H
## 1340                  1416                     7002119R
## 1341                  1307                     7000236R
## 1342                  1447                     7002012H
## 1343                  1129                     5932000H
## 1344                    NA                     4102311N
## 1345                   330                     1701000H
## 1346                   704                     3529000H
## 1347                   303                     1552701C
## 1348                   974                     5324200R
## 1349                    NA                     3702500F
## 1350                    NA                     7002360N
## 1351                  1543                     7002273R
## 1352                  7511                     7002160R
## 1353                    NA                     3301224R
## 1354                    NA                     7000283R
## 1355                   589                     3201002H
## 1356                  5652                     7001276R
## 1357                    NA                     7003418N
## 1358                    NA                     3202003H
## 1359                  1109                     5907319N
## 1360                  3722                     7001259R
## 1361                   729                     3702200R
## 1362                  6249                     7001296R
## 1363                  9042                     3301221R
## 1364                  1543                     7002273R
## 1365                    NA                     0101901L
## 1366                    NA                     7002188R
## 1367                    NA                     2950315N
## 1368                    NA                     2701354N
## 1369                   174                     1229700C
## 1370                  1630                     7003004H
## 1371                  9000                     7000279R
## 1372                   362                     2129700C
## 1373                   756                     4102002H
## 1374                  3454                     7002139R
## 1375                   330                     1701000H
## 1376                  1453                     7002020H
## 1377                    NA                     5320302N
## 1378                   383                     2424700C
## 1379                  1416                     7002119R
## 1380                    43                     0301001H
## 1381                  1339                     7002112R
## 1382                    NA                     7002002H
## 1383                  1630                     7003004H
## 1384                  8621                     7001123R
## 1385                    NA                     5905309N
## 1386                  1439                     7002002H
## 1387                    NA                     2910901L
## 1388                  4419                     2908201R
## 1389                  1629                     7003003H
## 1390                   818                     4501000H
## 1391                   756                     4102002H
## 1392                  1630                     7003004H
## 1393                   383                     2424700C
## 1394                    NA                     2907200R
## 1395                    NA                     7002818R
## 1396                  6661                     7000272R
## 1397                    NA                     7004320N
## 1398                   409                     2701001H
## 1399                    43                     0301001H
## 1400                  1049                     5902208R
## 1401                    NA                     5861200R
## 1402                   818                     4501000H
## 1403                   746                     3824000H
## 1404                  1169                     7000006H
## 1405                  1463                     7002053H
## 1406                   831                     4601004H
## 1407                  1740                     7004003H
## 1408                   746                     3824000H
## 1409                  1307                     7000236R
## 1410                   756                     4102002H
## 1411                  2761                     7002288R
## 1412                   146                     1001000H
## 1413                   845                     7001254R
## 1414                  1169                     7000006H
## 1415                    NA                     3201002N
## 1416                  1326                     5660200R
## 1417                    NA                     7000314N
## 1418                  1439                     7002002H
## 1419                  1169                     7000006H
## 1420                  4963                     1101201R
## 1421                   756                     4102002H
## 1422                  1463                     7002053H
## 1423                   599                     3202003H
## 1424                  6683                     5861200R
## 1425                  1463                     7002053H
## 1426                    NA                     1560302N
## 1427                    NA                     6120700C
## 1428                    NA                     7002814R
## 1429                   752                     3950000H
## 1430                   635                     3301007H
## 1431                    NA                     5556901L
## 1432                   411                     2701003H
## 1433                   413                     2701005H
## 1434                  1169                     7000006H
## 1435                  2532                     3529200R
## 1436                  3414                     7002176R
## 1437                   413                     2701005H
## 1438                  1169                     7000006H
## 1439                   223                     1401238R
## 1440                   411                     2701003H
## 1441                   938                     5155000H
## 1442                    NA                      2201602
## 1443                  6447                     7002233R
## 1444                    NA                     0101220R
## 1445                    NA                     7001362N
## 1446                  1098                     5907002H
## 1447                   756                     4102002H
## 1448                    43                     0301001H
## 1449                  1049                     5902208R
## 1450                    NA                     0101205R
## 1451                  4408                     7002136R
## 1452                    NA                     7001290R
## 1453                  1169                     7000006H
## 1454                    NA                     7003412N
## 1455                    NA                     2424700C
## 1456                   411                     2701003H
## 1457                     5                     0101004H
## 1458                  3414                     7002176R
## 1459                   565                     3101000H
## 1460                   383                     2424700C
## 1461                  6067                     7003246R
## 1462                  1129                     5932000H
## 1463                   116                     0701000H
## 1464                    NA                     3702309N
## 1465                    NA                     5907318N
## 1466                    NA                     5903204R
## 1467                   218                     1401013H
## 1468                   367                     2201000H
## 1469                  9926                     2951206R
## 1470                  1084                     5905200R
## 1471                    NA                     7001123R
## 1472                   756                     4102002H
## 1473                   107                     0602308N
## 1474                    NA                     3702312N
## 1475                  3770                     1401219R
## 1476                    NA                     1754301N
## 1477                  1529                     7002243R
## 1478                  1205                     7000225R
## 1479                  1039                     5901000H
## 1480                    NA                     5920000H
## 1481                    NA                     5907210R
## 1482                    NA                     1427000H
## 1483                    NA                     7004303N
## 1484                    43                     0301001H
## 1485                    NA                     5820200R
## 1486                    NA                     5968302N
## 1487                  6105                     7003245R
## 1488                  9443                     7001132R
## 1489                    NA                     7002358N
## 1490                  6780                     1401232R
## 1491                    NA                     4350304N
## 1492                   541                     2951001H
## 1493                   428                     2701221R
## 1494                   574                     3102000H
## 1495                   905                     5151201R
## 1496                    NA                     5154312N
## 1497                  1040                     5901200R
## 1498                    NA                     5155200R
## 1499                   727                     3702000H
## 1500                   413                     2701005H
## 1501                  7885                     1401230R
## 1502                  1169                     7000006H
## 1503                  1727                     5903200R
## 1504                    NA                     3353300N
## 1505                    NA                     1327000H
## 1506                    NA                     3202316N
## 1507                    NA                     1257201R
## 1508                    NA                     5101301N
## 1509                    NA                     2901306N
## 1510                  4548                     3301213R
## 1511                   471                     2754001H
## 1512                  1307                     7000236R
## 1513                  6447                     7002233R
## 1514                   413                     2701005H
## 1515                    NA                      4601600
## 1516                  1169                     7000006H
## 1517                   174                     1229700C
## 1518                  1463                     7002053H
## 1519                  3044                     7001250R
## 1520                  6661                     7000272R
## 1521                  1164                     7000001H
## 1522                  1139                     5957001H
## 1523                    NA                     7003241R
## 1524                    NA                     2750304N
## 1525                  6661                     7000272R
## 1526                   181                     1302001H
## 1527                  1169                     7000006H
## 1528                    NA                     5151324N
## 1529                    NA                      2950601
## 1530                    NA                     1401203R
## 1531                  1205                     7000225R
## 1532                  1139                     5957001H
## 1533                    NA                     2701360N
## 1534                  1169                     7000006H
## 1535                  9375                     7002137R
## 1536                  1117                     5920000H
## 1537                  6661                     7000272R
## 1538                   411                     2701003H
## 1539                    NA                     1401339N
## 1540                   409                     2701001H
## 1541                    NA                     5154205R
## 1542                     5                     0101004H
## 1543                    NA                     0901001N
## 1544                  9926                     2951206R
## 1545                    NA                     7003281R
## 1546                    NA                     0427303N
## 1547                    NA                     7002054H
## 1548                   484                     2801001H
## 1549                  9375                     7002137R
## 1550                  3414                     7002176R
## 1551                    NA                     5155000N
## 1552                   484                     2801001H
## 1553                   303                     1552701C
## 1554                    NA                     2522300N
## 1555                  1463                     7002053H
## 1556                    NA                     5501311N
## 1557                    NA                     7003274R
## 1558                    NA                     7000380N
## 1559                  1097                     5907001H
## 1560                  1456                     7002024H
## 1561                    NA                     1455204R
## 1562                    NA                      5923600
## 1563                    NA                     7001009H
## 1564                    NA                     7001281R
## 1565                    NA                     0221902L
## 1566                   245                     5151001H
## 1567                  1456                     7002024H
## 1568                    NA                     5150210R
## 1569                  3541                     2201202R
## 1570                   746                     3824000H
## 1571                   409                     2701001H
## 1572                    NA                     7002177R
## 1573                    NA                     7000302N
## 1574                  1463                     7002053H
## 1575                  1045                     5902001H
## 1576                    NA                     7003266R
## 1577                   925                     5154001H
## 1578                  1543                     7002273R
## 1579                    NA                     7003254R
## 1580                    NA                     7000225R
## 1581                   411                     2701003H
## 1582                  1326                     5660200R
## 1583                    NA                     5153000H
## 1584                    NA                     7003397N
## 1585                   471                     2754001H
## 1586                   245                     5151001H
## 1587                   671                     3402000H
## 1588                   829                     4601001H
## 1589                    42                     0303001H
## 1590                   574                     3102000H
## 1591                    NA                      1401614
## 1592                  3730                     4420200R
## 1593                    NA                     7002154R
## 1594                  6674                     0401201R
## 1595                     5                     0101004H
## 1596                  1205                     7000225R
## 1597                   896                     5149001H
## 1598                    NA                     1401342N
## 1599                    NA                      2950600
## 1600                    NA                     5909302N
## 1601                  1169                     7000006H
## 1602                   818                     4501000H
## 1603                    NA                     2901201R
## 1604                  1307                     7000236R
## 1605                     5                     0101004H
## 1606                    NA                     7001299R
## 1607                  1630                     7003004H
## 1608                    NA                     3526201R
## 1609                  1286                     7001002H
## 1610                  1040                     5901200R
## 1611                  1207                     7000227R
## 1612                  3454                     7002139R
## 1613                    NA                     7000395N
## 1614                  3414                     7002176R
## 1615                  2951                     5155200R
## 1616                  1456                     7002024H
## 1617                   818                     4501000H
## 1618                    NA                     2701909L
## 1619                    NA                     5724302N
## 1620                  1458                     7002054H
## 1621                   834                     4601203R
## 1622                    NA                     2701215R
## 1623                    NA                     7001369N
## 1624                  5901                     3202206R
## 1625                  9467                     1401236R
## 1626                    NA                     1226701C
## 1627                  1320                     7001037H
## 1628                  1169                     7000006H
## 1629                    NA                     7003330N
## 1630                  3414                     7002176R
## 1631                   207                     1401014H
## 1632                  1205                     7000225R
## 1633                  1307                     7000236R
## 1634                    NA                     7000392N
## 1635                    NA                     7003267R
## 1636                    NA                     7001397N
## 1637                    NA                     3801202R
## 1638                    NA                     7000390N
## 1639                   325                     1624000H
## 1640                    NA                     2951305N
## 1641                    10                     0101204R
## 1642                    NA                     7001148R
## 1643                   409                     2701001H
## 1644                  9375                     7002137R
## 1645                    42                     0303001H
## 1646                  1084                     5905200R
## 1647                  6016                     7002150R
## 1648                  1307                     7000236R
## 1649                  3722                     7001259R
## 1650                    NA                     3523304N
## 1651                  1335                     7001214R
## 1652                    NA                     7002112R
## 1653                    NA                     5263700C
## 1654                  7238                     5904201R
## 1655                   527                     2950001H
## 1656                    NA                      7001625
## 1657                   599                     3202003H
## 1658                  1040                     5901200R
## 1659                  1630                     7003004H
## 1660                  1005                     5601000H
## 1661                  8533                     7002188R
## 1662                     1                     0101000H
## 1663                   135                     0901001H
## 1664                  1416                     7002119R
## 1665                   727                     3702000H
## 1666                   413                     2701005H
## 1667                  1503                     7002208R
## 1668                    NA                     1435302N
## 1669                    NA                     0363301N
## 1670                  1458                     7002054H
## 1671                  3230                     5157320N
## 1672                     5                     0101004H
## 1673                   598                     3202002H
## 1674                   671                     3402000H
## 1675                   738                     3726201R
## 1676                  3414                     7002176R
## 1677                   829                     4601001H
## 1678                  7111                     7003247R
## 1679                   746                     3824000H
## 1680                    NA                     5904201R
## 1681                   746                     3824000H
## 1682                  1458                     7002054H
## 1683                   484                     2801001H
## 1684                    NA                     7000319N
## 1685                  6661                     7000272R
## 1686                   411                     2701003H
## 1687                   896                     5149001H
## 1688                  1463                     7002053H
## 1689                   471                     2754001H
## 1690                   583                     3121001H
## 1691                    45                     0301201R
## 1692                    NA                     7001800N
## 1693                    NA                      2952604
## 1694                   738                     3726201R
## 1695                  6661                     7000272R
## 1696                   599                     3202003H
## 1697                    NA                     0303306N
## 1698                   885                     5123000H
## 1699                    NA                     4724200R
## 1700                  1335                     7001214R
## 1701                    NA                     1801308N
## 1702                  1543                     7002273R
## 1703                  3227                     7001808N
## 1704                  1175                     7000011H
## 1705                   815                     4429000H
## 1706                  1205                     7000225R
## 1707                  7511                     7002160R
## 1708                    NA                     7001503F
## 1709                    NA                     2963201R
## 1710                    NA                     7001391N
## 1711                  1176                     7000014H
## 1712                   756                     4102002H
## 1713                    NA                     0101305N
## 1714                  9481                     7001103R
## 1715                    NA                     7001102R
## 1716                    NA                     1401340N
## 1717                   727                     3702000H
## 1718                    NA                     7004204R
## 1719                    NA                     2910200R
## 1720                  1438                     7002001H
## 1721                  9926                     2951206R
## 1722                   812                     4423701C
## 1723                    NA                     7001300R
## 1724                  1201                     7000221R
## 1725                    NA                     5903309N
## 1726                  4963                     1101201R
## 1727                   362                     2129700C
## 1728                  1463                     7002053H
## 1729                   977                     5401001H
## 1730                   563                     2953000H
## 1731                    NA                     3301221R
## 1732                  1447                     7002012H
## 1733                  1046                     5902002H
## 1734                   885                     5123000H
## 1735                    NA                      1451602
## 1736                   393                     2527000H
## 1737                    NA                     5620901L
## 1738                  1169                     7000006H
## 1739                    NA                      7000612
## 1740                   397                     2601001H
## 1741                    NA                     1059202R
## 1742                  3671                     7003234R
## 1743                  3414                     7002176R
## 1744                    NA                     0401200R
## 1745                    NA                     7002293R
## 1746                  1129                     5932000H
## 1747                   635                     3301007H
## 1748                   379                     2238700C
## 1749                  6249                     7001296R
## 1750                   834                     4601203R
## 1751                   409                     2701001H
## 1752                    NA                     3502305N
## 1753                  1416                     7002119R
## 1754                   990                     5501001H
## 1755                    NA                     4560200R
## 1756                   738                     3726201R
## 1757                    NA                     5155000H
## 1758                    NA                     5957203R
## 1759                  3044                     7001250R
## 1760                    NA                     4102311N
## 1761                  1169                     7000006H
## 1762                  6008                     7001274R
## 1763                  1169                     7000006H
## 1764                   914                     5154212R
## 1765                    NA                     4429901L
## 1766                  1458                     7002054H
## 1767                  1045                     5902001H
## 1768                    NA                     1404000H
## 1769                   746                     3824000H
## 1770                   527                     2950001H
## 1771                   116                     0701000H
## 1772                    NA                     7000914L
## 1773                   870                     5002001H
## 1774                   746                     3824000H
## 1775                    NA                     7002816R
## 1776                    NA                     0824200R
## 1777                   413                     2701005H
## 1778                    NA                     1451307N
## 1779                    NA                     3301203R
## 1780                    NA                     2754001H
## 1781                    NA                     5153212R
## 1782                  1453                     7002020H
## 1783                    NA                     0901206R
## 1784                    NA                      3402601
## 1785                  3722                     7001259R
## 1786                    NA                     1302308N
## 1787                    NA                     2761303N
## 1788                  3414                     7002176R
## 1789                    NA                     5034300N
## 1790                    NA                     7002337N
## 1791                   756                     4102002H
## 1792                   527                     2950001H
## 1793                  1740                     7004003H
## 1794                   635                     3301007H
## 1795                  1630                     7003004H
## 1796                  6387                     0501202R
## 1797                    NA                     5401204R
## 1798                  1463                     7002053H
## 1799                   170                     1226701C
## 1800                   128                     0824000H
## 1801                    NA                     7004213R
## 1802                    NA                     3102206R
## 1803                    NA                     7000212R
## 1804                   756                     4102002H
## 1805                    NA                     3421000N
## 1806                  1543                     7002273R
## 1807                  1630                     7003004H
## 1808                    NA                     2701005H
## 1809                   245                     5151001H
## 1810                    NA                     5157317N
## 1811                  1463                     7002053H
## 1812                  1603                     7002340N
## 1813                   818                     4501000H
## 1814                   207                     1401014H
## 1815                  1463                     7002053H
## 1816                   845                     7001254R
## 1817                    NA                      7002659
## 1818                    NA                     5401305N
## 1819                  6661                     7000272R
## 1820                    NA                     5601000H
## 1821                    NA                      5155601
## 1822                    NA                     7000385N
## 1823                  7857                     5924200R
## 1824                    NA                     7002107R
## 1825                   798                     4401000H
## 1826                   678                     3429000H
## 1827                  3414                     7002176R
## 1828                    NA                     0101219R
## 1829                     5                     0101004H
## 1830                  4771                     4353202R
## 1831                   870                     5002001H
## 1832                    NA                     4420200R
## 1833                  1439                     7002002H
## 1834                  1164                     7000001H
## 1835                   831                     4601004H
## 1836                    NA                     3950000H
## 1837                    39                     0228000H
## 1838                   635                     3301007H
## 1839                  1326                     5660200R
## 1840                    NA                     5901000H
## 1841                    NA                      1758601
## 1842                    NA                     7001380N
## 1843                   924                     5154000H
## 1844                  6610                     7001108R
## 1845                    NA                     7000381N
## 1846                   135                     0901001H
## 1847                   484                     2801001H
## 1848                  4000                     0102001N
## 1849                   642                     3301207R
## 1850                   630                     3301003H
## 1851                    NA                      5946600
## 1852                   207                     1401014H
## 1853                    NA                      7001643
## 1854                   990                     5501001H
## 1855                  3414                     7002176R
## 1856                   413                     2701005H
## 1857                   990                     5501001H
## 1858                  6067                     7003246R
## 1859                  1169                     7000006H
## 1860                    NA                     7000271R
## 1861                  1460                     7002026H
## 1862                  1307                     7000236R
## 1863                  1463                     7002053H
## 1864                  6661                     7000272R
## 1865                    42                     0303001H
## 1866                    NA                     5254200R
## 1867                    NA                     7002288R
## 1868                   269                     1404300N
## 1869                    NA                     7002253R
## 1870                    NA                     7002361N
## 1871                  1040                     5901200R
## 1872                   411                     2701003H
## 1873                   756                     4102002H
## 1874                    NA                     7000291R
## 1875                    NA                     3202004H
## 1876                    NA                     1467301N
## 1877                  3855                     3202204R
## 1878                    NA                     7001807N
## 1879                    NA                      7002654
## 1880                   207                     1401014H
## 1881                   218                     1401013H
## 1882                     5                     0101004H
## 1883                   413                     2701005H
## 1884                  4771                     4353202R
## 1885                   812                     4423701C
## 1886                  1463                     7002053H
## 1887                    NA                      2201600
## 1888                    NA                     5157204R
## 1889                  1629                     7003003H
## 1890                    NA                     2952309N
## 1891                    42                     0303001H
## 1892                    42                     0303001H
## 1893                  1005                     5601000H
## 1894                   589                     3201002H
## 1895                    NA                     4161305N
## 1896                   818                     4501000H
## 1897                  9375                     7002137R
## 1898                    NA                     1421307N
## 1899                    NA                     7002021H
## 1900                    43                     0301001H
## 1901                    NA                      3331601
## 1902                  6447                     7002233R
## 1903                    NA                     7003236R
## 1904                  6683                     5861200R
## 1905                   746                     3824000H
## 1906                    NA                     7002160R
## 1907                    NA                     7001135R
## 1908                    NA                     4353200R
## 1909                  1460                     7002026H
## 1910                  4798                     4353204R
## 1911                    NA                     5220303N
## 1912                    43                     0301001H
## 1913                  6067                     7003246R
## 1914                  6295                     7003259R
## 1915                    NA                     4402001H
## 1916                    NA                     5151205R
## 1917                     5                     0101004H
## 1918                  1169                     7000006H
## 1919                     5                     0101004H
## 1920                    NA                     1435203R
## 1921                   896                     5149001H
## 1922                    NA                     5151310N
## 1923                    NA                      2914602
## 1924                    NA                     7004210R
## 1925                  1005                     5601000H
## 1926                  6249                     7001296R
## 1927                   218                     1401013H
## 1928                   704                     3529000H
## 1929                  9000                     7000279R
## 1930                    NA                     0701203R
## 1931                    NA                      2963601
## 1932                    NA                     7002190R
## 1933                  9375                     7002137R
## 1934                    NA                     7003367N
## 1935                   413                     2701005H
## 1936                   635                     3301007H
## 1937                  1098                     5907002H
## 1938                  1529                     7002243R
## 1939                    NA                     1451304N
## 1940                    NA                     0301305N
## 1941                    NA                     0302303N
## 1942                   746                     3824000H
## 1943                    NA                     1464302N
## 1944                    39                     0228000H
## 1945                    NA                     1421305N
## 1946                  1176                     7000014H
## 1947                   541                     2951001H
## 1948                    NA                     2906302N
## 1949                   218                     1401013H
## 1950                  1529                     7002243R
## 1951                   818                     4501000H
## 1952                    NA                     0469300N
## 1953                   213                     1401008H
## 1954                  1727                     5903200R
## 1955                    NA                     1624000N
## 1956                    NA                     7002012H
## 1957                   218                     1401013H
## 1958                  4419                     2908201R
## 1959                    NA                     0701000H
## 1960                    NA                     3331212R
## 1961                  8533                     7002188R
## 1962                  5781                     1401201R
## 1963                  6067                     7003246R
## 1964                    11                     0101205R
## 1965                    NA                      2905601
## 1966                   218                     1401013H
## 1967                  1463                     7002053H
## 1968                  9999                     3202210R
## 1969                    43                     0301001H
## 1970                    NA                     5904309N
## 1971                  6661                     7000272R
## 1972                    NA                     2124300N
## 1973                    NA                     7001020H
## 1974                    NA                     2952301N
## 1975                    NA                     7001132R
## 1976                   756                     4102002H
## 1977                    NA                     0101312N
## 1978                  1416                     7002119R
## 1979                   831                     4601004H
## 1980                    NA                     4601004H
## 1981                  2532                     3529200R
## 1982                    NA                     7000285R
## 1983                   674                     3402302N
## 1984                    NA                     1474301N
## 1985                   116                     0701000H
## 1986                  3414                     7002176R
## 1987                  1169                     7000006H
## 1988                    NA                     3529000H
## 1989                    NA                     7001396N
## 1990                  1040                     5901200R
## 1991                  1326                     5660200R
## 1992                  9999                     3202210R
## 1993                  1098                     5907002H
## 1994                    NA                     5907002H
## 1995                  1046                     5902002H
## 1996                    NA                     2201200R
## 1997                   146                     1001000H
## 1998                    NA                     7003307N
## 1999                    NA                     5902001H
## 2000                    NA                      2701600
## 2001                    NA                     7004901L
## 2002                  7511                     7002160R
## 2003                  9542                     1401237R
## 2004                  2532                     3529200R
## 2005                    NA                     1953300N
## 2006                    NA                     7001145R
## 2007                    NA                     7002171R
## 2008                   718                     3622700C
## 2009                   245                     5151001H
## 2010                    NA                     4350305N
## 2011                    NA                     1320201R
## 2012                    NA                      7003618
## 2013                    NA                     7001033N
## 2014                   181                     1302001H
## 2015                    42                     0303001H
## 2016                    NA                     2520301N
## 2017                    NA                     5263200R
## 2018                   756                     4102002H
## 2019                   413                     2701005H
## 2020                  1039                     5901000H
## 2021                   829                     4601001H
## 2022                  1738                     7004010H
## 2023                  5781                     1401201R
## 2024                   413                     2701005H
## 2025                    NA                     2905203R
## 2026                    NA                     3102208R
## 2027                    NA                     7001802N
## 2028                  4506                     7000285R
## 2029                    NA                     0221201R
## 2030                    NA                      7002651
## 2031                  1005                     5601000H
## 2032                    NA                     7000366N
## 2033                   411                     2701003H
## 2034                    NA                     0433303N
## 2035                  3136                     7002122R
## 2036                   484                     2801001H
## 2037                   413                     2701005H
## 2038                  1305                     7001020H
## 2039                    NA                     7003361N
## 2040                  6808                     7000271R
## 2041                    NA                     7004502F
## 2042                  4494                     2623300N
## 2043                   924                     5154000H
## 2044                  1040                     5901200R
## 2045                    NA                     7003271R
## 2046                  9375                     7002137R
## 2047                    NA                     7002243R
## 2048                  1288                     7001003H
## 2049                   989                     5501000H
## 2050                   413                     2701005H
## 2051                   146                     1001000H
## 2052                   589                     3201002H
## 2053                  8533                     7002188R
## 2054                    NA                     2951001H
## 2055                   630                     3301003H
## 2056                   409                     2701001H
## 2057                    NA                     2751200R
## 2058                   866                     5001000H
## 2059                  4789                     7001265R
## 2060                   642                     3301207R
## 2061                  6295                     7003259R
## 2062                   210                     1401005H
## 2063                  1307                     7000236R
## 2064                  1450                     7002017H
## 2065                   397                     2601001H
## 2066                   583                     3121001H
## 2067                  6780                     1401232R
## 2068                  1453                     7002020H
## 2069                  1307                     7000236R
## 2070                    NA                     7002009H
## 2071                    NA                     7004310N
## 2072                    NA                     7003416N
## 2073                    NA                     5905200R
## 2074                    NA                     7001801N
## 2075                    NA                     5905303N
## 2076                   541                     2951001H
## 2077                    NA                     7003291R
## 2078                   471                     2754001H
## 2079                   411                     2701003H
## 2080                  1447                     7002012H
## 2081                  3565                     2201201R
## 2082                  1456                     7002024H
## 2083                    NA                     0602308N
## 2084                  1326                     5660200R
## 2085                   207                     1401014H
## 2086                    66                     0401001H
## 2087                    43                     0301001H
## 2088                   798                     4401000H
## 2089                   784                     4350304N
## 2090                    NA                     2914200R
## 2091                  1326                     5660200R
## 2092                  1205                     7000225R
## 2093                  3414                     7002176R
## 2094                  1205                     7000225R
## 2095                  1453                     7002020H
## 2096                  4825                     6121203R
## 2097                    NA                     2701502F
## 2098                    NA                     2950301N
## 2099                   471                     2754001H
## 2100                   746                     3824000H
## 2101                    NA                     1302209R
## 2102                    NA                     7003373N
## 2103                    NA                     5655303N
## 2104                   362                     2129700C
## 2105                   471                     2754001H
## 2106                    NA                     2902303N
## 2107                  1288                     7001003H
## 2108                    NA                     0303001H
## 2109                   815                     4429000H
## 2110                  1169                     7000006H
## 2111                    NA                     4321302N
## 2112                  9566                     7002803R
## 2113                  6661                     7000272R
## 2114                  4963                     1101201R
## 2115                   642                     3301207R
## 2116                  2540                     7001256R
## 2117                    NA                     0824000H
## 2118                    NA                     3801000N
## 2119                    NA                     2627902L
## 2120                    NA                     5904317N
## 2121                  3722                     7001259R
## 2122                    85                     0501000H
## 2123                    NA                     0101305N
## 2124                  7676                     7002161R
## 2125                  4789                     7001265R
## 2126                   413                     2701005H
## 2127                   896                     5149001H
## 2128                  1543                     7002273R
## 2129                  1463                     7002053H
## 2130                  1061                     5903001H
## 2131                  1326                     5660200R
## 2132                  4789                     7001265R
## 2133                    NA                     3622304N
## 2134                    NA                     0601000H
## 2135                   990                     5501001H
## 2136                  1139                     5957001H
## 2137                  4419                     2908201R
## 2138                  1207                     7000227R
## 2139                    NA                     3121001H
## 2140                   379                     2238700C
## 2141                    NA                     7002802R
## 2142                    NA                     0151301N
## 2143                  6610                     7001108R
## 2144                   746                     3824000H
## 2145                  1458                     7002054H
## 2146                   245                     5151001H
## 2147                   216                     1401010H
## 2148                    NA                     4921302N
## 2149                  3414                     7002176R
## 2150                    NA                     6027000H
## 2151                    NA                      0301601
## 2152                  2532                     3529200R
## 2153                    NA                     7001150R
## 2154                    NA                     1451306N
## 2155                    66                     0401001H
## 2156                   330                     1701000H
## 2157                   181                     1302001H
## 2158                    NA                     7001318N
## 2159                    43                     0301001H
## 2160                   598                     3202002H
## 2161                  1040                     5901200R
## 2162                  1129                     5932000H
## 2163                   583                     3121001H
## 2164                    NA                     3950202R
## 2165                    NA                     7001274R
## 2166                    NA                     7001808N
## 2167                    NA                     5157314N
## 2168                    NA                      5324601
## 2169                    NA                     1701200R
## 2170                    NA                     5153307N
## 2171                   756                     4102002H
## 2172                    NA                     7002136R
## 2173                  1307                     7000236R
## 2174                  6387                     0501202R
## 2175                  1305                     7001020H
## 2176                   330                     1701000H
## 2177                   739                     3801000H
## 2178                   541                     2951001H
## 2179                  1169                     7000006H
## 2180                   413                     2701005H
## 2181                    NA                     5002001H
## 2182                   845                     7001254R
## 2183                    NA                     7003902L
## 2184                  3722                     7001259R
## 2185                    NA                     3239300N
## 2186                  1305                     7001020H
## 2187                  1416                     7002119R
## 2188                    11                     0101205R
## 2189                    43                     0301001H
## 2190                    NA                     2701358N
## 2191                    NA                     2753301N
## 2192                    NA                     3563200R
## 2193                  1463                     7002053H
## 2194                   409                     2701001H
## 2195                   413                     2701005H
## 2196                    NA                     3557302N
## 2197                    NA                     1320200R
## 2198                  3541                     2201202R
## 2199                    NA                     7003010H
## 2200                    NA                     2129700C
## 2201                  4408                     7002136R
## 2202                    NA                     7001140R
## 2203                   393                     2527000H
## 2204                  1326                     5660200R
## 2205                  1294                     7001009H
## 2206                   990                     5501001H
## 2207                  6067                     7003246R
## 2208                  3671                     7003234R
## 2209                  1439                     7002002H
## 2210                   245                     5151001H
## 2211                   401                     2625700C
## 2212                   471                     2754001H
## 2213                    NA                      5556600
## 2214                    NA                     0901501F
## 2215                  6661                     7000272R
## 2216                  4086                     0602201R
## 2217                  6683                     5861200R
## 2218                   599                     3202003H
## 2219                    11                     0101205R
## 2220                   471                     2754001H
## 2221                    NA                     0226302N
## 2222                  2540                     7001256R
## 2223                    NA                     1401201R
## 2224                    NA                     5556302N
## 2225                    NA                     1021301N
## 2226                    NA                     7001144R
## 2227                    NA                     1623001H
## 2228                    NA                     7000398N
## 2229                  6016                     7002150R
## 2230                    NA                     7002105R
## 2231                  1098                     5907002H
## 2232                    NA                     5957001H
## 2233                    NA                     1302500F
## 2234                  1084                     5905200R
## 2235                    NA                     7002809R
## 2236                   527                     2950001H
## 2237                  4533                     7002349N
## 2238                    43                     0301001H
## 2239                     5                     0101004H
## 2240                    NA                     7003264R
## 2241                    NA                     2238304N
## 2242                    NA                     3535001N
## 2243                  6129                     7000255R
## 2244                  1005                     5601000H
## 2245                    NA                     1101202R
## 2246                    NA                      5902600
## 2247                    NA                     4102200R
## 2248                   216                     1401010H
## 2249                    NA                     1801309N
## 2250                    NA                     7003398N
## 2251                    NA                     1301302N
## 2252                    NA                     7000360N
## 2253                  6522                     2950210R
## 2254                   699                     3523000H
## 2255                  1320                     7001037H
## 2256                  1098                     5907002H
## 2257                    NA                     7001263R
## 2258                  1740                     7004003H
## 2259                  1463                     7002053H
## 2260                  6447                     7002233R
## 2261                    NA                     7003268R
## 2262                   746                     3824000H
## 2263                   409                     2701001H
## 2264                   207                     1401014H
## 2265                  1447                     7002012H
## 2266                    NA                     1421202R
## 2267                    NA                     2913302N
## 2268                   413                     2701005H
## 2269                  1305                     7001020H
## 2270                  1169                     7000006H
## 2271                    NA                     3552200R
## 2272                  7857                     5924200R
## 2273                    NA                     7003502F
## 2274                   990                     5501001H
## 2275                    NA                     1302306N
## 2276                    NA                     0301204R
## 2277                    NA                     7002347N
## 2278                  1637                     7003010H
## 2279                    NA                     7002913L
## 2280                  1307                     7000236R
## 2281                  3414                     7002176R
## 2282                   401                     2625700C
## 2283                   740                     3801000N
## 2284                    NA                     7000290R
## 2285                    NA                     3202901L
## 2286                  2532                     3529200R
## 2287                    NA                     0153206R
## 2288                  1458                     7002054H
## 2289                  1098                     5907002H
## 2290                    NA                     7002810R
## 2291                    NA                     0901303N
## 2292                   914                     5154212R
## 2293                  7511                     7002160R
## 2294                  1463                     7002053H
## 2295                    66                     0401001H
## 2296                  6295                     7003259R
## 2297                    NA                     1401001N
## 2298                    NA                     7001805N
## 2299                   574                     3102000H
## 2300                    NA                     7004211R
## 2301                  1040                     5901200R
## 2302                    NA                     3561302N
## 2303                  6911                     7002184R
## 2304                  3722                     7001259R
## 2305                    NA                     2951202R
## 2306                    NA                     5151210R
## 2307                    NA                     7002911L
## 2308                    NA                     7000275R
## 2309                   218                     1401013H
## 2310                    NA                     1421201R
## 2311                  3770                     1401219R
## 2312                   218                     1401013H
## 2313                   218                     1401013H
## 2314                  1529                     7002243R
## 2315                  1630                     7003004H
## 2316                    NA                     2750307N
## 2317                   589                     3201002H
## 2318                   756                     4102002H
## 2319                  1005                     5601000H
## 2320                    NA                     3429200R
## 2321                    NA                     4601305N
## 2322                    NA                     0901001H
## 2323                    NA                     5902317N
## 2324                    NA                     0101203R
## 2325                  1288                     7001003H
## 2326                    11                     0101205R
## 2327                  3414                     7002176R
## 2328                    NA                     2761302N
## 2329                   746                     3824000H
## 2330                    NA                     7002193R
## 2331                  9375                     7002137R
## 2332                  1307                     7000236R
## 2333                    NA                     2963202R
## 2334                    NA                     7002119R
## 2335                    NA                     3201311N
## 2336                  4548                     3301213R
## 2337                    NA                     5157311N
## 2338                  1630                     7003004H
## 2339                    NA                      1521600
## 2340                    NA                     0401001H
## 2341                    NA                     7000313N
## 2342                    NA                     7003352N
## 2343                    NA                     4423701C
## 2344                   694                     3522000H
## 2345                   739                     3801000H
## 2346                   411                     2701003H
## 2347                   704                     3529000H
## 2348                    NA                     1226300N
## 2349                    NA                     6120000N
## 2350                    NA                     3101200R
## 2351                  1740                     7004003H
## 2352                  1307                     7000236R
## 2353                  1630                     7003004H
## 2354                   727                     3702000H
## 2355                   818                     4501000H
## 2356                   752                     3950000H
## 2357                   752                     3950000H
## 2358                  2532                     3529200R
## 2359                    NA                     2701202R
## 2360                  1306                     7001021H
## 2361                    NA                     1401233R
## 2362                    NA                     5931302N
## 2363                   815                     4429000H
## 2364                   870                     5002001H
## 2365                   411                     2701003H
## 2366                    NA                     7001122R
## 2367                  4419                     2908201R
## 2368                  4520                     7000245R
## 2369                    NA                     2424500F
## 2370                  1740                     7004003H
## 2371                   971                     5263000H
## 2372                   484                     2801001H
## 2373                    NA                     3950302N
## 2374                    NA                      7004600
## 2375                  4789                     7001265R
## 2376                   678                     3429000H
## 2377                   411                     2701003H
## 2378                   411                     2701003H
## 2379                   245                     5151001H
## 2380                   635                     3301007H
## 2381                    NA                     5026301N
## 2382                    42                     0303001H
## 2383                    NA                     3702313N
## 2384                    NA                     7001296R
## 2385                  6447                     7002233R
## 2386                  6067                     7003246R
## 2387                    NA                     5153306N
## 2388                    NA                     2701237R
## 2389                   746                     3824000H
## 2390                    NA                     3301501F
## 2391                  2540                     7001256R
## 2392                  1543                     7002273R
## 2393                  1294                     7001009H
## 2394                    NA                     7002031H
## 2395                  1463                     7002053H
## 2396                   599                     3202003H
## 2397                   589                     3201002H
## 2398                   583                     3121001H
## 2399                    NA                     3301207R
## 2400                    NA                     7003277R
## 2401                    NA                     7003403N
## 2402                  2532                     3529200R
## 2403                  7111                     7003247R
## 2404                   207                     1401014H
## 2405                    NA                     5820000N
## 2406                  3541                     2201202R
## 2407                  1084                     5905200R
## 2408                    NA                     5501200R
## 2409                  1169                     7000006H
## 2410                  1040                     5901200R
## 2411                   409                     2701001H
## 2412                    NA                     7003303N
## 2413                    NA                     1302201R
## 2414                    NA                     5966301N
## 2415                    NA                     2701242R
## 2416                  4494                     2623300N
## 2417                    NA                     3202002H
## 2418                  1169                     7000006H
## 2419                    NA                     7000263R
## 2420                  5901                     3202206R
## 2421                  1463                     7002053H
## 2422                   415                     2701231R
## 2423                     5                     0101004H
## 2424                   409                     2701001H
## 2425                   128                     0824000H
## 2426                  3722                     7001259R
## 2427                    NA                     5921302N
## 2428                    NA                     1422303N
## 2429                    NA                     7003003H
## 2430                   834                     4601203R
## 2431                  1169                     7000006H
## 2432                    NA                     0153204R
## 2433                   223                     1401238R
## 2434                    NA                     2201501F
## 2435                    NA                     7001399N
## 2436                   245                     5151001H
## 2437                    NA                     7000002H
## 2438                  1040                     5901200R
## 2439                    NA                     1101310N
## 2440                   411                     2701003H
## 2441                  1320                     7001037H
## 2442                    NA                     5151201R
## 2443                    NA                     7003402N
## 2444                  6683                     5861200R
## 2445                    NA                     7001214R
## 2446                    NA                     5324200R
## 2447                    NA                     0701302N
## 2448                   727                     3702000H
## 2449                    NA                     2754302N
## 2450                   245                     5151001H
## 2451                    NA                     2825200R
## 2452                    NA                     7003248R
## 2453                   925                     5154001H
## 2454                   977                     5401001H
## 2455                   756                     4102002H
## 2456                  1318                     7001035H
## 2457                    NA                     1451201R
## 2458                     5                     0101004H
## 2459                    NA                      5123600
## 2460                  5901                     3202206R
## 2461                   599                     3202003H
## 2462                  7238                     5904201R
## 2463                    11                     0101205R
## 2464                  6661                     7000272R
## 2465                  1040                     5901200R
## 2466                    NA                     7000014H
## 2467                    NA                     7001372N
## 2468                   413                     2701005H
## 2469                  1040                     5901200R
## 2470                  1097                     5907001H
## 2471                  3230                     5157320N
## 2472                    NA                     7002222R
## 2473                  1678                     7003375N
## 2474                    NA                     0701202R
## 2475                   818                     4501000H
## 2476                  1084                     5905200R
## 2477                   815                     4429000H
## 2478                    NA                     7002345N
## 2479                    NA                     7002183R
## 2480                    NA                     5155204R
## 2481                  6385                     3301216R
## 2482                  1447                     7002012H
## 2483                  9708                     0364201R
## 2484                    NA                     5567302N
## 2485                    NA                     7000338N
## 2486                    NA                     1527301N
## 2487                  1315                     7001033H
## 2488                    NA                     2601001N
## 2489                   739                     3801000H
## 2490                    NA                     0824304N
## 2491                   471                     2754001H
## 2492                  1306                     7001021H
## 2493                    NA                     1327000H
## 2494                    NA                     3202318N
## 2495                  1046                     5902002H
## 2496                  1740                     7004003H
## 2497                   636                     3301008H
## 2498                    NA                     4923200R
## 2499                  1158                     6120700C
## 2500                    NA                     3331301N
## 2501                   599                     3202003H
## 2502                  9422                     0601200R
## 2503                   925                     5154001H
## 2504                   330                     1701000H
## 2505                   409                     2701001H
## 2506                   116                     0701000H
## 2507                  7057                     7002154R
## 2508                    NA                     5401308N
## 2509                    NA                     3529200R
## 2510                    NA                     7001008H
## 2511                    NA                     5324201R
## 2512                  1307                     7000236R
## 2513                    NA                     5123900L
## 2514                   411                     2701003H
## 2515                  9042                     3301221R
## 2516                  1335                     7001214R
## 2517                  7279                     7001380N
## 2518                    NA                     0101222R
## 2519                  6678                     2701242R
## 2520                    NA                     5151001H
## 2521                  1463                     7002053H
## 2522                    NA                     5154327N
## 2523                    NA                     7001284R
## 2524                   181                     1302001H
## 2525                    NA                     3950000H
## 2526                   746                     3824000H
## 2527                   541                     2951001H
## 2528                    NA                     7001801R
## 2529                   158                     1101000H
## 2530                   815                     4429000H
## 2531                    NA                     5921301N
## 2532                  1339                     7002112R
## 2533                   471                     2754001H
## 2534                  1040                     5901200R
## 2535                  7885                     1401230R
## 2536                  3565                     2201201R
## 2537                    NA                     1401232R
## 2538                    NA                     3922200R
## 2539                    NA                     7002217R
## 2540                  4408                     7002136R
## 2541                  1630                     7003004H
## 2542                    NA                     7003415N
## 2543                   324                     1623001H
## 2544                  7065                     7004207R
## 2545                   739                     3801000H
## 2546                  3414                     7002176R
## 2547                    NA                     7000221R
## 2548                    NA                     2701345N
## 2549                   678                     3429000H
## 2550                    NA                     7001035H
## 2551                    NA                     0102001N
## 2552                  3414                     7002176R
## 2553                    NA                     5925901L
## 2554                    NA                     2950200R
## 2555                   635                     3301007H
## 2556                  3541                     2201202R
## 2557                    NA                     7003253R
## 2558                    NA                     2701234R
## 2559                    NA                     7002197R
## 2560                   111                     0632000H
## 2561                    NA                     7002352N
## 2562                   527                     2950001H
## 2563                    NA                     7002817R
## 2564                   598                     3202002H
## 2565                   829                     4601001H
## 2566                  6661                     7000272R
## 2567                    NA                      4102601
## 2568                  9470                     7001135R
## 2569                    NA                     7003279R
## 2570                    NA                     5501209R
## 2571                  6008                     7001274R
## 2572                   207                     1401014H
## 2573                    NA                     2601201R
## 2574                    NA                     5960304N
## 2575                    NA                     2701339N
## 2576                    NA                     5961303N
## 2577                    42                     0303001H
## 2578                    NA                     3801304N
## 2579                  1335                     7001214R
## 2580                    NA                     3102000H
## 2581                    NA                     7003269R
## 2582                  1447                     7002012H
## 2583                    NA                     1404000N
## 2584                   420                     2701211R
## 2585                    NA                     7002139R
## 2586                  3541                     2201202R
## 2587                   413                     2701005H
## 2588                    NA                     5902002H
## 2589                   756                     4102002H
## 2590                  1195                     7000212R
## 2591                  1169                     7000006H
## 2592                  4963                     1101201R
## 2593                    66                     0401001H
## 2594                  1169                     7000006H
## 2595                   599                     3202003H
## 2596                   397                     2601001H
## 2597                  1084                     5905200R
## 2598                  1738                     7004010H
## 2599                    NA                     2952308N
## 2600                  1097                     5907001H
## 2601                  1201                     7000221R
## 2602                   181                     1302001H
## 2603                  1046                     5902002H
## 2604                  6661                     7000272R
## 2605                   831                     4601004H
## 2606                    NA                     2701352N
## 2607                   756                     4102002H
## 2608                    NA                     0622501F
## 2609                   367                     2201000H
## 2610                  1139                     5957001H
## 2611                  6780                     1401232R
## 2612                    NA                     7001364N
## 2613                  1169                     7000006H
## 2614                   885                     5123000H
## 2615                    NA                     2909000H
## 2616                  4825                     6121203R
## 2617                    NA                     7003363N
## 2618                   245                     5151001H
## 2619                    NA                     0401501F
## 2620                    NA                     5155301N
## 2621                   330                     1701000H
## 2622                  1463                     7002053H
## 2623                   411                     2701003H
## 2624                    NA                     4501200R
## 2625                  1309                     7001046H
## 2626                    NA                     4402300N
## 2627                    NA                     2701363N
## 2628                    NA                     0901304N
## 2629                    NA                     7000376N
## 2630                  1629                     7003003H
## 2631                  3770                     1401219R
## 2632                   484                     2801001H
## 2633                  6067                     7003246R
## 2634                    NA                     1702300N
## 2635                    43                     0301001H
## 2636                  1205                     7000225R
## 2637                   413                     2701005H
## 2638                    42                     0303001H
## 2639                   671                     3402000H
## 2640                  4771                     4353202R
## 2641                   541                     2951001H
## 2642                    NA                     7000393N
## 2643                   977                     5401001H
## 2644                   413                     2701005H
## 2645                  6683                     5861200R
## 2646                    NA                     3620501F
## 2647                    NA                     2201205R
## 2648                  1463                     7002053H
## 2649                    NA                     5120302N
## 2650                  1543                     7002273R
## 2651                  1463                     7002053H
## 2652                  3414                     7002176R
## 2653                  1463                     7002053H
## 2654                   397                     2601001H
## 2655                   245                     5151001H
## 2656                    NA                     7001392N
## 2657                    NA                     0501202R
## 2658                   339                     1801000H
## 2659                    NA                     0824500F
## 2660                  2532                     3529200R
## 2661                    NA                     5154212R
## 2662                    NA                     7000391N
## 2663                    NA                     4601210R
## 2664                   413                     2701005H
## 2665                   541                     2951001H
## 2666                   330                     1701000H
## 2667                  6661                     7000272R
## 2668                    42                     0303001H
## 2669                    NA                     1320301N
## 2670                  6661                     7000272R
## 2671                  1307                     7000236R
## 2672                    NA                     3202200R
## 2673                   914                     5154212R
## 2674                   428                     2701221R
## 2675                   563                     2953000H
## 2676                    NA                     4353301N
## 2677                   428                     2701221R
## 2678                    42                     0303001H
## 2679                   411                     2701003H
## 2680                    NA                     0401201R
## 2681                    NA                     1701500F
## 2682                    NA                      3824601
## 2683                    NA                     5907319N
## 2684                    NA                     1624200R
## 2685                  1463                     7002053H
## 2686                    NA                     5501000H
## 2687                  1637                     7003010H
## 2688                  7520                     7001281R
## 2689                   207                     1401014H
## 2690                    NA                     7002801R
## 2691                    NA                     7002356N
## 2692                    NA                     7002185R
## 2693                   411                     2701003H
## 2694                  4520                     7000245R
## 2695                  6249                     7001296R
## 2696                    NA                     7000389N
## 2697                   746                     3824000H
## 2698                  6780                     1401232R
## 2699                   635                     3301007H
## 2700                   885                     5123000H
## 2701                    NA                     5725306N
## 2702                  1318                     7001035H
## 2703                   383                     2424700C
## 2704                    NA                     5951300N
## 2705                  1456                     7002024H
## 2706                    NA                      2908602
## 2707                     5                     0101004H
## 2708                    NA                     3523301N
## 2709                     1                     0101000H
## 2710                    NA                     2901000H
## 2711                    NA                     5154210R
## 2712                  1458                     7002054H
## 2713                  6447                     7002233R
## 2714                  6067                     7003246R
## 2715                  1326                     5660200R
## 2716                   746                     3824000H
## 2717                    NA                      5902606
## 2718                    NA                     7000311N
## 2719                    NA                     7002199R
## 2720                  3406                     2701206R
## 2721                    NA                     5151322N
## 2722                   756                     4102002H
## 2723                    NA                     1327301N
## 2724                  6067                     7003246R
## 2725                  1543                     7002273R
## 2726                    NA                     0675302N
## 2727                    NA                     7002020H
## 2728                   815                     4429000H
## 2729                  6661                     7000272R
## 2730                   181                     1302001H
## 2731                   563                     2953000H
## 2732                   490                     2901000H
## 2733                    NA                     6120200R
## 2734                    NA                     7002114R
## 2735                  6683                     5861200R
## 2736                  1205                     7000225R
## 2737                  1630                     7003004H
## 2738                    NA                     3321301N
## 2739                     1                     0101000H
## 2740                  1543                     7002273R
## 2741                    NA                     3301201R
## 2742                    NA                     1401013H
## 2743                   746                     3824000H
## 2744                  1738                     7004010H
## 2745                    NA                     7002153R
## 2746                   829                     4601001H
## 2747                    NA                     7002194R
## 2748                  1463                     7002053H
## 2749                  6911                     7002184R
## 2750                  1305                     7001020H
## 2751                  6780                     1401232R
## 2752                  1098                     5907002H
## 2753                  1046                     5902002H
## 2754                    NA                     7002026H
## 2755                    NA                     5820302N
## 2756                  1040                     5901200R
## 2757                    NA                      2912601
## 2758                   979                     5401200R
## 2759                    NA                     7000361N
## 2760                   599                     3202003H
## 2761                    NA                     7003380N
## 2762                    NA                     7003392N
## 2763                    NA                     1451902L
## 2764                    NA                     7003503F
## 2765                    NA                     2525301N
## 2766                    43                     0301001H
## 2767                   218                     1401013H
## 2768                  6094                     1401227R
## 2769                  4231                     3202200R
## 2770                  1727                     5903200R
## 2771                  4419                     2908201R
## 2772                  7676                     7002161R
## 2773                  1176                     7000014H
## 2774                    NA                     5151207R
## 2775                    NA                     3402501F
## 2776                    NA                     7002273R
## 2777                    NA                     7003393N
##                                                                           Operator.Name
## 1                                             Our Lady of Lourdes Memorial Hospital Inc
## 2                                              Charles T Sitrin Health Care Center, Inc
## 3                                                                            CPRNC, LLC
## 4                                                            East Side Nursing Home Inc
## 5                                                                  Wellsville Manor LLC
## 6                                                     Harris Hill Nursing Facility, LLC
## 7                                                                       Endo Group, LLC
## 8                                                 Western Region Health Corporation Inc
## 9                                                                 Good Shepherd Hospice
## 10                                                                NYU Langone Hospitals
## 11                                                 Endoscopy Center of Long Island, LLC
## 12                                                           Oneida Health Systems, Inc
## 13                                                                NYU Langone Hospitals
## 14                                            Our Lady of Lourdes Memorial Hospital Inc
## 15                                                      Baker Victory Healthcare Center
## 16                                                         State University of New York
## 17                                               Community Health Center of Buffalo Inc
## 18                                                                        FedCare, Inc.
## 19                                                                   LSL, Newburgh, LLC
## 20                                                            Adirondack Medical Center
## 21                                                                     Griffiss EC, LLC
## 22                                                           Olean General Hospital Inc
## 23                                                          University of Rochester Inc
## 24                                                          Plattsburgh Associates, LLC
## 25                                                                            PBGS, LLC
## 26                                                         Regency Dialysis Center, LLC
## 27                                                                     Parkmed NYC, LLC
## 28                                                                True North II DC, LLC
## 29                                                                 S.F. Nassau ASC, LLC
## 30                                                                     Colonie ASC, LLC
## 31                                                 Whitney M Young Jr Health Center Inc
## 32                                               St Patricks Home for the Aged & Infirm
## 33                                                      Prime Home Health Services, LLC
## 34                                                         Elcor Operating Company, LLC
## 35                                        New York City Health and Hospital Corporation
## 36                                                          Rome Memorial Hospital, Inc
## 37                                                    Mary Imogene Bassett Hospital Inc
## 38                                           Crystal Run Ambulatory Surgery Center, LLC
## 39                                                           Health Quest Systems, Inc.
## 40                                                         Smile New York Outreach, LLC
## 41                                        New York City Health and Hospital Corporation
## 42                                                       New York Dialysis Services Inc
## 43                                                          Knickerbocker Dialysis, Inc
## 44                                                                     City of New York
## 45                                              Planned Parenthood Hudson Peconic, Inc.
## 46                                             North Country Family Health Center, Inc.
## 47                                                       Nassau Health Care Corporation
## 48                                                    Samaritan Hospital of Troy NY Inc
## 49                             Comprehensive Health Care & Rehabilitative Services, LLC
## 50                                                                         HBL SNF, LLC
## 51                                                                NYU Langone Hospitals
## 52                                                            Montefiore Medical Center
## 53                                                          Knickerbocker Dialysis, Inc
## 54                                                                NYU Langone Hospitals
## 55                                                    Staten Island University Hospital
## 56                                                                     Liberty RC, Inc.
## 57                                                    Ontario Operations Associates LLC
## 58                                                     Morris Heights Health Center Inc
## 59                                                       New York Dialysis Services Inc
## 60                                                   Comprehensive at Williamsville LLC
## 61                                                                  Mosaic Health, Inc.
## 62                                                           Faxton-St Lukes Healthcare
## 63                                                 Phelps Memorial Hospital Association
## 64                                        New York City Health and Hospital Corporation
## 65                                               Good Samaritan Hospital Medical Center
## 66                                                             Eastern Niagara Hospital
## 67                                                        Clifton Springs Sanitarium Co
## 68                                                  North Shore University Hospital Inc
## 69                                               St Lukes Roosevelt Hospital Center Inc
## 70                                                           Columbia Memorial Hospital
## 71                                                           Health Quest Systems, Inc.
## 72                                                           Health Quest Systems, Inc.
## 73                                                                  Oswego Hospital Inc
## 74                                  Southern Tier Community Health Center Network, Inc.
## 75                                    Westchester Institute for Human Development, Inc.
## 76                                                    Staten Island University Hospital
## 77                                                          Knickerbocker Dialysis, Inc
## 78                                                     Elizabethtown Community Hospital
## 79                                                        Nassau Operating Company, LLC
## 80                                                          University of Rochester Inc
## 81                                                Century Medical & Dental Center, Inc.
## 82                                                    Institute for Family Health, Inc.
## 83                                                            Montefiore Medical Center
## 84                                                    Long Island Jewish Medical Center
## 85                                                          University of Rochester Inc
## 86                                                              New York GI Center, LLC
## 87                                                         Hudson River Healthcare, Inc
## 88                                               John T Mather of Port Jefferson NY Inc
## 89                                        New York City Health and Hospital Corporation
## 90                                                                  Lenox Hill Hospital
## 91                                                            Bellhaven Management, LLC
## 92                                                        Jewish Home of Central NY Inc
## 93                                                       Claxton-Hepburn Medical Center
## 94                                                   Friedwald Center For Dialysis, LLC
## 95                                                          Knickerbocker Dialysis, Inc
## 96                                                 Hudson Headwaters Health Network Inc
## 97                                                 Health Services of Northern New York
## 98                                                                   Dry Harbor HRF Inc
## 99                            Visiting Nurse Association of Utica and Oneida County Inc
## 100                                                                    His Branches Inc
## 101                                                            Central New York ASC LLC
## 102                                       New York City Health and Hospital Corporation
## 103                                              St Lukes Roosevelt Hospital Center Inc
## 104                                                              Visiting Services, LLC
## 105                                                       Hudson Valley Hospital Center
## 106                                                               St. Mary's Healthcare
## 107                                              John T Mather of Port Jefferson NY Inc
## 108                                                                  Avicenna ASC, Inc.
## 109                                  Ryan/Chelsea-Clinton Community Health Center, Inc.
## 110                                    The Dominican Sisters Family Health Services Inc
## 111                                                         Crouse Community Center Inc
## 112                                                               NYU Langone Hospitals
## 113                                                    Fifth Avenue Surgery Center, LLC
## 114                                Memorial Hospital for Cancer and Allied Diseases Inc
## 115                                                         Knickerbocker Dialysis, Inc
## 116                                                         St. Luke's Cornwall JV, LLC
## 117                                                      Rochester General Hospital Inc
## 118                                            Garnet Health Medical Center - Catskills
## 119                                                    Morris Heights Health Center Inc
## 120                                                        State University of New York
## 121                                       New York City Health and Hospital Corporation
## 122                                                  St Joseph's Hospital Health Center
## 123                                    Sunnyview Hospital and Rehabilitation Center Inc
## 124                                                             BronxCare Health System
## 125                                        Planned Parenthood of Greater New York, Inc.
## 126                                                     New York United Healthcare, Ltd
## 127                                                 Ira Davenport Memorial Hospital Inc
## 128                                    New England Laser & Cosmetic Surgery Center, LLC
## 129                                                         Knickerbocker Dialysis, Inc
## 130                                                   Lower Eastside Service Center Inc
## 131                                                            Elmhurst Care Center,Inc
## 132                                                   Long Island Jewish Medical Center
## 133                                                      Albany Medical Center Hospital
## 134                                          Westchester County Health Care Corporation
## 135                                                Hudson Headwaters Health Network Inc
## 136                                                                 Oswego Hospital Inc
## 137                                                The Floating Hospital (Incorporated)
## 138                                                 North Shore University Hospital Inc
## 139                                                   Wayne County Board of Supervisors
## 140                               Split Rock Rehabilitation and Health Care Center, LLC
## 141                                        Planned Parenthood of Greater New York, Inc.
## 142                                                  St Joseph's Hospital Health Center
## 143                                          St. Peter's Ambulatory Surgery Center, LLC
## 144                                                          Faxton-St Lukes Healthcare
## 145                                                   Livingston S and V Operations LLC
## 146                                                                QC-Medi New York Inc
## 147                                                   Mary Imogene Bassett Hospital Inc
## 148                                               County of Monroe Department of Health
## 149                                                      Rochester General Hospital Inc
## 150                                                          Faxton-St Lukes Healthcare
## 151                                                            Samaritan Medical Center
## 152                                                        Port Jefferson Operating LLC
## 153                                        St Camillus Residential Health Care Facility
## 154                                Memorial Hospital for Cancer and Allied Diseases Inc
## 155                                             Housing Works Health Services III, Inc.
## 156                                                       Cornerstone Family Healthcare
## 157                                                             JGB Rehabilitation Corp
## 158                                  Ambulatory Surgery Center of Greater New York, LLC
## 159                                             Be Well Primary Health Care Center, LLC
## 160                                                         Knickerbocker Dialysis, Inc
## 161                                                  St Joseph's Hospital Health Center
## 162                                                         University of Rochester Inc
## 163                                                                        CLR Troy LLC
## 164                                                        Community Healthcare Network
## 165                                                      United Memorial Medical Center
## 166                                                             JGB Rehabilitation Corp
## 167                                                          Crouse Health System, Inc.
## 168                                                Cayuga Medical Center at Ithaca, Inc
## 169                                                            St Barnabas Hospital Inc
## 170                                                   Mary Imogene Bassett Hospital Inc
## 171                                                                 Project Renewal Inc
## 172                                                          Port Chester Operating LLC
## 173                                NY Society for the Relief of The Ruptured & Crippled
## 174                                       New York City Health and Hospital Corporation
## 175                                         Christian Health Services of Syracuse, Inc.
## 176                                                   Chinatown Action for Progress Inc
## 177                                      Little Sisters of the Assumption Family Health
## 178                                                            Glens Falls Hospital Inc
## 179                                                   Excellent Home Care Services, LLC
## 180                                                 North Shore University Hospital Inc
## 181                                 Visiting Nurse Service and Hospice of Suffolk, Inc.
## 182                                                                   State of New York
## 183                                                   Renaissance Healthcare Group, LLC
## 184                                                       Hiram Certified Home Care Co.
## 185                                           Rosa Coplon Jewish Home and Infirmary Inc
## 186                                                        The Brooklyn Hospital Center
## 187                                                         Boro Park Operating Co, LLC
## 188                                                 Ira Davenport Memorial Hospital Inc
## 189                                                      Rochester General Hospital Inc
## 190                                                                   AGA Operating LLC
## 191                                               South Nassau Communities Hospital Inc
## 192                                                    Morris Heights Health Center Inc
## 193                                 Northwest Buffalo Community Health Care Center, Inc
## 194                                            James A Eddy Memorial Geriatric Ctr, Inc
## 195                                                   Long Island Jewish Medical Center
## 196                                                Open Door Family Medical Center, Inc
## 197                                                                River Hospital, Inc.
## 198                                                            Samaritan Medical Center
## 199                                       New York City Health and Hospital Corporation
## 200                                                          Columbia Memorial Hospital
## 201                                                         Knickerbocker Dialysis, Inc
## 202                                        HealthAlliance Hospital Mary's Avenue Campus
## 203                                                  United Odd Fellow and Rebekah Home
## 204                                                           The Saratoga Hospital Inc
## 205                           The Memorial Hospital of William F & Gertrude F Jones Inc
## 206                                                     Community Memorial Hospital Inc
## 207                                                      Wyckoff Heights Medical Center
## 208                                                      Rochester General Hospital Inc
## 209                                                 Union Community Health Center, Inc.
## 210                                                        Hudson River Healthcare, Inc
## 211                                                 Union Community Health Center, Inc.
## 212                                                     Freedom Center of Westmere, LLC
## 213                                 Sisters of Charity Hospital of Buffalo New York Inc
## 214                                                            The Mount Sinai Hospital
## 215                                                            Glens Falls Hospital Inc
## 216                                                       Montefiore Health System, Inc
## 217                                                   Institute for Family Health, Inc.
## 218                                                        State University of New York
## 219                                                          Care For The Homeless, Inc
## 220                                                                  Amsterdam REC, LLC
## 221                                                        Community Healthcare Network
## 222                                Memorial Hospital for Cancer and Allied Diseases Inc
## 223                                                   Long Island Jewish Medical Center
## 224                                              The New York and Presbyterian Hospital
## 225                                                            The Mount Sinai Hospital
## 226                            Planned Parenthood of Central and Western New York, Inc.
## 227                                                                USRC Cheektowaga Inc
## 228                                                               NYU Langone Hospitals
## 229                                                        State University of New York
## 230                                               The Frederick Ferris Thompson Hosital
## 231                                          William F Ryan Community Health Center Inc
## 232                                                              Vestal Healthcare, LLC
## 233                                                 North Shore University Hospital Inc
## 234                                       New York City Health and Hospital Corporation
## 235                           PALJR,LLC D/B/A East Neck Nursing & Rehabilitation Center
## 236                                                             Orchard Park Ccrc, Inc.
## 237                                                 Long Island Select Healthcare, Inc.
## 238                                                        Nathan Littauer Hospital Inc
## 239                                                                Dialysis Clinic, Inc
## 240                                                                Jamaica Hospital Inc
## 241                                                              St Peters Hospital Inc
## 242                               Tri-Borough Certified Health Systems of New York, LLC
## 243                                        Ahava Medical and Rehabilitation Center, LLC
## 244                         Silver Lake Specialized Rehabilitation and Care Center, LLC
## 245                                                      Claxton-Hepburn Medical Center
## 246                       Absolut Center for Nursing and Rehabilitation at Dunkirk, LLC
## 247                                                                 CLR Schenectady LLC
## 248                                                       Mercy Hospital of Buffalo Inc
## 249                                           Joseph P Addabbo Family Health Center Inc
## 250                                                   New York University Dental Center
## 251                                                               St. Mary's Healthcare
## 252                                       New York City Health and Hospital Corporation
## 253                                                   Kings Harbor Health Services, LLC
## 254                                                                 Woodland Pond, Inc.
## 255                                             Planned Parenthood Hudson Peconic, Inc.
## 256                                                        Comprehensive at Orleans LLC
## 257                               Tri-Borough Certified Health Systems of New York, LLC
## 258                                            Visiting Nurse Association of Albany Inc
## 259                                                        Saratoga Center for Care LLC
## 260                              Eastchester Rehabilitation and Health Care Center, LLC
## 261                                                       Cornerstone Family Healthcare
## 262                                        Planned Parenthood of Greater New York, Inc.
## 263                                                   Chinatown Action for Progress Inc
## 264                                                                Dialysis Clinic, Inc
## 265                                                   Samaritan Hospital of Troy NY Inc
## 266                                                               NYU Langone Hospitals
## 267                                                           Montefiore Medical Center
## 268                                Memorial Hospital for Cancer and Allied Diseases Inc
## 269                                                                SBNH Acquisition LLC
## 270                                                                Fingerlakes UCP, Inc
## 271                                                            Rockville Operating, LLC
## 272                                  Bethany Nursing Home & Health Related Facility Inc
## 273                                                      Morningside Acquisition I, LLC
## 274                                                 Strong Partners Health System, Inc.
## 275                                                              Cabrini of Westchester
## 276                                                           Montefiore Medical Center
## 277                                                     Guthrie Cortland Medical Center
## 278                                                                           OPOP, LLC
## 279                                                                 Massena Center, LLC
## 280                                                    Brooks-TLC Hospital System, Inc.
## 281                                                            The Mount Sinai Hospital
## 282                                                                           EHS, Inc.
## 283                                                           Montefiore Medical Center
## 284                                                                 Oswego Hospital Inc
## 285                                                   Mary Imogene Bassett Hospital Inc
## 286                                                                 Niagara Hospice Inc
## 287                                                        Syracuse Surgery Center, LLC
## 288                                                                    Jefferson County
## 289                                                   Samaritan Hospital of Troy NY Inc
## 290                                          William F Ryan Community Health Center Inc
## 291                                                      New York Dialysis Services Inc
## 292                                                      Northern Dutchess Hospital Inc
## 293                                 2600 Niagara Falls Boulevard Operating Company, LLC
## 294                                       New York City Health and Hospital Corporation
## 295                                                                Empire State DC, Inc
## 296                                      Beacon Christian Community Health Center, Inc.
## 297                                                     Oswego County Health Department
## 298                                                     Oswego County Opportunities Inc
## 299                                                              UPMC Chautauqua at WCA
## 300                                                 New York State Department of Health
## 301                                                       Cornerstone Family Healthcare
## 302                                                          Columbia Memorial Hospital
## 303                                                                  Glen Cove Hospital
## 304                                           Our Lady of Lourdes Memorial Hospital Inc
## 305                                                     Hospice and Palliative Care Inc
## 306                                             NewYork-Presbyterian/Brooklyn Methodist
## 307                                                Queens Dialysis at The Pavilion, LLC
## 308                                                        Townhouse Operating Co., LLC
## 309                                                           Montefiore Medical Center
## 310                                             HealthAlliance Hospital Broadway Campus
## 311                                                       Brooklyn Dialysis Center, LLC
## 312                                                              St Peters Hospital Inc
## 313                                                              Vestal Healthcare, LLC
## 314                                                               County of Cattaraugus
## 315                                              John T Mather of Port Jefferson NY Inc
## 316                                                          Care For The Homeless, Inc
## 317                                                 Upper Room Aids Ministry, Inc: ADHC
## 318                                                           The Saratoga Hospital Inc
## 319                                                Washington Operations Associates LLC
## 320                                                      New York Dialysis Services Inc
## 321                                                          Health Quest Systems, Inc.
## 322                                       Jennie B Richmond Chaffee Nursing Home Co Inc
## 323                                                            The Mount Sinai Hospital
## 324                                                          Arnot Ogden Medical Center
## 325                                                      Rochester General Hospital Inc
## 326                                           Suny at Buffalo School of Dental Medicine
## 327                                                               Ross Acquisition, LLC
## 328                                                           A Merryland Operating LLC
## 329                                                         University of Rochester Inc
## 330                                              Erie County Medical Center Corporation
## 331                                                               NYU Langone Hospitals
## 332                                       New York City Health and Hospital Corporation
## 333                                                        State University of New York
## 334                                               The Frederick Ferris Thompson Hosital
## 335                                           New Carlton Rehab and Nursing Center, LLC
## 336                                                   Samaritan Hospital of Troy NY Inc
## 337                                               ODA Primary Health Care Network, Inc.
## 338                                                               Mohawk Valley EC, LLC
## 339                                                             Park Ridge Hospital Inc
## 340                                                         Geneva General Hospital Inc
## 341                                            North Country Family Health Center, Inc.
## 342                                                             Public Health Solutions
## 343                                                              St Peters Hospital Inc
## 344                                                        Hudson River Healthcare, Inc
## 345                                                         Knickerbocker Dialysis, Inc
## 346                                                                Hospice Care Network
## 347                                                        State University of New York
## 348                                     St. Mary's Healthcare System for Children, Inc.
## 349                                                       Episcopal Health Services Inc
## 350                                  Ryan/Chelsea-Clinton Community Health Center, Inc.
## 351                                                       Bridge Regional Health System
## 352                                                           Maimonides Medical Center
## 353                                                    Morris Heights Health Center Inc
## 354                                                            Orleans Community Health
## 355                                                Hudson Headwaters Health Network Inc
## 356                                                        Hudson River Healthcare, Inc
## 357                                                              Massena Hospital, Inc.
## 358                                                    Morris Heights Health Center Inc
## 359                                                                  St. James Hospital
## 360                                                           Montefiore Medical Center
## 361                                           Our Lady of Lourdes Memorial Hospital Inc
## 362                               St. Lukes Home Residential Health Care Facility, Inc.
## 363                                                            The Mount Sinai Hospital
## 364                                                       Cornerstone Family Healthcare
## 365                                                                 Lenox Hill Hospital
## 366                                                      Park Manor Acquisition II, LLC
## 367                                                        Community Healthcare Network
## 368                                                      New York Dialysis Services Inc
## 369                                                    Brooks-TLC Hospital System, Inc.
## 370                                                             Premier Healthcare, Inc
## 371                                                           The Saratoga Hospital Inc
## 372                                                      Beth Israel Medical Center Inc
## 373                              CenterLight Healthcare Diagnostic and Treatment Center
## 374                                                 Hollis Park Manor Nursing Home, Inc
## 375                                                            Glens Falls Hospital Inc
## 376                                                          Valley Health Services Inc
## 377                                                Columbia University Health Care, Inc
## 378                                                                   CLR New Paltz LLC
## 379                                                             Park Ridge Hospital Inc
## 380                                                           Adirondack Medical Center
## 381                                                         University of Rochester Inc
## 382                                                   Samaritan Hospital of Troy NY Inc
## 383                                                    Morris Heights Health Center Inc
## 384                                                      Rockaways ASC Development, LLC
## 385                                                Columbia University Health Care, Inc
## 386                                              The New York and Presbyterian Hospital
## 387                                              Williamsbridge Manor Nursing Home, LLC
## 388                                                           The Saratoga Hospital Inc
## 389                                                               NYU Langone Hospitals
## 390                                                        Forest View Nursing Home Inc
## 391                                                      Nassau Health Care Corporation
## 392                                                    Genesee County Health Department
## 393                                                Hudson Headwaters Health Network Inc
## 394                                                   Samaritan Hospital of Troy NY Inc
## 395                                                           The Rogosin Institute Inc
## 396                                                      United Hospice of Rockland Inc
## 397                                Memorial Hospital for Cancer and Allied Diseases Inc
## 398                                    Sunnyview Hospital and Rehabilitation Center Inc
## 399                                              Bon Secours Charity Health System Inc.
## 400                                                                River Hospital, Inc.
## 401                                                    Incarnation Childrens Center Inc
## 402                                           Northern Westchester Facility Project LLC
## 403                                                 North Shore University Hospital Inc
## 404                                              Erie County Medical Center Corporation
## 405                                                         St Luke's Cornwall Hospital
## 406                                                  Highland Hospital of Rochester Inc
## 407                                  Park Gardens Rehabilitation and Nursing Center LLC
## 408                                       Family Health Network of Central New York Inc
## 409                                       Family Health Network of Central New York Inc
## 410                                        Planned Parenthood of Greater New York, Inc.
## 411                                                       Heritage One Day Surgery, LLC
## 412                                                Open Door Family Medical Center, Inc
## 413                            Planned Parenthood of Central and Western New York, Inc.
## 414                                                   SMC Manhattan Health Center, Inc.
## 415                                                                      Kaleida Health
## 416                                                               NYU Langone Hospitals
## 417                                                             Park Ridge Hospital Inc
## 418                                              The New York and Presbyterian Hospital
## 419                                                     Bethel Nursing Home Company Inc
## 420                                              Good Samaritan Hospital Medical Center
## 421                                               ODA Primary Health Care Network, Inc.
## 422                                    Sunnyview Hospital and Rehabilitation Center Inc
## 423                                               The Frederick Ferris Thompson Hosital
## 424                                 Sisters of Charity Hospital of Buffalo New York Inc
## 425                                      Beacon Christian Community Health Center, Inc.
## 426                                                                Dialysis Clinic, Inc
## 427                                                                KFG Operating 1, LLC
## 428                                                               NYU Langone Hospitals
## 429                                       Ditmas Park Rehabilitation & Care Center, LLC
## 430                                              The New York and Presbyterian Hospital
## 431                                              New York Congregational Nursing Center
## 432                                                      Rochester General Hospital Inc
## 433                         Woodcrest Rehabilitation & Residential Health Care Ctr, LLC
## 434                                                              Harriman Partners, LLC
## 435                                                      Good Samaritan Hosp of Suffern
## 436                                                          Cuba Memorial Hospital Inc
## 437                                             Oak Orchard Community Health Center Inc
## 438                                                                       L Woerner Inc
## 439                                               Niagara Falls Memorial Medical Center
## 440                                                               NYU Langone Hospitals
## 441                                        St Camillus Residential Health Care Facility
## 442                                                                            AGMA Inc
## 443                                                         Villa Frances at the Knolls
## 444                                                                Wheel Chair Home Inc
## 445                                       Brownsville Community Development Corporation
## 446                                                         Suffolk Primary Health, LLC
## 447                                                               NYU Langone Hospitals
## 448                                                         NewYork-Presbyterian/Queens
## 449                                                      Wyckoff Heights Medical Center
## 450                                                        State University of New York
## 451                                                          Maria Regina Residence Inc
## 452                                                               NYU Langone Hospitals
## 453                                                   Samaritan Hospital of Troy NY Inc
## 454                                 BronxCare Dr. Martin Luther King, Jr. Health Center
## 455                                                         University of Rochester Inc
## 456                                                          Island Eye Surgicenter LLC
## 457                                                         Knickerbocker Dialysis, Inc
## 458                                                           Montefiore Medical Center
## 459                                                              Grand South Point, LLC
## 460                                                White Plains Hospital Medical Center
## 461                                                            USRC South Flushing, LLC
## 462                                                      Anthony L Jordan Health Center
## 463                              CenterLight Healthcare Diagnostic and Treatment Center
## 464                                                          Our Lady of Mercy Life Ctr
## 465                                                          Bethany Operating Co., LLC
## 466                                                          Carthage Area Hospital Inc
## 467                                                                  Ellis Hospital Inc
## 468                                             Planned Parenthood Hudson Peconic, Inc.
## 469                                              John T Mather of Port Jefferson NY Inc
## 470                                              The New York and Presbyterian Hospital
## 471                                                United Health Services Hospitals Inc
## 472                                                                      Kaleida Health
## 473                                                    Damian Family Care Centers, Inc.
## 474                                                            Samaritan Medical Center
## 475                                                              Betances Health Center
## 476                                                   Long Island Jewish Medical Center
## 477                                                         Knickerbocker Dialysis, Inc
## 478                                                Clifton-Fine Health Care Corporation
## 479                                                           Alice Hyde Medical Center
## 480                                                      Anthony L Jordan Health Center
## 481                                                        Community Healthcare Network
## 482                                                      East Coast Rehabilitation, Inc
## 483                                    Susquehanna Nursing & Rehabilitation Center, LLC
## 484                                                        Garnet Health Medical Center
## 485                               Seton Health at Schuyler Ridge Residential Healthcare
## 486                                                      Rochester General Hospital Inc
## 487                                                              Wartburg Receiver, LLC
## 488                                                               NYU Langone Hospitals
## 489                                              The New York and Presbyterian Hospital
## 490                                                                QC-Medi New York Inc
## 491                                              John T Mather of Port Jefferson NY Inc
## 492                                                                Refuah Health Center
## 493                             Champlain Valley Physicians Hospital Medical Center Inc
## 494                           The Memorial Hospital of William F & Gertrude F Jones Inc
## 495                                                Center for Disability Services, Inc.
## 496                                    Greenwich Village Ambulatory Surgery Center, LLC
## 497                                                                   State of New York
## 498                                                   New Hyde Park Dialysis Center LLC
## 499                                                                   Riverdale SNF LLC
## 500                                                               Urban Health Plan Inc
## 501                                                          Montclair Care Center, Inc
## 502                                                      New York Dialysis Services Inc
## 503                                               ODA Primary Health Care Network, Inc.
## 504                                                           St Anns Home for the Aged
## 505                                      Weill Cornell Imaging at New York Presbyterian
## 506                                          Northern Oswego County Health Services Inc
## 507                                                           Montefiore Medical Center
## 508                                                               NYU Langone Hospitals
## 509                                                Northwoods Operations Associates LLC
## 510                                                              St Peters Hospital Inc
## 511                                                       St. Josephs Hospital, Yonkers
## 512                                                        Prospect Park Operating, LLC
## 513                                                           Maimonides Medical Center
## 514                                                                      Kaleida Health
## 515                                                    Endoscopy Center of Niagara, LLC
## 516                                                 New York Surgery Center Queens, LLC
## 517                                                               Urban Health Plan Inc
## 518                                                               Villa Mary Immaculate
## 519                                                   Institute for Family Health, Inc.
## 520                                                               Urban Health Plan Inc
## 521                                                   Staten Island University Hospital
## 522                                                          Gastroenterology Care, Inc
## 523                                                   Institute for Family Health, Inc.
## 524                                                   Hebrew Home for Aged at Riverdale
## 525                                                         University of Rochester Inc
## 526                                                         Parkview Operating Co., LLC
## 527                                               ODA Primary Health Care Network, Inc.
## 528                                                                  Ellis Hospital Inc
## 529                                                       Odyssey House of New York Inc
## 530                                                    Damian Family Care Centers, Inc.
## 531                                     Brookhaven Memorial Hospital Medical Center Inc
## 532                                       New York City Health and Hospital Corporation
## 533                                                          Oakwood Operating Co., LLC
## 534                                                              St Peters Hospital Inc
## 535                                                   Samaritan Hospital of Troy NY Inc
## 536                                                     Samaritan Keep Nursing Home Inc
## 537                                 Sisters of Charity Hospital of Buffalo New York Inc
## 538                                                            Glens Falls Hospital Inc
## 539                                                           The Saratoga Hospital Inc
## 540                                                        State University of New York
## 541                                                   Long Island Jewish Medical Center
## 542                                                Open Door Family Medical Center, Inc
## 543                                                              St Peters Hospital Inc
## 544                                                    Damian Family Care Centers, Inc.
## 545                                                        Nathan Littauer Hospital Inc
## 546                                                 North Gate Health Care Facility LLC
## 547                                                   Institute for Family Health, Inc.
## 548                                       New York City Health and Hospital Corporation
## 549                                                               Urban Health Plan Inc
## 550                                                                 Mosaic Health, Inc.
## 551                              CenterLight Healthcare Diagnostic and Treatment Center
## 552                                                         St Luke's Cornwall Hospital
## 553                                                     The New York Foundling Hospital
## 554                                                        Hudson River Healthcare, Inc
## 555                                                         Wingate at St. Francis, LLC
## 556                                                      New York Dialysis Services Inc
## 557                                                United Health Services Hospitals Inc
## 558                                      Northern Dutchess Res Health Care Facility,Inc
## 559                                                         NewYork-Presbyterian/Queens
## 560                                                         Bay Ridge Surgi-Center, LLC
## 561                                                                Jamaica Hospital Inc
## 562                                            Dutchess Ambulatory Surgical Center, LLC
## 563                                              Community Health Center of Buffalo Inc
## 564                                         Hospice Care In Westchester and Putnam, Inc
## 565                                                              UPMC Chautauqua at WCA
## 566                                                           Montefiore Medical Center
## 567                        Hospicare & Palliative Care Services of Tompkins County, Inc
## 568                             Northwell Health Stern Family Center for Rehabilitation
## 569                                NY Society for the Relief of The Ruptured & Crippled
## 570                                                        Hudson View Care Center, Inc
## 571                                                               YGC at Woodycrest LLC
## 572                                                       Liberty Endoscopy Center, LLC
## 573                                                               NYU Langone Hospitals
## 574                                                     Penn Yan Manor Nursing Home Inc
## 575                                                     New Glen Oaks Nursing Home, Inc
## 576                                    Aurelia Osborn Fox Memorial Hospital Society Inc
## 577                                        L'Refuah Medical & Rehabilitation Center,Inc
## 578                                                      Rochester General Hospital Inc
## 579                                                Hudson Headwaters Health Network Inc
## 580                                                        Community Healthcare Network
## 581                                Friedwald Center for Rehabilitation and Nursing, LLC
## 582                                       New York City Health and Hospital Corporation
## 583                                                    Aspire of Western New York, Inc.
## 584                            Planned Parenthood of Central and Western New York, Inc.
## 585                                                               NYU Langone Hospitals
## 586                                   Digestive Disease Center of Central New York, LLC
## 587                                                   Mary Imogene Bassett Hospital Inc
## 588                                                      New York Dialysis Services Inc
## 589                                                        Hudson River Healthcare, Inc
## 590                                                                           GRHS, LLC
## 591                                                 Strong Partners Health System, Inc.
## 592                                                        Gramercy Surgery Center, Inc
## 593                                                                    Liberty RC, Inc.
## 594                                                               NYU Langone Hospitals
## 595                                                   Staten Island University Hospital
## 596                                                 Avantus Renal Therapy New York, LLC
## 597                                                                Dialysis Clinic, Inc
## 598                                                               Clifton Park ASC, LLC
## 599                                                               NYU Langone Hospitals
## 600                                                   Samaritan Hospital of Troy NY Inc
## 601                                                           The Saratoga Hospital Inc
## 602                                                   Mary Imogene Bassett Hospital Inc
## 603                                                                    Liberty RC, Inc.
## 604                                                              St Peters Hospital Inc
## 605                                                         Geneva Nursing Home II, Inc
## 606                                                Center for Disability Services, Inc.
## 607                                                        State University of New York
## 608                                                         University of Rochester Inc
## 609                                                Whitney M Young Jr Health Center Inc
## 610                                                            Samaritan Medical Center
## 611                                Advantage Care Diagnostic and Treatment Center, Inc.
## 612                                              Tri-County Family Medicine Program Inc
## 613                                                      Northern Dutchess Hospital Inc
## 614                                                             Nesconset Operating LLC
## 615                              Visiting Nurse Service of Ithaca & Tompkins County Inc
## 616                                                      Beth Israel Medical Center Inc
## 617                                                    Morris Heights Health Center Inc
## 618                               Split Rock Rehabilitation and Health Care Center, LLC
## 619                               Hudson Valley Regional Community Health Centers, Inc.
## 620                                                             Canton-Potsdam Hospital
## 621                                                    Warren Operations Associates LLC
## 622                                                             Schuyler Hospital, Inc.
## 623                                                           Montefiore Medical Center
## 624                                                                      Kaleida Health
## 625                                             Premier Home Health Care Services, Inc.
## 626                                                          Faxton-St Lukes Healthcare
## 627                                                                Corning Hospital Inc
## 628                                                           Chapin Acquisition I, LLC
## 629                                                 Corry Memorial Hospital Association
## 630                                                               County of Cattaraugus
## 631                                                        Hudson River Healthcare, Inc
## 632                                                 North Shore University Hospital Inc
## 633                                                   Samaritan Hospital of Troy NY Inc
## 634                                                              St Peters Hospital Inc
## 635                                                         Surgery of Tomorrow, L.L.C.
## 636                                                                   P R O M E S A Inc
## 637                          Hillside Manor Rehabilitation and Extended Care Center LLC
## 638                                                                     Endo Group, LLC
## 639                                                   Long Island Jewish Medical Center
## 640                                                                    Northern EC, LLC
## 641                                                Lower Manhatten Dialysis Corporation
## 642                                                      Rochester General Hospital Inc
## 643                                                      New York Dialysis Services Inc
## 644                                                        Hudson River Healthcare, Inc
## 645                                                        Hudson River Healthcare, Inc
## 646                                                                      Kaleida Health
## 647                                                           The Childrens Aid Society
## 648                                                             SV Operating Three, LLC
## 649                                                                     County of Lewis
## 650                                                                    County of Albany
## 651                                                    Aspire of Western New York, Inc.
## 652                                                Millard Fillmore Surgery Center, LLC
## 653                                    Sunnyview Hospital and Rehabilitation Center Inc
## 654                                         Catholic Health System of Long Island, Inc.
## 655                                                       Syracuse Home Association Inc
## 656                                                                Jamaica Hospital Inc
## 657                                         Tolstoy Foundation Nursing Home Company Inc
## 658                                       New York City Health and Hospital Corporation
## 659                                                      Rochester General Hospital Inc
## 660                                                                           SJLS, LLC
## 661                                                                         NYSARC, Inc
## 662                                                           Auburn Community Hospital
## 663                                                                 Hospice Buffalo Inc
## 664                                                        State University of New York
## 665                                                 Suffolk County Department of Health
## 666                                            Genesee Region Home Care Association Inc
## 667                                         Catholic Health System of Long Island, Inc.
## 668                       Dominican Sisters-The Servants of Relief for Incurable Cancer
## 669                                               The Frederick Ferris Thompson Hosital
## 670                                             Huntington Artificial Kidney Center Ltd
## 671                                                           Adirondack Medical Center
## 672                                                           Montefiore Medical Center
## 673                                                           Montefiore Medical Center
## 674                                                              Garden Care Center,Inc
## 675                                                    Union Sanitorium Association Inc
## 676                                                         Rome Memorial Hospital, Inc
## 677                                                                          EMUSC, LLC
## 678                                                                  County of Franklin
## 679                                                         University of Rochester Inc
## 680                                                             Pine Valley Center, LLC
## 681                                                     St Johns Riverside Hospital Inc
## 682                                           Personal Touch Home Aides of New York Inc
## 683                                                United Health Services Hospitals Inc
## 684                                        Planned Parenthood of Greater New York, Inc.
## 685                                                 Upper Room Aids Ministry, Inc: ADHC
## 686                                               South Nassau Communities Hospital Inc
## 687                                                                      Kaleida Health
## 688                                                               NYU Langone Hospitals
## 689                                          Northern Oswego County Health Services Inc
## 690                                                     Essex Operations Associates LLC
## 691                                                      New York Dialysis Services Inc
## 692                                                              Betances Health Center
## 693                                               St. John's Penfield Homes Corporation
## 694                                                   Mary Imogene Bassett Hospital Inc
## 695                                                 Island Rehabilitative Services Corp
## 696                                                               Fairport Baptist Home
## 697                                                         University of Rochester Inc
## 698                                                            Glens Falls Hospital Inc
## 699                                                             Canton-Potsdam Hospital
## 700                                                                MediDental Group LLC
## 701                                                                 DRNC Operating, LLC
## 702                                                           Wedgewood Care Center Inc
## 703                                                   Samaritan Hospital of Troy NY Inc
## 704                                                Center for Disability Services, Inc.
## 705                                        Planned Parenthood of Greater New York, Inc.
## 706                                                   Staten Island University Hospital
## 707                                             Community Medical and Dental Care, Inc.
## 708                                                              UPMC Chautauqua at WCA
## 709                                                Hudson Headwaters Health Network Inc
## 710                                                         Rome Memorial Hospital, Inc
## 711                                                               Urban Health Plan Inc
## 712                                                           The Saratoga Hospital Inc
## 713                                                  Upstate Family Health Center, Inc.
## 714                                                   Blythedale Childrens Hospital Inc
## 715                                                    Clinton County Health Department
## 716                                                 Bethel Springvale Nursing Home, Inc
## 717                                                        Garnet Health Medical Center
## 718                                                        State University of New York
## 719                                                    Morris Heights Health Center Inc
## 720                            Planned Parenthood of Central and Western New York, Inc.
## 721                                                      New York Dialysis Services Inc
## 722                                                   Lindsay House Surgery Center, LLC
## 723                                                      New York Dialysis Services Inc
## 724                                                             MLAP Acquisition I, LLC
## 725                                                           The Rogosin Institute Inc
## 726                                               The Frederick Ferris Thompson Hosital
## 727                                                    Morris Heights Health Center Inc
## 728                                                                            RJZM LLC
## 729                                                     Broome County Health Department
## 730                                                               NYU Langone Hospitals
## 731                                                        Hudson River Healthcare, Inc
## 732                                                  Highland Hospital of Rochester Inc
## 733                                            Mount St Marys Hospital of Niagara Falls
## 734                                                   Mary Imogene Bassett Hospital Inc
## 735                                               Arc Healthresources of Rockland, Inc.
## 736                                                                 CPR Associates, LLC
## 737                                       New York City Health and Hospital Corporation
## 738                                                               NYU Langone Hospitals
## 739                                                Syracuse Community Health Center Inc
## 740                                                               NYU Langone Hospitals
## 741                                                         Suffolk Center Receiver LLC
## 742                                                                The Gerry Homes, Inc
## 743                                    Sunnyview Hospital and Rehabilitation Center Inc
## 744                                                        State University of New York
## 745                                                   Specialists' One-Day Surgery, LLC
## 746                            Hilaire Farm Skilled Living & Rehabilitation Center, LLC
## 747                                                        Nathan Littauer Hospital Inc
## 748                                            Americare Certified Special Services Inc
## 749                                                Whitney M Young Jr Health Center Inc
## 750                                                               Westmoreland ASC, LLC
## 751                                                        Hudson River Healthcare, Inc
## 752                                                               NYU Langone Hospitals
## 753                                                  St Joseph's Hospital Health Center
## 754                                                   Samaritan Hospital of Troy NY Inc
## 755                                                       St. Josephs Hospital, Yonkers
## 756                                                               Little Falls Hospital
## 757                                                    Brookdale Family Care Center Inc
## 758                                                       Mercy Hospital of Buffalo Inc
## 759                             New Franklin Rehabilitation & Health Care Facility, LLC
## 760                                          Northern Oswego County Health Services Inc
## 761                                                   Long Island Jewish Medical Center
## 762                                                               Trillium Health, Inc.
## 763                                           Medalliance Medical Health Services, Inc.
## 764                                        Planned Parenthood of Greater New York, Inc.
## 765                                                              St Peters Hospital Inc
## 766                                       Herkimer County Public Health Nursing Service
## 767                                               Niagara Falls Memorial Medical Center
## 768                                                Main Street Radiology at Bayside LLC
## 769                                                       Sprain Brook Manor Rehab, LLC
## 770                    United Hebrew of New Rochelle Certified Home Health Agency, Inc.
## 771                                                       Mercy Hospital of Buffalo Inc
## 772                                                         HealthCare Choices NY, Inc.
## 773                                    Sunnyview Hospital and Rehabilitation Center Inc
## 774                                                                      Kaleida Health
## 775                                                       Cornerstone Family Healthcare
## 776                                                      Chenango Memorial Hospital Inc
## 777                                                   Staten Island University Hospital
## 778                                                Cayuga Medical Center at Ithaca, Inc
## 779                                            Bedford Medical Family Health Center Inc
## 780                                                           Montefiore Medical Center
## 781                                NY Society for the Relief of The Ruptured & Crippled
## 782                                                           Montefiore Medical Center
## 783                                               Betsy Ross Rehabilitation Center, Inc
## 784                                                      Wyckoff Heights Medical Center
## 785                                                           Montefiore Medical Center
## 786                                                      Bon Secours Community Hospital
## 787                                       New York City Health and Hospital Corporation
## 788                                                                           VRNC, LLC
## 789                                                         University of Rochester Inc
## 790                                                               NYU Langone Hospitals
## 791                                                       Episcopal Health Services Inc
## 792                                                The Floating Hospital (Incorporated)
## 793                                                       UCPA of the North Country Inc
## 794                                                           Montefiore Medical Center
## 795                                                   Long Island Jewish Medical Center
## 796                                                      Anthony L Jordan Health Center
## 797                                                          Columbia Memorial Hospital
## 798                                                   Abraham Operations Associates LLC
## 799                                                                  Ellis Hospital Inc
## 800                                                      North Fork Surgery Center, LLC
## 801                                                                         Cosden, LLC
## 802                                                             Canton-Potsdam Hospital
## 803                                                           Montefiore Medical Center
## 804                                                            VJJ Holding Company, LLC
## 805                                                        Franziska Racker Centers Inc
## 806                                                          Promenade Nursing Home Inc
## 807                                                     Heritage Health and Housing Inc
## 808                                                         University of Rochester Inc
## 809                                                        Hudson River Healthcare, Inc
## 810                                                         Knickerbocker Dialysis, Inc
## 811                                                         University of Rochester Inc
## 812                       The Center for Rehabilitation and Healthcare at Dutchess, LLC
## 813                                                    Hamilton Manor Nursing Home, LLC
## 814                                                            Forme Rehabilitation Inc
## 815                                                        Hudson River Healthcare, Inc
## 816                                                           The Rogosin Institute Inc
## 817                                                            Glens Falls Hospital Inc
## 818                                    Aurelia Osborn Fox Memorial Hospital Society Inc
## 819                                                       Mercy Hospital of Buffalo Inc
## 820                                                                  County of Sullivan
## 821                                                                Dialysis Clinic, Inc
## 822                                                   Long Island Jewish Medical Center
## 823                                              New York Congregational Nursing Center
## 824                                                   Long Island Jewish Medical Center
## 825                                            Loretto Health and Rehabilitation Center
## 826                                                           Your Choice at Home, Inc.
## 827                                                                 Ralex Services, Inc
## 828                   NY Hotel Trades Council&Hotel Association of NYC Health Ctr, Inc.
## 829                                                        Hudson River Healthcare, Inc
## 830                                               Bay Ridge Sunset Park Dialysis Center
## 831                                                        State University of New York
## 832                                                              St Peters Hospital Inc
## 833                                                           Montefiore Medical Center
## 834                                          East Harlem Council for Human Services Inc
## 835                                                                   P R O M E S A Inc
## 836                                      Fort Hudson Certified Home Health Agency, Inc.
## 837                                                   Long Island Jewish Medical Center
## 838                                                   Columbia County Health Department
## 839                                                                  Ellis Hospital Inc
## 840                                                         The Chautauqua Center, Inc.
## 841                                                                   State of New York
## 842                                                      Clinton Square Operations, LLC
## 843                                                   Mary Imogene Bassett Hospital Inc
## 844                        Visiting Nurse Service Association of Schenectady County Inc
## 845                                                      Rochester General Hospital Inc
## 846                                                Syracuse Community Health Center Inc
## 847                                            Health Quest Home Care, Inc. (Certified)
## 848                                                   Mary Imogene Bassett Hospital Inc
## 849                                                                    B & L Health Inc
## 850                              Vocational Instruction Project Community Services, Inc
## 851                                 Premier Ambulatory Services Development Company LLC
## 852                                                        Bridge View Nursing Home Inc
## 853                                                      Albany Medical Center Hospital
## 854                                                    Peconic Landing at Southold, Inc
## 855                           Visiting Nurse Service of Rochester and Monroe County Inc
## 856                                         Catholic Health System of Long Island, Inc.
## 857                                                      New York Dialysis Services Inc
## 858                                        Miriam Osborn Memorial Home Assosciation Inc
## 859                                                          Faxton-St Lukes Healthcare
## 860                                                       St. Josephs Hospital, Yonkers
## 861                                                              Betances Health Center
## 862                                                           Montefiore Medical Center
## 863                                          Brothers of Mercy Nursing Home Company Inc
## 864                                                         Knickerbocker Dialysis, Inc
## 865                                                         Knickerbocker Dialysis, Inc
## 866                                                                  Doctors United Inc
## 867                                                               Urban Health Plan Inc
## 868                                                Otsego SNF Operations Associates LLC
## 869                                       New York City Health and Hospital Corporation
## 870                                                          Oneida Health Systems, Inc
## 871                                                     Loretto Rest Realty Corporation
## 872                                          William F Ryan Community Health Center Inc
## 873                                                Syracuse Community Health Center Inc
## 874                                                                  Ellis Hospital Inc
## 875                                                                   County of Wyoming
## 876                                        Planned Parenthood of Greater New York, Inc.
## 877                                                               NYU Langone Hospitals
## 878                                The Wartburg Home of the Evangelical Lutheran Church
## 879                                                           The Saratoga Hospital Inc
## 880                                               Hudson Valley Ambulatory Surgery, LLC
## 881                                                                   County of Wyoming
## 882                                                            Glens Falls Hospital Inc
## 883                                                     Westfield Memorial Hospital Inc
## 884                                                           Montefiore Medical Center
## 885                                                                    USRC Pelham, LLC
## 886                                    Golden Gate Rehabilitation & Health Care Ctr LLC
## 887                                                           Interfaith Medical Center
## 888                              CenterLight Healthcare Diagnostic and Treatment Center
## 889                                                           The Saratoga Hospital Inc
## 890                                                St. Marks Brooklyn Associates L.L.C.
## 891                                                   Lower Eastside Service Center Inc
## 892                                                         University of Rochester Inc
## 893                                       New York City Health and Hospital Corporation
## 894                                 Sisters of Charity Hospital of Buffalo New York Inc
## 895                                                                    WSNCHS North Inc
## 896                                        Planned Parenthood of Greater New York, Inc.
## 897                                              Community Health Center of Buffalo Inc
## 898                                                       Sea Crest Acquisition II, LLC
## 899                                                   Staten Island University Hospital
## 900                                                                       West ASC, LLC
## 901                                              Erie County Medical Center Corporation
## 902                            Planned Parenthood of Central and Western New York, Inc.
## 903                                                                  Doctors United Inc
## 904                                                          Olean General Hospital Inc
## 905  Community Health Center of St. Mary's Healthcare and Nathan Littauer Hospital, Inc
## 906                                                 Menorah Campus Health Services, Inc
## 907                                                               NYU Langone Hospitals
## 908                                               ODA Primary Health Care Network, Inc.
## 909                                                 North Shore University Hospital Inc
## 910                                               Waterfront Operations Associates, LLC
## 911                                                          Health Quest Systems, Inc.
## 912                                       New York City Health and Hospital Corporation
## 913                                                                    City of New York
## 914                              CenterLight Healthcare Diagnostic and Treatment Center
## 915                                                    Damian Family Care Centers, Inc.
## 916                                                Hudson Headwaters Health Network Inc
## 917                                                               Urban Health Plan Inc
## 918                                       Brownsville Community Development Corporation
## 919                                                   Mary Imogene Bassett Hospital Inc
## 920                                                          Columbia Memorial Hospital
## 921                                                      Beth Israel Medical Center Inc
## 922                                            Mt Vernon Neighborhood Health Center Inc
## 923                                                     Guthrie Cortland Medical Center
## 924                                       New York City Health and Hospital Corporation
## 925                                            Safire Rehabilitation of Northtowns, LLC
## 926                                   Mosholu Parkway Nursing&Rehabilitation Center LLC
## 927                                                               NYU Langone Hospitals
## 928                                                                 Leroy Operating LLC
## 929                                                        Jericho Road Ministries Inc.
## 930                                                  Nicholas H Noyes Memorial Hospital
## 931                                                               NYU Langone Hospitals
## 932                                                       St. Josephs Hospital, Yonkers
## 933                                                   Mary Imogene Bassett Hospital Inc
## 934                                             Planned Parenthood Hudson Peconic, Inc.
## 935                                                   Samaritan Hospital of Troy NY Inc
## 936                                       New York City Health and Hospital Corporation
## 937                                  Upstate Orthopedics Ambulatory Surgery Center, LLC
## 938                                                                      All County LLC
## 939                                                              Carillon Dialysis, LLC
## 940                                                        Constellation Home Care, LLC
## 941                                           Our Lady of Lourdes Memorial Hospital Inc
## 942                                          Saratoga-Schenectady Endoscopy Center, LLC
## 943                                                Cayuga Medical Center at Ithaca, Inc
## 944                                    St Anns Nursing Home Company Inc, (The Heritage)
## 945                                                            The Mount Sinai Hospital
## 946                                               The Frederick Ferris Thompson Hosital
## 947                                          Westchester County Health Care Corporation
## 948                                                                     St Josephs Home
## 949                                                             JGB Rehabilitation Corp
## 950                                NY Society for the Relief of The Ruptured & Crippled
## 951                             Champlain Valley Physicians Hospital Medical Center Inc
## 952                                                            Eastern Niagara Hospital
## 953                                                      Albany Medical Center Hospital
## 954                                 BronxCare Dr. Martin Luther King, Jr. Health Center
## 955                                                     True North Dialysis Center, LLC
## 956                                                                Premium Health, Inc.
## 957                                         Catholic Health System of Long Island, Inc.
## 958                                                              St Peters Hospital Inc
## 959                                                             Manhattanville SBV, LLC
## 960                                                     Heritage Health and Housing Inc
## 961                                                                Refuah Health Center
## 962                                                             KPRH IV Operations, LLC
## 963                                                              Dialyze Direct NY, LLC
## 964                                                 Avantus Renal Therapy New York, LLC
## 965                              Planned Parenthood of the North Country, New York, Inc
## 966                                                  Syracuse Endoscopy Associates, LLC
## 967                                                White Plains Hospital Medical Center
## 968                                                          Optima Care Smithtown, LLC
## 969                                                          Oak Hill Operating Co. LLC
## 970                                                                      Kaleida Health
## 971                                                               Valley View Manor,LLC
## 972                                                      United Memorial Medical Center
## 973                                                          Olean General Hospital Inc
## 974                                                      New York Dialysis Services Inc
## 975                                                           Interfaith Medical Center
## 976                                                                   State of New York
## 977                                       Northern Lights Health Care Partnership, Inc.
## 978                                                                    County of Monroe
## 979                                          Westchester County Health Care Corporation
## 980                                                        The Brooklyn Hospital Center
## 981                                                 Northern Westchester Hosp Assoc Inc
## 982                                                               NYU Langone Hospitals
## 983                                                   Community Health Initiatives Inc.
## 984                                       Family Health Network of Central New York Inc
## 985                                 Long Island Hand and Orthopedic Surgery Center, LLC
## 986                                                      Bon Secours Community Hospital
## 987                                              The Massena Free Clinic for Adults Inc
## 988                                             GoldStep Ambulatory Surgery Center, LLC
## 989                                                United Health Services Hospitals Inc
## 990                                                     United Cerebral Palsy D & T Ctr
## 991                                                   Institute for Family Health, Inc.
## 992                                                Metro Community Health Centers, Inc.
## 993                                          William F Ryan Community Health Center Inc
## 994                                                           Adirondack Medical Center
## 995                                       Surgical Specialty Center of Westchester, LLC
## 996                                                Syracuse Community Health Center Inc
## 997                          The Winifred Masterson Burke Rehabilitation Foundation Inc
## 998                                                       New Dimensions In Living, Inc
## 999                                                               NYU Langone Hospitals
## 1000                                                              NYU Langone Hospitals
## 1001                                                North Shore University Hospital Inc
## 1002                                                                   Brooklyn SC, LLC
## 1003                                          Our Lady of Lourdes Memorial Hospital Inc
## 1004                         Absolut Center for Nursing and Rehabilitation at Eden, LLC
## 1005                                                    Woodside Manor Nursing Home Inc
## 1006                              Baptist Health Nursing and Rehabilitation Center, Inc
## 1007                                                                   County of Albany
## 1008                                       Planned Parenthood of Greater New York, Inc.
## 1009                                                              St. Mary's Healthcare
## 1010                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 1011                                                Chautauqua County Health Department
## 1012                                                           Orleans Community Health
## 1013                                                        Knickerbocker Dialysis, Inc
## 1014                                               Phelps Memorial Hospital Association
## 1015                                                     Rochester General Hospital Inc
## 1016                                                                     Kaleida Health
## 1017                               Sullivan County Board of Supervisors c/o County PHNS
## 1018                                                  Long Island Jewish Medical Center
## 1019                                                      Wesley Health Care Center Inc
## 1020                                                        The Chautauqua Center, Inc.
## 1021                                                             St Peters Hospital Inc
## 1022                                    Brookhaven Memorial Hospital Medical Center Inc
## 1023                                                          Maimonides Medical Center
## 1024                                                Island Digestive Health Center, LLC
## 1025                                         Wayne Ctr for Nursing & Rehabilitation LLC
## 1026                                                        Knickerbocker Dialysis, Inc
## 1027                             Rockville Skilled Nursing & Rehabilitation Center, LLC
## 1028                                                                  Cayuga Ridge, LLC
## 1029                          The Memorial Hospital of William F & Gertrude F Jones Inc
## 1030                                                               Fingerlakes UCP, Inc
## 1031                                        Bedford Stuyvesant Family Health Center Inc
## 1032                                                        Knickerbocker Dialysis, Inc
## 1033                                              South Nassau Communities Hospital Inc
## 1034                                 Park Gardens Rehabilitation and Nursing Center LLC
## 1035                                      Warren County Nursing Service & Public Health
## 1036                                                    Jewish Home Lifecare, Manhattan
## 1037                                                  Institute for Family Health, Inc.
## 1038                                                                 Ellis Hospital Inc
## 1039                                                              Urban Health Plan Inc
## 1040                                                    St Regis Mohawk Health Services
## 1041                                                              Dumont Operating, LLC
## 1042                                                     Albany Medical Center Hospital
## 1043                                      Firemans Association of the State of New York
## 1044                               The Wartburg Home of the Evangelical Lutheran Church
## 1045                                                            Chittenango Center, LLC
## 1046                               Fort Tryon Rehabilitation & Health Care Facility LLC
## 1047                                                     New York Dialysis Services Inc
## 1048                                                              NYU Langone Hospitals
## 1049                                                North Shore University Hospital Inc
## 1050                                               Columbia University Health Care, Inc
## 1051                                                                 County of Sullivan
## 1052                                                 Richmond University Medical Center
## 1053                                                       Jericho Road Ministries Inc.
## 1054                                                         Carthage Area Hospital Inc
## 1055                                                                   City of New York
## 1056                               NY Society for the Relief of The Ruptured & Crippled
## 1057                                                           Orleans Community Health
## 1058                                                              Best Healthcare, Inc.
## 1059                                                         Health Quest Systems, Inc.
## 1060                                                               QC-Medi New York Inc
## 1061                                              ODA Primary Health Care Network, Inc.
## 1062                                                                Oswego Hospital Inc
## 1063                                                              NYU Langone Hospitals
## 1064                                                  Nottingham Res Hlth Care Facility
## 1065                                                                   County of Monroe
## 1066                                                                      Orange County
## 1067                                                       Hamilton Park Multicare, LLC
## 1068                                            HealthAlliance Hospital Broadway Campus
## 1069                                                     Rochester General Hospital Inc
## 1070                                                  Samaritan Hospital of Troy NY Inc
## 1071                                             Good Samaritan Hospital Medical Center
## 1072                                             The New York and Presbyterian Hospital
## 1073                                               United Health Services Hospitals Inc
## 1074                                                  Mary Imogene Bassett Hospital Inc
## 1075                                                         Health Quest Systems, Inc.
## 1076                                                       State University of New York
## 1077                                                    Loretto Rest Realty Corporation
## 1078                                                                      L Woerner Inc
## 1079                                              Buffalo Hearing and Speech Center Inc
## 1080                                                         Columbia Memorial Hospital
## 1081                                                    Baker Victory Healthcare Center
## 1082                                                   Damian Family Care Centers, Inc.
## 1083                                                             St Peters Hospital Inc
## 1084                                                        Williamsville Suburban, LLC
## 1085                                              River Valley Operating Associates LLC
## 1086                                                  Mary Imogene Bassett Hospital Inc
## 1087                                                    St Johns Riverside Hospital Inc
## 1088                                                   Palm Gardens Dialysis Center LLC
## 1089                                              Catholic Managed Long Term Care, Inc.
## 1090                                           North Country Family Health Center, Inc.
## 1091                                                          Auburn Community Hospital
## 1092                                                            Park Ridge Hospital Inc
## 1093                                      New York City Health and Hospital Corporation
## 1094                                                         Valley Health Services Inc
## 1095                                           Flushing Hospital and Medical Center Inc
## 1096                                                  Institute for Family Health, Inc.
## 1097                                                     New York Dialysis Services Inc
## 1098                                                            JGB Rehabilitation Corp
## 1099                                          Joseph P Addabbo Family Health Center Inc
## 1100                                                  Mary Imogene Bassett Hospital Inc
## 1101                                                          Maimonides Medical Center
## 1102                                                                Lenox Hill Hospital
## 1103                               Memorial Hospital for Cancer and Allied Diseases Inc
## 1104                                         Presbyterian Home for Central New York Inc
## 1105                                     Weill Cornell Imaging at New York Presbyterian
## 1106                                                                 St. James Hospital
## 1107                                                  Mary Imogene Bassett Hospital Inc
## 1108                                                            Kennedy Pavilion RH LLC
## 1109                                                Strong Partners Health System, Inc.
## 1110                                                                       Medcare, LLC
## 1111                                                         Columbia Memorial Hospital
## 1112                                 Visiting Nurse Association of Central New York Inc
## 1113                                                    Bethel Nursing Home Company Inc
## 1114                             Planned Parenthood of the North Country, New York, Inc
## 1115                                                               Jamaica Hospital Inc
## 1116                                                                  County of Suffolk
## 1117                                                       Community Healthcare Network
## 1118                                      New York City Health and Hospital Corporation
## 1119                                                           St Christopher's Inn Inc
## 1120                                          HASC Diagnostic and Treatment Center, Inc
## 1121                                      New York City Health and Hospital Corporation
## 1122                                          Medalliance Medical Health Services, Inc.
## 1123                                                Capital Region Geriatric Center Inc
## 1124                                                   Fairview Nursing Care Center Inc
## 1125                                                           Glens Falls Hospital Inc
## 1126                                                       Brooklyn Birthing Center Inc
## 1127                                                 Highland Hospital of Rochester Inc
## 1128                                                       Hudson River Healthcare, Inc
## 1129                                                        NewYork-Presbyterian/Queens
## 1130                                                  Long Island Jewish Medical Center
## 1131                                                           The Mount Sinai Hospital
## 1132                                                                     Kaleida Health
## 1133                                                       Alpine Home Health Care, LLC
## 1134                                                     Beth Israel Medical Center Inc
## 1135                                                               Dialysis Clinic, Inc
## 1136                                                     New York Dialysis Services Inc
## 1137                                                     Rochester General Hospital Inc
## 1138                                                       Nathan Littauer Hospital Inc
## 1139                                                            Park Ridge Hospital Inc
## 1140                                                           The Mount Sinai Hospital
## 1141                                                     Watertown Dialysis Center, LLC
## 1142                                                  Long Island Jewish Medical Center
## 1143                                                           Eastern Niagara Hospital
## 1144                                   Grandell Rehabilitation and Nursing Center, Inc.
## 1145                                                  Staten Island University Hospital
## 1146                                                  Staten Island University Hospital
## 1147                                                                         VDRNC, LLC
## 1148                                                              St. Mary's Healthcare
## 1149                                           Mt Vernon Neighborhood Health Center Inc
## 1150                                          Our Lady of Lourdes Memorial Hospital Inc
## 1151                                               Syracuse Community Health Center Inc
## 1152                                  Westchester Institute for Human Development, Inc.
## 1153                                                                   County of Broome
## 1154                                                Brookhaven Health Care Facility LLC
## 1155                                                         John E Andrus Memorial Inc
## 1156                                                                   Kendal On Hudson
## 1157                                                          Alice Hyde Medical Center
## 1158                                                         Olean General Hospital Inc
## 1159                                                            North Park Nursing Home
## 1160                                                 St Joseph's Hospital Health Center
## 1161                                                            Cardiff Bay Center, LLC
## 1162                                                                  West Ledge Op LLC
## 1163                                      New York City Health and Hospital Corporation
## 1164                                                                   County of Otsego
## 1165                                                Suffolk County Department of Health
## 1166                            Champlain Valley Physicians Hospital Medical Center Inc
## 1167                                                       Cold Spring Acquisition, LLC
## 1168                                            Chase Memorial Nursing Home Company Inc
## 1169                                                     Nassau Health Care Corporation
## 1170                                                         Carthage Area Hospital Inc
## 1171                                                          Montefiore Medical Center
## 1172                                            Planned Parenthood Hudson Peconic, Inc.
## 1173                                                        University of Rochester Inc
## 1174                                                    Newark-Wayne Community Hospital
## 1175                                                        DSI Dutchess Dialysis, Inc.
## 1176                                                                  Livingston County
## 1177                                    Rensselaer County Department of Social Services
## 1178                                                   Kingsbrook Jewish Medical Center
## 1179                                                              NYU Langone Hospitals
## 1180                                               White Plains Hospital Medical Center
## 1181                                      New York City Health and Hospital Corporation
## 1182                                             Good Samaritan Hospital Medical Center
## 1183                                                     Rochester General Hospital Inc
## 1184                                                      Cornerstone Family Healthcare
## 1185                                                    United Helpers Nursing Home Inc
## 1186                                            Oak Orchard Community Health Center Inc
## 1187                                              The Frederick Ferris Thompson Hosital
## 1188                                                              Urban Health Plan Inc
## 1189                                                                      MMR Care Corp
## 1190                                                  Long Island Jewish Medical Center
## 1191                                                          Guilderland Operator, LLC
## 1192                                                                 Ellis Hospital Inc
## 1193                                       HealthAlliance Hospital Mary's Avenue Campus
## 1194                                                   Morris Heights Health Center Inc
## 1195                                                        Crouse Community Center Inc
## 1196                                    1818 Como Park Boulevard Operating Company, LLC
## 1197                                                     APICHA Community Health Center
## 1198                                       Planned Parenthood of Greater New York, Inc.
## 1199                                                       Community Healthcare Network
## 1200                                                     Claxton-Hepburn Medical Center
## 1201                                                           Rockaway Care Center,LLC
## 1202                            Champlain Valley Physicians Hospital Medical Center Inc
## 1203                                                                     Beverwyck, Inc
## 1204                                           Charles T Sitrin Health Care Center, Inc
## 1205                                                              NYU Langone Hospitals
## 1206                                                       Community Healthcare Network
## 1207                                                         Day Op of North Nassau Inc
## 1208                                               The Floating Hospital (Incorporated)
## 1209                                              Catholic Managed Long Term Care, Inc.
## 1210                                                          Ability Beyond Disability
## 1211                             Bridgewater Center for Rehabilitation and Nursing, LLC
## 1212                                                                  Settlement Health
## 1213                                                            JGB Rehabilitation Corp
## 1214                                                            BronxCare Health System
## 1215                                                              NYU Langone Hospitals
## 1216                                                           St Barnabas Hospital Inc
## 1217                                                  Institute for Family Health, Inc.
## 1218                                                                Utica Partners, LLC
## 1219                                                            Liberty Resources, Inc.
## 1220                                                          Hollis Operating Co., LLC
## 1221                                              The Brookdale Hospital Medical Center
## 1222                                                          Auburn Community Hospital
## 1223                                                                Lenox Hill Hospital
## 1224                                                              NYU Langone Hospitals
## 1225                                             The New York and Presbyterian Hospital
## 1226                                                                         CCRNC, LLC
## 1227                                                           The Mount Sinai Hospital
## 1228                                                              NYU Langone Hospitals
## 1229                                             Bushwick Center for Renal Dialysis LLC
## 1230                                      Brownsville Community Development Corporation
## 1231                                                     Rochester General Hospital Inc
## 1232                                                               Hornell Gardens, LLC
## 1233                                                              North Country EC, LLC
## 1234                                                               Dialysis Clinic, Inc
## 1235                                                       State University of New York
## 1236                                                                   His Branches Inc
## 1237                                                        NewYork-Presbyterian/Queens
## 1238                                                       State University of New York
## 1239                                                         Maplewood Nursing Home Inc
## 1240                                                  Lawrence Nursing Care Center, Inc
## 1241                          The Memorial Hospital of William F & Gertrude F Jones Inc
## 1242                                                      Optima Care White Plains, LLC
## 1243                                                       Hudson River Healthcare, Inc
## 1244                                                            Park Ridge Hospital Inc
## 1245                                                           Glens Falls Hospital Inc
## 1246                                                     Albany Medical Center Hospital
## 1247                                                                         CSRNC, LLC
## 1248                                                            Park Ridge Hospital Inc
## 1249                                                   Morris Heights Health Center Inc
## 1250                                                           Hampton NH Operating LLC
## 1251                                                        Knickerbocker Dialysis, Inc
## 1252                                                         Oneida Health Systems, Inc
## 1253                                                           Eastern Niagara Hospital
## 1254                                                      Cornerstone Family Healthcare
## 1255                                                         Arnot Ogden Medical Center
## 1256                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 1257                                                        The Chautauqua Center, Inc.
## 1258                                                       Mt Kisco Surgery Centers LLC
## 1259                                                              Calvary Hospital Inc.
## 1260                                                                     Kaleida Health
## 1261                                                  Staten Island University Hospital
## 1262                                                          Montefiore Medical Center
## 1263                                                  Long Island Jewish Medical Center
## 1264                                            HealthAlliance Hospital Broadway Campus
## 1265                                               United Health Services Hospitals Inc
## 1266                                         Northern Oswego County Health Services Inc
## 1267                                                                      L Woerner Inc
## 1268                                                        Geneva General Hospital Inc
## 1269                                         William F Ryan Community Health Center Inc
## 1270                                      Family Health Network of Central New York Inc
## 1271                                BronxCare Dr. Martin Luther King, Jr. Health Center
## 1272                                                              NYU Langone Hospitals
## 1273                                                            Canton-Potsdam Hospital
## 1274                                        Long Island Digestive Endoscopy Center, LLC
## 1275                                              Children's Rehabilitation Center, Inc
## 1276                                         William F Ryan Community Health Center Inc
## 1277                                                           St Barnabas Hospital Inc
## 1278                                                     United Memorial Medical Center
## 1279                                                             Putnam Hospital Center
## 1280                                                         Faxton-St Lukes Healthcare
## 1281                                               Open Door Family Medical Center, Inc
## 1282                                                     New York Dialysis Services Inc
## 1283                                                Margaretville Memorial Hospital Inc
## 1284                                                              NYU Langone Hospitals
## 1285                                                               Utica Crossings, LLC
## 1286                                Northwest Buffalo Community Health Care Center, Inc
## 1287                                              County of Monroe Department of Health
## 1288                                                         Faxton-St Lukes Healthcare
## 1289                                               Metro Community Health Centers, Inc.
## 1290                                                              Trillium Health, Inc.
## 1291                                                              NYU Langone Hospitals
## 1292                                                             Regeis Care Center,LLC
## 1293                                              The Frederick Ferris Thompson Hosital
## 1294                                                  New Alternatives for Children Inc
## 1295                             Queens Boulevard Extended Care Facility Management LLC
## 1296                                             The New York and Presbyterian Hospital
## 1297                                           Oneida Health Roswell Park Oncology, LLC
## 1298                                                       State University of New York
## 1299                                                New York State Department of Health
## 1300                                                               Dialysis Clinic, Inc
## 1301                                                    St Johns Riverside Hospital Inc
## 1302                                         United Cerebral Palsy of New York City Inc
## 1303                                                      Palm Gardens Care Center, LLC
## 1304                                                  Riverview Facility Operations LLC
## 1305                                                        Long Island Care Center Inc
## 1306                                                Metropolitan Jewish Home Care, Inc.
## 1307                                                         Columbia Memorial Hospital
## 1308                                                                     Kaleida Health
## 1309                                                           Samaritan Medical Center
## 1310                                                  Long Island Jewish Medical Center
## 1311                                                            Schuyler Hospital, Inc.
## 1312                                                        Knickerbocker Dialysis, Inc
## 1313                                    Family Planning of South Central New York, Inc.
## 1314                                                  Samaritan Hospital of Troy NY Inc
## 1315                                            Oak Orchard Community Health Center Inc
## 1316                                                                  S&L Birchwood,LLC
## 1317                                                 Lawrence Community Health Services
## 1318                                                                   Liberty RC, Inc.
## 1319                                                     New York Dialysis Services Inc
## 1320                                              South Nassau Communities Hospital Inc
## 1321                                                  Staten Island University Hospital
## 1322                                                          Maimonides Medical Center
## 1323                                             The New York and Presbyterian Hospital
## 1324                                                        University of Rochester Inc
## 1325                                                      UCPA of the North Country Inc
## 1326                                                          Montefiore Medical Center
## 1327                                               Hudson Headwaters Health Network Inc
## 1328                                              The Brookdale Hospital Medical Center
## 1329                                                                  Hospice-VNSw/Wphc
## 1330                                Sisters of Charity Hospital of Buffalo New York Inc
## 1331                                                                  State of New York
## 1332                                                                 HPLD Partners, LLC
## 1333                                                    Community Memorial Hospital Inc
## 1334                                                          Montefiore Medical Center
## 1335                                       Prasad Childrens Dental Health Program, Inc.
## 1336                                      New York City Health and Hospital Corporation
## 1337                                                    Newark-Wayne Community Hospital
## 1338                                           North Country Family Health Center, Inc.
## 1339                                                      Clifton Springs Sanitarium Co
## 1340                                                       Community Healthcare Network
## 1341                                                   Morris Heights Health Center Inc
## 1342                               NY Society for the Relief of The Ruptured & Crippled
## 1343                                               Phelps Memorial Hospital Association
## 1344                                                 Heritage House Nursing Center, Inc
## 1345                                                       Nathan Littauer Hospital Inc
## 1346                                             Bon Secours Charity Health System Inc.
## 1347                                                   Elizabethtown Community Hospital
## 1348                                                                    County of Tioga
## 1349                                                                   County of Oswego
## 1350                                                              150 Riverside OP, LLC
## 1351                                       Planned Parenthood of Greater New York, Inc.
## 1352                                                      Community Health Project, Inc
## 1353                                                      Upstate Gastroenterology, LLC
## 1354                                                                   Mark Fromer, LLC
## 1355                                                        Rome Memorial Hospital, Inc
## 1356                                                               Empire State DC, Inc
## 1357                                                       Optima Care Little Neck, LLC
## 1358                                                         Faxton-St Lukes Healthcare
## 1359                                                                Yonkers Gardens LLC
## 1360                                      New York City Health and Hospital Corporation
## 1361                                                    Oswego County Opportunities Inc
## 1362                                       L'Refuah Medical & Rehabilitation Center,Inc
## 1363                                                                          SJLS, LLC
## 1364                                       Planned Parenthood of Greater New York, Inc.
## 1365                                           Visiting Nurse Association of Albany Inc
## 1366                                     Weill Cornell Imaging at New York Presbyterian
## 1367                                              Woodmere Rehab & Health Care Ctr, Inc
## 1368                                                     Blossom Health Care Center Inc
## 1369                                                       Delaware Valley Hospital Inc
## 1370                                                  Long Island Jewish Medical Center
## 1371                                                         Care For The Homeless, Inc
## 1372                                                              Little Falls Hospital
## 1373                                                  Samaritan Hospital of Troy NY Inc
## 1374                                                  New York University Dental Center
## 1375                                                       Nathan Littauer Hospital Inc
## 1376                               Memorial Hospital for Cancer and Allied Diseases Inc
## 1377                                     37 North Chemung Street Operating Company, LLC
## 1378                                                                    County of Lewis
## 1379                                                       Community Healthcare Network
## 1380                                          Our Lady of Lourdes Memorial Hospital Inc
## 1381                                                                   City of New York
## 1382                                                     Beth Israel Medical Center Inc
## 1383                                                  Long Island Jewish Medical Center
## 1384                                       Ahava Medical and Rehabilitation Center, LLC
## 1385                                                      Cedar Manor Acquisition I LLC
## 1386                                                     Beth Israel Medical Center Inc
## 1387                                                North Shore University Hospital Inc
## 1388                                                     Nassau Health Care Corporation
## 1389                                                               Jamaica Hospital Inc
## 1390                                                          The Saratoga Hospital Inc
## 1391                                                  Samaritan Hospital of Troy NY Inc
## 1392                                                  Long Island Jewish Medical Center
## 1393                                                                    County of Lewis
## 1394                                         South Shore Ambulatory Surgery Center, LLC
## 1395                                         New York Center for Ambulatory Surgery LLC
## 1396                                                        Knickerbocker Dialysis, Inc
## 1397                                                         Verranzo Nursing Home, Inc
## 1398                                                 Highland Hospital of Rochester Inc
## 1399                                          Our Lady of Lourdes Memorial Hospital Inc
## 1400                                            Planned Parenthood Hudson Peconic, Inc.
## 1401                                     Finger Lakes Migrant Health Care Project, Inc.
## 1402                                                          The Saratoga Hospital Inc
## 1403                                                  Mary Imogene Bassett Hospital Inc
## 1404                                                          Montefiore Medical Center
## 1405                                                              NYU Langone Hospitals
## 1406                                   Sunnyview Hospital and Rehabilitation Center Inc
## 1407                                                  Staten Island University Hospital
## 1408                                                  Mary Imogene Bassett Hospital Inc
## 1409                                                   Morris Heights Health Center Inc
## 1410                                                  Samaritan Hospital of Troy NY Inc
## 1411                                         United Cerebral Palsy of New York City Inc
## 1412                                                         Columbia Memorial Hospital
## 1413                                              ODA Primary Health Care Network, Inc.
## 1414                                                          Montefiore Medical Center
## 1415                                                        Rome Memorial Hospital, Inc
## 1416                                               Hudson Headwaters Health Network Inc
## 1417                                                 United Odd Fellow and Rebekah Home
## 1418                                                     Beth Israel Medical Center Inc
## 1419                                                          Montefiore Medical Center
## 1420                                      Family Health Network of Central New York Inc
## 1421                                                  Samaritan Hospital of Troy NY Inc
## 1422                                                              NYU Langone Hospitals
## 1423                                                         Faxton-St Lukes Healthcare
## 1424                                     Finger Lakes Migrant Health Care Project, Inc.
## 1425                                                              NYU Langone Hospitals
## 1426                                       185 Old Military Road Operating Company, LLC
## 1427                       Soldiers and Sailors Memorial Hospital of Yates County, Inc.
## 1428                                         Manhattan Reproductive Surgery Center, LLC
## 1429                                                             Putnam Hospital Center
## 1430                                                       State University of New York
## 1431                                                   Hudson Valley Care Partners, LLC
## 1432                                                     Rochester General Hospital Inc
## 1433                                                        University of Rochester Inc
## 1434                                                          Montefiore Medical Center
## 1435                                                      Cornerstone Family Healthcare
## 1436                                                     New York Dialysis Services Inc
## 1437                                                        University of Rochester Inc
## 1438                                                          Montefiore Medical Center
## 1439                           Planned Parenthood of Central and Western New York, Inc.
## 1440                                                     Rochester General Hospital Inc
## 1441                                                           Central Suffolk Hospital
## 1442                                                        Samaritan Home Health, Inc.
## 1443                                                          The Childrens Aid Society
## 1444                                       Capital Region Ambulatory Surgery Center LLC
## 1445                                    Sheepshead Nursing & Rehabilitation Center, LLC
## 1446                                                      St. Josephs Hospital, Yonkers
## 1447                                                  Samaritan Hospital of Troy NY Inc
## 1448                                          Our Lady of Lourdes Memorial Hospital Inc
## 1449                                            Planned Parenthood Hudson Peconic, Inc.
## 1450                                               Whitney M Young Jr Health Center Inc
## 1451                                      New York City Health and Hospital Corporation
## 1452                                       Inwood Diagnostic and Treatment Center, Inc.
## 1453                                                          Montefiore Medical Center
## 1454                                                           Hendon Garden Center LLC
## 1455                                                                    County of Lewis
## 1456                                                     Rochester General Hospital Inc
## 1457                                                             St Peters Hospital Inc
## 1458                                                     New York Dialysis Services Inc
## 1459                                                           Eastern Niagara Hospital
## 1460                                                                    County of Lewis
## 1461                                                   Damian Family Care Centers, Inc.
## 1462                                               Phelps Memorial Hospital Association
## 1463                                                         Arnot Ogden Medical Center
## 1464                                       St Luke Residential Health Care Facility Inc
## 1465                                                                 L&A Operations LLC
## 1466                                                           MS Acquisitions III, LLC
## 1467                                Sisters of Charity Hospital of Buffalo New York Inc
## 1468                                                           Samaritan Medical Center
## 1469                                                    True North Dialysis Center, LLC
## 1470                                               Open Door Family Medical Center, Inc
## 1471                                       Ahava Medical and Rehabilitation Center, LLC
## 1472                                                  Samaritan Hospital of Troy NY Inc
## 1473                                          Lutheran Social Service of Upstate NY Inc
## 1474                                                              Seneca Hill Manor Inc
## 1475                                Northwest Buffalo Community Health Care Center, Inc
## 1476                                                  Fulton Operations Associates, LLC
## 1477                                         William F Ryan Community Health Center Inc
## 1478                                                              Urban Health Plan Inc
## 1479                                                      Hudson Valley Hospital Center
## 1480                                                Northern Westchester Hosp Assoc Inc
## 1481                                               Gastroenterology of Westchester, LLC
## 1482                                                          Bertrand Chaffee Hospital
## 1483                                         Eger Health Care and Rehabilitation Center
## 1484                                          Our Lady of Lourdes Memorial Hospital Inc
## 1485                                                            Enchanted Dialysis, LLC
## 1486                                       Treetops Rehabilitation and Care Center, LLC
## 1487                                                                   B & L Health Inc
## 1488                                                               Premium Health, Inc.
## 1489                                                     New East Side Nursing Home LLC
## 1490                                                                   Liberty RC, Inc.
## 1491                                                Northern Manor Geriatric Center Inc
## 1492                                                North Shore University Hospital Inc
## 1493                                            Oak Orchard Community Health Center Inc
## 1494                                              Niagara Falls Memorial Medical Center
## 1495                                                                SUNY at Stony Brook
## 1496                                                    Sunrise Manor Nursing Home, Inc
## 1497                                                       Hudson River Healthcare, Inc
## 1498                                                Suffolk County Department of Health
## 1499                                                                Oswego Hospital Inc
## 1500                                                        University of Rochester Inc
## 1501                                             Community Health Center of Buffalo Inc
## 1502                                                          Montefiore Medical Center
## 1503                                           Mt Vernon Neighborhood Health Center Inc
## 1504                                                          Iroquois Nursing Home Inc
## 1505                                                     Northern Dutchess Hospital Inc
## 1506                                                                URNC Operating, LLC
## 1507                                             Delaware County Public Health Services
## 1508                                                         Berkshire Nursing Home LLC
## 1509                                                           Glengariff Operating LLC
## 1510                                                               Dialysis Clinic, Inc
## 1511                                                            Park Ridge Hospital Inc
## 1512                                                   Morris Heights Health Center Inc
## 1513                                                          The Childrens Aid Society
## 1514                                                        University of Rochester Inc
## 1515                       Visiting Nurse Service Association of Schenectady County Inc
## 1516                                                          Montefiore Medical Center
## 1517                                                       Delaware Valley Hospital Inc
## 1518                                                              NYU Langone Hospitals
## 1519                                                      Brooklyn Plaza Medical Center
## 1520                                                        Knickerbocker Dialysis, Inc
## 1521                                                            BronxCare Health System
## 1522                                         Westchester County Health Care Corporation
## 1523                                                      Ridgewood Dialysis Center Inc
## 1524                                                           Jewish Home of Rochester
## 1525                                                        Knickerbocker Dialysis, Inc
## 1526                                                         Health Quest Systems, Inc.
## 1527                                                          Montefiore Medical Center
## 1528                                             Quantum Rehabilitation and Nursing LLC
## 1529                                                       Able Health Care Service Inc
## 1530                                                   Western New York BloodCare, Inc.
## 1531                                                              Urban Health Plan Inc
## 1532                                         Westchester County Health Care Corporation
## 1533                                                                 Blossom North, LLC
## 1534                                                          Montefiore Medical Center
## 1535                                                  Institute for Family Health, Inc.
## 1536                                                Northern Westchester Hosp Assoc Inc
## 1537                                                        Knickerbocker Dialysis, Inc
## 1538                                                     Rochester General Hospital Inc
## 1539                                                                   EN Receiver, LLC
## 1540                                                Strong Partners Health System, Inc.
## 1541                                         Long Island Ambulatory Surgery Center, LLC
## 1542                                                             St Peters Hospital Inc
## 1543                            Champlain Valley Physicians Hospital Medical Center Inc
## 1544                                                    True North Dialysis Center, LLC
## 1545                                                                     Mason ESC, LLC
## 1546                                                               GORNC Operating, LLC
## 1547                                             The New York and Presbyterian Hospital
## 1548                                                              St. Mary's Healthcare
## 1549                                                  Institute for Family Health, Inc.
## 1550                                                     New York Dialysis Services Inc
## 1551                                                           Central Suffolk Hospital
## 1552                                                              St. Mary's Healthcare
## 1553                                                   Elizabethtown Community Hospital
## 1554                                                                  Livingston County
## 1555                                                              NYU Langone Hospitals
## 1556                                                   Golden Hill Planning Corporation
## 1557                                                       E & A Medical Solutions, LLC
## 1558                                                     White Plains Nursing Home, Inc
## 1559                                                    St Johns Riverside Hospital Inc
## 1560                                                           The Mount Sinai Hospital
## 1561                                                         USRC West Cheektowaga, LLC
## 1562                                                 Lawrence Community Health Services
## 1563                                      New York City Health and Hospital Corporation
## 1564                                            Housing Works Health Services III, Inc.
## 1565                                              Western Region Health Corporation Inc
## 1566                                                       State University of New York
## 1567                                                           The Mount Sinai Hospital
## 1568                                                    Mills Pond Dialysis Center, LLC
## 1569                                           North Country Family Health Center, Inc.
## 1570                                                  Mary Imogene Bassett Hospital Inc
## 1571                                                 Highland Hospital of Rochester Inc
## 1572                                                     Kips Bay Endoscopy Center, LLC
## 1573                                                  Hebrew Home for Aged at Riverdale
## 1574                                                              NYU Langone Hospitals
## 1575                                               White Plains Hospital Medical Center
## 1576                                                                CRD Associates, LLC
## 1577                                             Good Samaritan Hospital Medical Center
## 1578                                       Planned Parenthood of Greater New York, Inc.
## 1579                                              Medex Diagnostic and Treatment Center
## 1580                                                              Urban Health Plan Inc
## 1581                                                     Rochester General Hospital Inc
## 1582                                               Hudson Headwaters Health Network Inc
## 1583                                                    Huntington Hospital Association
## 1584                                                   Jackson Heights Care Center, LLC
## 1585                                                            Park Ridge Hospital Inc
## 1586                                                       State University of New York
## 1587                                                        Geneva General Hospital Inc
## 1588                                                                 Ellis Hospital Inc
## 1589                                               United Health Services Hospitals Inc
## 1590                                              Niagara Falls Memorial Medical Center
## 1591                       Tender Loving Care Health Care Services of Erie Niagara, LLC
## 1592                                                      UCPA of the North Country Inc
## 1593                                                            Premier Healthcare, Inc
## 1594                                Southern Tier Community Health Center Network, Inc.
## 1595                                                             St Peters Hospital Inc
## 1596                                                              Urban Health Plan Inc
## 1597                                        Catholic Health System of Long Island, Inc.
## 1598                                           Safire Rehabilitation of Southtowns, LLC
## 1599                                              South Nassau Communities Hospital Inc
## 1600                                          Jewish Home Lifecare, Sarah Neuman Center
## 1601                                                          Montefiore Medical Center
## 1602                                                          The Saratoga Hospital Inc
## 1603                                                    Glengariff Dialysis Center, LLC
## 1604                                                   Morris Heights Health Center Inc
## 1605                                                             St Peters Hospital Inc
## 1606                                                        HealthCare Choices NY, Inc.
## 1607                                                  Long Island Jewish Medical Center
## 1608                                                   Ezras Choilim Health Center, Inc
## 1609                                              The Brookdale Hospital Medical Center
## 1610                                                       Hudson River Healthcare, Inc
## 1611                                                                  Narco Freedom Inc
## 1612                                                  New York University Dental Center
## 1613                                                        Terrace Acquisition II, LLC
## 1614                                                     New York Dialysis Services Inc
## 1615                                                Suffolk County Department of Health
## 1616                                                           The Mount Sinai Hospital
## 1617                                                          The Saratoga Hospital Inc
## 1618                                                                      L Woerner Inc
## 1619                                                   Fort Hudson Nursing Center, Inc.
## 1620                                             The New York and Presbyterian Hospital
## 1621                                             Schenectady Family Health Services Inc
## 1622                                              County of Monroe Department of Health
## 1623                                                Haym Solomon Home for the Aged, LLC
## 1624                                                      CMI Professional Services LLP
## 1625                                                         WNY Medical Management LLC
## 1626                                                Margaretville Memorial Hospital Inc
## 1627                                                                  State of New York
## 1628                                                          Montefiore Medical Center
## 1629                                                                  Tenenbaum,Michael
## 1630                                                     New York Dialysis Services Inc
## 1631                                                                     Kaleida Health
## 1632                                                              Urban Health Plan Inc
## 1633                                                   Morris Heights Health Center Inc
## 1634                                                         Hope Center Operations LLC
## 1635                                                                     All County LLC
## 1636                                                    Alliance Health Operations, LLC
## 1637                                    Family Planning of South Central New York, Inc.
## 1638                                                                   JOPAL BRONX, LLC
## 1639                                                          Alice Hyde Medical Center
## 1640                            Northwell Health Stern Family Center for Rehabilitation
## 1641                                                Upper Hudson Planned Parenthood Inc
## 1642                                                      The Birthing Center of NY Inc
## 1643                                                Strong Partners Health System, Inc.
## 1644                                                  Institute for Family Health, Inc.
## 1645                                               United Health Services Hospitals Inc
## 1646                                               Open Door Family Medical Center, Inc
## 1647                                                 Uptown Health Care Management, Inc
## 1648                                                   Morris Heights Health Center Inc
## 1649                                      New York City Health and Hospital Corporation
## 1650                                                             Goshen Operations, LLC
## 1651                                           START Treatment & Recovery Centers, Inc.
## 1652                                                                   City of New York
## 1653                                           Garnet Health Medical Center - Catskills
## 1654                                            Westchester County Department of Health
## 1655                                              South Nassau Communities Hospital Inc
## 1656                                          Personal Touch Home Aides of New York Inc
## 1657                                                         Faxton-St Lukes Healthcare
## 1658                                                       Hudson River Healthcare, Inc
## 1659                                                  Long Island Jewish Medical Center
## 1660                                                           Glens Falls Hospital Inc
## 1661                                     Weill Cornell Imaging at New York Presbyterian
## 1662                                                     Albany Medical Center Hospital
## 1663                            Champlain Valley Physicians Hospital Medical Center Inc
## 1664                                                       Community Healthcare Network
## 1665                                                                Oswego Hospital Inc
## 1666                                                        University of Rochester Inc
## 1667                                                             Betances Health Center
## 1668                                                   WNY Catholic Long Term Care, Inc
## 1669                                                     Good Shepherd at Endwell, Inc.
## 1670                                             The New York and Presbyterian Hospital
## 1671                                                            Nesconset Operating LLC
## 1672                                                             St Peters Hospital Inc
## 1673                                                        St Elizabeth Medical Center
## 1674                                                        Geneva General Hospital Inc
## 1675                                         Northern Oswego County Health Services Inc
## 1676                                                     New York Dialysis Services Inc
## 1677                                                                 Ellis Hospital Inc
## 1678                                                       Newtown Dialysis Center, Inc
## 1679                                                  Mary Imogene Bassett Hospital Inc
## 1680                                            Westchester County Department of Health
## 1681                                                  Mary Imogene Bassett Hospital Inc
## 1682                                             The New York and Presbyterian Hospital
## 1683                                                              St. Mary's Healthcare
## 1684                                        Bainbridge Nursing & Rehabilitation Ctr LLC
## 1685                                                        Knickerbocker Dialysis, Inc
## 1686                                                     Rochester General Hospital Inc
## 1687                                        Catholic Health System of Long Island, Inc.
## 1688                                                              NYU Langone Hospitals
## 1689                                                            Park Ridge Hospital Inc
## 1690                                           Mount St Marys Hospital of Niagara Falls
## 1691                                                    Broome County Health Department
## 1692                                                              Providence Care, Inc.
## 1693                              Tri-Borough Certified Health Systems of New York, LLC
## 1694                                         Northern Oswego County Health Services Inc
## 1695                                                        Knickerbocker Dialysis, Inc
## 1696                                                         Faxton-St Lukes Healthcare
## 1697                                                                      UMH JGJ Corp.
## 1698                                    Brookhaven Memorial Hospital Medical Center Inc
## 1699                                              Schoharie County Department of Health
## 1700                                           START Treatment & Recovery Centers, Inc.
## 1701                                                      Genesee Center Operating, LLC
## 1702                                       Planned Parenthood of Greater New York, Inc.
## 1703                                                                      FSNR SNF, LLC
## 1704                                                              Calvary Hospital Inc.
## 1705                                                            Canton-Potsdam Hospital
## 1706                                                              Urban Health Plan Inc
## 1707                                                      Community Health Project, Inc
## 1708                                           Caring Hospice Services of New York, LLC
## 1709                                          Pro Health Ambulatory Surgery Center, Inc
## 1710                                                      Palm Gardens Care Center, LLC
## 1711                                                           St Barnabas Hospital Inc
## 1712                                                  Samaritan Hospital of Troy NY Inc
## 1713                                                              Villa Mary Immaculate
## 1714                                                    City Wide Health Facility, Inc.
## 1715                                            New York Artificial Kidney Center, Inc.
## 1716                                                              NHRC Acquisition, LLC
## 1717                                                                Oswego Hospital Inc
## 1718                                                Island Rehabilitative Services Corp
## 1719                                                    West Nassau Dialysis Center Inc
## 1720                                      New York City Health and Hospital Corporation
## 1721                                                    True North Dialysis Center, LLC
## 1722                                                                Gouverneur Hospital
## 1723                                                           Yorkville Endoscopy LLC.
## 1724                                      New York City Health and Hospital Corporation
## 1725                               The Wartburg Home of the Evangelical Lutheran Church
## 1726                                      Family Health Network of Central New York Inc
## 1727                                                              Little Falls Hospital
## 1728                                                              NYU Langone Hospitals
## 1729                                               Cayuga Medical Center at Ithaca, Inc
## 1730                                                            St Francis Hospital Inc
## 1731                                                                          SJLS, LLC
## 1732                               NY Society for the Relief of The Ruptured & Crippled
## 1733                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 1734                                    Brookhaven Memorial Hospital Medical Center Inc
## 1735                                        People, Home Health Services-Certified, Inc
## 1736                                                 Nicholas H Noyes Memorial Hospital
## 1737                                               Warren County Health Services LTHHCP
## 1738                                                          Montefiore Medical Center
## 1739                              Split Rock Rehabilitation and Health Care Center, LLC
## 1740                                                         Oneida Health Systems, Inc
## 1741                                                   Green Manor Dialysis Center, LLC
## 1742                                          Joseph P Addabbo Family Health Center Inc
## 1743                                                     New York Dialysis Services Inc
## 1744                                               Cattaraugus County Health Department
## 1745                                                  Lower Eastside Service Center Inc
## 1746                                               Phelps Memorial Hospital Association
## 1747                                                       State University of New York
## 1748                                                         Carthage Area Hospital Inc
## 1749                                       L'Refuah Medical & Rehabilitation Center,Inc
## 1750                                             Schenectady Family Health Services Inc
## 1751                                                 Highland Hospital of Rochester Inc
## 1752                                                           Newburgh Operations, LLC
## 1753                                                       Community Healthcare Network
## 1754                                            HealthAlliance Hospital Broadway Campus
## 1755                                               Healthcare Partners of Saratoga, LTD
## 1756                                         Northern Oswego County Health Services Inc
## 1757                                                           Central Suffolk Hospital
## 1758                                                               Dialysis Clinic, Inc
## 1759                                                      Brooklyn Plaza Medical Center
## 1760                                                 Heritage House Nursing Center, Inc
## 1761                                                          Montefiore Medical Center
## 1762                                                 Brookdale Family Care Centers, Inc
## 1763                                                          Montefiore Medical Center
## 1764                                                Long Island Select Healthcare, Inc.
## 1765                                               Health Services of Northern New York
## 1766                                             The New York and Presbyterian Hospital
## 1767                                               White Plains Hospital Medical Center
## 1768                                                             Kenmore Mercy Hospital
## 1769                                                  Mary Imogene Bassett Hospital Inc
## 1770                                              South Nassau Communities Hospital Inc
## 1771                                                         Arnot Ogden Medical Center
## 1772                                                 United Odd Fellow and Rebekah Home
## 1773                                                                 St. James Hospital
## 1774                                                  Mary Imogene Bassett Hospital Inc
## 1775                                                         The New York Proton Center
## 1776                                               Chenango County Board of Supervisors
## 1777                                                        University of Rochester Inc
## 1778                                          4459 Bailey Avenue Operating Company, LLC
## 1779                                               Onondaga County Department of Health
## 1780                                                            Park Ridge Hospital Inc
## 1781                                                                          DHCH, LLC
## 1782                               Memorial Hospital for Cancer and Allied Diseases Inc
## 1783                                        Surgical Pain Center of the Adirondacks LLC
## 1784                                            Finger Lakes Visiting Nurse Service Inc
## 1785                                      New York City Health and Hospital Corporation
## 1786                                                        Poughkeepsie Crossings, LLC
## 1787                                                                Penfield Place, LLC
## 1788                                                     New York Dialysis Services Inc
## 1789                                            1 Bethesda Drive Operating Company, LLC
## 1790                                      New York City Health and Hospital Corporation
## 1791                                                  Samaritan Hospital of Troy NY Inc
## 1792                                              South Nassau Communities Hospital Inc
## 1793                                                  Staten Island University Hospital
## 1794                                                       State University of New York
## 1795                                                  Long Island Jewish Medical Center
## 1796                                                      East Hill Family Medical, Inc
## 1797                                                               Empire State DC, Inc
## 1798                                                              NYU Langone Hospitals
## 1799                                                               Health Alliance, Inc
## 1800                                                     Chenango Memorial Hospital Inc
## 1801                                                                  Richmond ASC, LLC
## 1802                                                          Northpointe Council, Inc.
## 1803                                BronxCare Dr. Martin Luther King, Jr. Health Center
## 1804                                                  Samaritan Hospital of Troy NY Inc
## 1805                                                      Clifton Springs Sanitarium Co
## 1806                                       Planned Parenthood of Greater New York, Inc.
## 1807                                                  Long Island Jewish Medical Center
## 1808                                                        University of Rochester Inc
## 1809                                                       State University of New York
## 1810                                                           St. James Operating, LLC
## 1811                                                              NYU Langone Hospitals
## 1812                                                    Jewish Home Lifecare, Manhattan
## 1813                                                          The Saratoga Hospital Inc
## 1814                                                                     Kaleida Health
## 1815                                                              NYU Langone Hospitals
## 1816                                              ODA Primary Health Care Network, Inc.
## 1817                                           Jewish Home Lifecare, Community Services
## 1818                                            Groton Community Health Care Center Inc
## 1819                                                        Knickerbocker Dialysis, Inc
## 1820                                                           Glens Falls Hospital Inc
## 1821                                                           Central Suffolk Hospital
## 1822                                                            Fieldston Operating LLC
## 1823                                                                 Doctors United Inc
## 1824                                                  Chinatown Action for Progress Inc
## 1825                                                     Claxton-Hepburn Medical Center
## 1826                                              The Frederick Ferris Thompson Hosital
## 1827                                                     New York Dialysis Services Inc
## 1828                                      Executive Woods Ambulatory Surgery Center LLC
## 1829                                                             St Peters Hospital Inc
## 1830                                                               Refuah Health Center
## 1831                                                                 St. James Hospital
## 1832                                                      UCPA of the North Country Inc
## 1833                                                     Beth Israel Medical Center Inc
## 1834                                                            BronxCare Health System
## 1835                                   Sunnyview Hospital and Rehabilitation Center Inc
## 1836                                                         Health Quest Systems, Inc.
## 1837                          The Memorial Hospital of William F & Gertrude F Jones Inc
## 1838                                                       State University of New York
## 1839                                               Hudson Headwaters Health Network Inc
## 1840                                                      Hudson Valley Hospital Center
## 1841 Community Health Center of St. Mary's Healthcare and Nathan Littauer Hospital, Inc
## 1842                                      New York City Health and Hospital Corporation
## 1843                                                             Southside Hospital Inc
## 1844                                              Century Medical & Dental Center, Inc.
## 1845                                 Bronx Center for Rehabilitation & Health Care, LLC
## 1846                            Champlain Valley Physicians Hospital Medical Center Inc
## 1847                                                              St. Mary's Healthcare
## 1848                                                Capital Region Geriatric Center Inc
## 1849                                               Syracuse Community Health Center Inc
## 1850                                                 St Joseph's Hospital Health Center
## 1851                                           Datahr Home Health Care, Inc.(Certified)
## 1852                                                                     Kaleida Health
## 1853                                                   HCS Certified Home Care NY, Inc.
## 1854                                            HealthAlliance Hospital Broadway Campus
## 1855                                                     New York Dialysis Services Inc
## 1856                                                        University of Rochester Inc
## 1857                                            HealthAlliance Hospital Broadway Campus
## 1858                                                   Damian Family Care Centers, Inc.
## 1859                                                          Montefiore Medical Center
## 1860                                                              La Casa De Salud, Inc
## 1861                                                       NY Eye and Ear Infirmary Inc
## 1862                                                   Morris Heights Health Center Inc
## 1863                                                              NYU Langone Hospitals
## 1864                                                        Knickerbocker Dialysis, Inc
## 1865                                               United Health Services Hospitals Inc
## 1866                                       Prasad Childrens Dental Health Program, Inc.
## 1867                                         United Cerebral Palsy of New York City Inc
## 1868                                                               Wheel Chair Home Inc
## 1869                                               Center for Hearing and Communication
## 1870                                  Harlem Center for Nursing and Rehabilitation, LLC
## 1871                                                       Hudson River Healthcare, Inc
## 1872                                                     Rochester General Hospital Inc
## 1873                                                  Samaritan Hospital of Troy NY Inc
## 1874                                                    Mid-Bronx Endoscopy Center, LLC
## 1875                                                 Mohawk Valley Heart Institute, Inc
## 1876                                                   Niagara Lutheran Development Inc
## 1877                                                    Oneida County Health Department
## 1878                                                                 CNH Operating, LLC
## 1879                                      New York City Health and Hospital Corporation
## 1880                                                                     Kaleida Health
## 1881                                Sisters of Charity Hospital of Buffalo New York Inc
## 1882                                                             St Peters Hospital Inc
## 1883                                                        University of Rochester Inc
## 1884                                                               Refuah Health Center
## 1885                                                                Gouverneur Hospital
## 1886                                                              NYU Langone Hospitals
## 1887                                                                   Jefferson County
## 1888                                                           North Shore Surgi-Center
## 1889                                                               Jamaica Hospital Inc
## 1890                              Excel at Woodbury for Rehabilitation and Nursing, LLC
## 1891                                               United Health Services Hospitals Inc
## 1892                                               United Health Services Hospitals Inc
## 1893                                                           Glens Falls Hospital Inc
## 1894                                                        Rome Memorial Hospital, Inc
## 1895                                                          Diamond Hill Operator LLC
## 1896                                                          The Saratoga Hospital Inc
## 1897                                                  Institute for Family Health, Inc.
## 1898                                            200 Bassett Road Operating Company, LLC
## 1899                                      New York City Health and Hospital Corporation
## 1900                                          Our Lady of Lourdes Memorial Hospital Inc
## 1901                                                 St Joseph's Hospital Health Center
## 1902                                                          The Childrens Aid Society
## 1903                 Queens Vil Com for Mental Hlth For Jamaica Comm Adolescent Pro Inc
## 1904                                     Finger Lakes Migrant Health Care Project, Inc.
## 1905                                                  Mary Imogene Bassett Hospital Inc
## 1906                                                      Community Health Project, Inc
## 1907                                                   ParCare Community Health Network
## 1908                                                  Rockland County Health Department
## 1909                                                       NY Eye and Ear Infirmary Inc
## 1910                                            Community Medical and Dental Care, Inc.
## 1911                                                                           WMOP,LLC
## 1912                                          Our Lady of Lourdes Memorial Hospital Inc
## 1913                                                   Damian Family Care Centers, Inc.
## 1914                                               Main Street Radiology at Bayside LLC
## 1915                                                             Massena Hospital, Inc.
## 1916                                                               Dialysis Clinic, Inc
## 1917                                                             St Peters Hospital Inc
## 1918                                                          Montefiore Medical Center
## 1919                                                             St Peters Hospital Inc
## 1920                                                      Sterling Surgical Center, LLC
## 1921                                        Catholic Health System of Long Island, Inc.
## 1922                                                             Health Sciences Center
## 1923                                                           Amber Court at Home, LLC
## 1924                                          Community Health Center of Richmond, Inc.
## 1925                                                           Glens Falls Hospital Inc
## 1926                                       L'Refuah Medical & Rehabilitation Center,Inc
## 1927                                Sisters of Charity Hospital of Buffalo New York Inc
## 1928                                                 Franciscan Sisters of the Poor Inc
## 1929                                                         Care For The Homeless, Inc
## 1930                                                                    Elmira Asc, LLC
## 1931                           Parker Jewish Institute for Health Care & Rehabilitation
## 1932                                                       Carnegie Hill Institute, Inc
## 1933                                                  Institute for Family Health, Inc.
## 1934                                                  Waterview Nursing Care Center Inc
## 1935                                                        University of Rochester Inc
## 1936                                                       State University of New York
## 1937                                                      St. Josephs Hospital, Yonkers
## 1938                                         William F Ryan Community Health Center Inc
## 1939                                          Rosa Coplon Jewish Home and Infirmary Inc
## 1940                                                    Good Shepherd-Fairview Home Inc
## 1941                     Absolut Center for Nursing and Rehabilitation at Endicott, LLC
## 1942                                                  Mary Imogene Bassett Hospital Inc
## 1943                                 2850 Grand Island Boulevard Operating Company, LLC
## 1944                          The Memorial Hospital of William F & Gertrude F Jones Inc
## 1945                         Episcopal Church Home & Affiliates Life Care Community Inc
## 1946                                                           St Barnabas Hospital Inc
## 1947                                                North Shore University Hospital Inc
## 1948                                                            Mayfair Care Center Inc
## 1949                                Sisters of Charity Hospital of Buffalo New York Inc
## 1950                                         William F Ryan Community Health Center Inc
## 1951                                                          The Saratoga Hospital Inc
## 1952                                                              County of Cattaraugus
## 1953                                                      Mercy Hospital of Buffalo Inc
## 1954                                           Mt Vernon Neighborhood Health Center Inc
## 1955                                                          Alice Hyde Medical Center
## 1956                               NY Society for the Relief of The Ruptured & Crippled
## 1957                                Sisters of Charity Hospital of Buffalo New York Inc
## 1958                                                     Nassau Health Care Corporation
## 1959                                                         Arnot Ogden Medical Center
## 1960                                                                   Syracuse ASC LLC
## 1961                                     Weill Cornell Imaging at New York Presbyterian
## 1962                                              Buffalo Hearing and Speech Center Inc
## 1963                                                   Damian Family Care Centers, Inc.
## 1964                                               Whitney M Young Jr Health Center Inc
## 1965                      Tender Loving Care Health Care Servics of Nassau Suffolk, LLC
## 1966                                Sisters of Charity Hospital of Buffalo New York Inc
## 1967                                                              NYU Langone Hospitals
## 1968                                                 Upstate Family Health Center, Inc.
## 1969                                          Our Lady of Lourdes Memorial Hospital Inc
## 1970                                                       United Home for Aged Hebrews
## 1971                                                        Knickerbocker Dialysis, Inc
## 1972                                                                      FoltsCare LLC
## 1973                                                          Maimonides Medical Center
## 1974                                      Parkview Care and Rehabilitation Center, Inc.
## 1975                                                               Premium Health, Inc.
## 1976                                                  Samaritan Hospital of Troy NY Inc
## 1977                                             Daughters of Sarah Nursing Home Co Inc
## 1978                                                       Community Healthcare Network
## 1979                                   Sunnyview Hospital and Rehabilitation Center Inc
## 1980                                   Sunnyview Hospital and Rehabilitation Center Inc
## 1981                                                      Cornerstone Family Healthcare
## 1982                                               Metro Community Health Centers, Inc.
## 1983                                                            Geneva Nursing Home Inc
## 1984                                                      Seneca Health Care Center LLC
## 1985                                                         Arnot Ogden Medical Center
## 1986                                                     New York Dialysis Services Inc
## 1987                                                          Montefiore Medical Center
## 1988                                                 Franciscan Sisters of the Poor Inc
## 1989                                                             KFG Operating Two, LLC
## 1990                                                       Hudson River Healthcare, Inc
## 1991                                               Hudson Headwaters Health Network Inc
## 1992                                                 Upstate Family Health Center, Inc.
## 1993                                                      St. Josephs Hospital, Yonkers
## 1994                                                      St. Josephs Hospital, Yonkers
## 1995                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 1996                                                                   Jefferson County
## 1997                                                         Columbia Memorial Hospital
## 1998                           Parker Jewish Institute for Health Care & Rehabilitation
## 1999                                               White Plains Hospital Medical Center
## 2000                                           Genesee Region Home Care Association Inc
## 2001                               Visiting Nurse Association Health Care Services, Inc
## 2002                                                      Community Health Project, Inc
## 2003                                                       Jericho Road Ministries Inc.
## 2004                                                      Cornerstone Family Healthcare
## 2005                                                          Kaaterskil Operating, LLC
## 2006                                                        Lasante Health Center, Inc.
## 2007                                                     Chinatown Dialysis Center, LLC
## 2008                                                           Orleans Community Health
## 2009                                                       State University of New York
## 2010                               Friedwald Center for Rehabilitation and Nursing, LLC
## 2011                                                      Fishkill Dialysis Center, LLC
## 2012                                         Royal Care Certified Home Health Care, LLC
## 2013                                                         Rutland Nursing Home, Inc.
## 2014                                                         Health Quest Systems, Inc.
## 2015                                               United Health Services Hospitals Inc
## 2016                                                             Avon Nursing Home, LLC
## 2017                                                     The Center for Discovery, Inc.
## 2018                                                  Samaritan Hospital of Troy NY Inc
## 2019                                                        University of Rochester Inc
## 2020                                                      Hudson Valley Hospital Center
## 2021                                                                 Ellis Hospital Inc
## 2022                                                      Bridge Regional Health System
## 2023                                              Buffalo Hearing and Speech Center Inc
## 2024                                                        University of Rochester Inc
## 2025                                       Long Island Center for Digestive Health, LLC
## 2026                                                                   Niagara ASC, LLC
## 2027                                                             Atlantis Operating LLC
## 2028                                               Metro Community Health Centers, Inc.
## 2029                                               Allegany County Department of Health
## 2030                                              Selfhelp Special Family Home Care,Inc
## 2031                                                           Glens Falls Hospital Inc
## 2032                                                        St Vincent Depaul Residence
## 2033                                                     Rochester General Hospital Inc
## 2034                    Absolut Center for Nursing and Rehabilitation at Salamanca, LLC
## 2035                                                          The Rogosin Institute Inc
## 2036                                                              St. Mary's Healthcare
## 2037                                                        University of Rochester Inc
## 2038                                                          Maimonides Medical Center
## 2039                                                     Queens-Nassau Nursing Home Inc
## 2040                                                              La Casa De Salud, Inc
## 2041                                                  Staten Island University Hospital
## 2042                                                        Crouse Community Center Inc
## 2043                                                             Southside Hospital Inc
## 2044                                                       Hudson River Healthcare, Inc
## 2045                                                 Queens-Long Island Renal Institute
## 2046                                                  Institute for Family Health, Inc.
## 2047                                         William F Ryan Community Health Center Inc
## 2048                                                       The Brooklyn Hospital Center
## 2049                                       HealthAlliance Hospital Mary's Avenue Campus
## 2050                                                        University of Rochester Inc
## 2051                                                         Columbia Memorial Hospital
## 2052                                                        Rome Memorial Hospital, Inc
## 2053                                     Weill Cornell Imaging at New York Presbyterian
## 2054                                                North Shore University Hospital Inc
## 2055                                                 St Joseph's Hospital Health Center
## 2056                                                 Highland Hospital of Rochester Inc
## 2057                                                Cornerstone Urgent Care Center, LLC
## 2058                                                               Corning Hospital Inc
## 2059                                      New York City Health and Hospital Corporation
## 2060                                               Syracuse Community Health Center Inc
## 2061                                               Main Street Radiology at Bayside LLC
## 2062                                             Erie County Medical Center Corporation
## 2063                                                   Morris Heights Health Center Inc
## 2064                                                                Lenox Hill Hospital
## 2065                                                         Oneida Health Systems, Inc
## 2066                                           Mount St Marys Hospital of Niagara Falls
## 2067                                                                   Liberty RC, Inc.
## 2068                               Memorial Hospital for Cancer and Allied Diseases Inc
## 2069                                                   Morris Heights Health Center Inc
## 2070                                      New York City Health and Hospital Corporation
## 2071                                                   Carmel Richmond Nursing Home Inc
## 2072                                                 Rockaway Operations Associates LLC
## 2073                                               Open Door Family Medical Center, Inc
## 2074                                                           Shorefront Operating LLC
## 2075                                                    Bethel Nursing Home Company Inc
## 2076                                                North Shore University Hospital Inc
## 2077                        Queens Boulevard Extended Care Facility Dialysis Center LLC
## 2078                                                            Park Ridge Hospital Inc
## 2079                                                     Rochester General Hospital Inc
## 2080                               NY Society for the Relief of The Ruptured & Crippled
## 2081                             Planned Parenthood of the North Country, New York, Inc
## 2082                                                           The Mount Sinai Hospital
## 2083                                          Lutheran Social Service of Upstate NY Inc
## 2084                                               Hudson Headwaters Health Network Inc
## 2085                                                                     Kaleida Health
## 2086                                                         Olean General Hospital Inc
## 2087                                          Our Lady of Lourdes Memorial Hospital Inc
## 2088                                                     Claxton-Hepburn Medical Center
## 2089                                                Northern Manor Geriatric Center Inc
## 2090                                                      Gastro Operating Company, LLC
## 2091                                               Hudson Headwaters Health Network Inc
## 2092                                                              Urban Health Plan Inc
## 2093                                                     New York Dialysis Services Inc
## 2094                                                              Urban Health Plan Inc
## 2095                               Memorial Hospital for Cancer and Allied Diseases Inc
## 2096                                                                Mosaic Health, Inc.
## 2097                          Visiting Nurse Service of Rochester and Monroe County Inc
## 2098                                                             Belair Care Center Inc
## 2099                                                            Park Ridge Hospital Inc
## 2100                                                  Mary Imogene Bassett Hospital Inc
## 2101                                                    Central New York Eye Center Ltd
## 2102                                                     New Surfside Nursing Home, LLC
## 2103                                           112 Ski Bowl Road Operating Company, LLC
## 2104                                                              Little Falls Hospital
## 2105                                                            Park Ridge Hospital Inc
## 2106                                                      Beach Terrace Care Center Inc
## 2107                                                       The Brooklyn Hospital Center
## 2108                                               United Health Services Hospitals Inc
## 2109                                                            Canton-Potsdam Hospital
## 2110                                                          Montefiore Medical Center
## 2111                                         Northern Riverview Health Care Center, Inc
## 2112                                                Avantus Renal Therapy New York, LLC
## 2113                                                        Knickerbocker Dialysis, Inc
## 2114                                      Family Health Network of Central New York Inc
## 2115                                               Syracuse Community Health Center Inc
## 2116                                      Brownsville Community Development Corporation
## 2117                                                     Chenango Memorial Hospital Inc
## 2118                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2119                                                                      L Woerner Inc
## 2120                                                           Russ,William;Russ,Sylvia
## 2121                                      New York City Health and Hospital Corporation
## 2122                                                          Auburn Community Hospital
## 2123                                                              Villa Mary Immaculate
## 2124                                                                Project Renewal Inc
## 2125                                      New York City Health and Hospital Corporation
## 2126                                                        University of Rochester Inc
## 2127                                        Catholic Health System of Long Island, Inc.
## 2128                                       Planned Parenthood of Greater New York, Inc.
## 2129                                                              NYU Langone Hospitals
## 2130                                             Montefiore Mount Vernon Hospital, Inc.
## 2131                                               Hudson Headwaters Health Network Inc
## 2132                                      New York City Health and Hospital Corporation
## 2133                                                               ORRNC Operating, LLC
## 2134                                                   Brooks-TLC Hospital System, Inc.
## 2135                                            HealthAlliance Hospital Broadway Campus
## 2136                                         Westchester County Health Care Corporation
## 2137                                                     Nassau Health Care Corporation
## 2138                                                                  Narco Freedom Inc
## 2139                                           Mount St Marys Hospital of Niagara Falls
## 2140                                                         Carthage Area Hospital Inc
## 2141                                                                  West Side GI, LLC
## 2142                                                                     Beverwyck, Inc
## 2143                                              Century Medical & Dental Center, Inc.
## 2144                                                  Mary Imogene Bassett Hospital Inc
## 2145                                             The New York and Presbyterian Hospital
## 2146                                                       State University of New York
## 2147                                          Roswell Park Cancer Institute Corporation
## 2148                                                        Huntington Nursing Home Inc
## 2149                                                     New York Dialysis Services Inc
## 2150                                                                  County of Wyoming
## 2151                                                          Twin Tier Home Health Inc
## 2152                                                      Cornerstone Family Healthcare
## 2153                                                           CHC Surgical Center, LLC
## 2154                                                 Beechwood Health Care Center, Inc.
## 2155                                                         Olean General Hospital Inc
## 2156                                                       Nathan Littauer Hospital Inc
## 2157                                                         Health Quest Systems, Inc.
## 2158                      The Schulman and Schachne Institute for Nursing And Rehab,Inc
## 2159                                          Our Lady of Lourdes Memorial Hospital Inc
## 2160                                                        St Elizabeth Medical Center
## 2161                                                       Hudson River Healthcare, Inc
## 2162                                               Phelps Memorial Hospital Association
## 2163                                           Mount St Marys Hospital of Niagara Falls
## 2164                                                                     Putnam GI, LLC
## 2165                                                 Brookdale Family Care Centers, Inc
## 2166                                                                      FSNR SNF, LLC
## 2167                                              Smithtown Health Care Management, LLC
## 2168                                                                  Guthrie Home Care
## 2169                                                   Associates of Fulton County, LLC
## 2170                   Rosalind & Joseph Gurwin Jewish Geriatric Ctr of Long Island Inc
## 2171                                                  Samaritan Hospital of Troy NY Inc
## 2172                                      New York City Health and Hospital Corporation
## 2173                                                   Morris Heights Health Center Inc
## 2174                                                      East Hill Family Medical, Inc
## 2175                                                          Maimonides Medical Center
## 2176                                                       Nathan Littauer Hospital Inc
## 2177                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2178                                                North Shore University Hospital Inc
## 2179                                                          Montefiore Medical Center
## 2180                                                        University of Rochester Inc
## 2181                                                                 St. James Hospital
## 2182                                              ODA Primary Health Care Network, Inc.
## 2183                           Parker Jewish Institute for Health Care & Rehabilitation
## 2184                                      New York City Health and Hospital Corporation
## 2185                Trustees of the Eastern Star Hall and Home of the State of New York
## 2186                                                          Maimonides Medical Center
## 2187                                                       Community Healthcare Network
## 2188                                               Whitney M Young Jr Health Center Inc
## 2189                                          Our Lady of Lourdes Memorial Hospital Inc
## 2190                                                            Park Ridge Hospital Inc
## 2191                                                         Westgate Nursing Home Inc.
## 2192                                                                  DSI Newburgh, LLC
## 2193                                                              NYU Langone Hospitals
## 2194                                                 Highland Hospital of Rochester Inc
## 2195                                                        University of Rochester Inc
## 2196                                            Campbell Hall Rehabilitation Center Inc
## 2197                                                Hudson Valley Endoscopic Center Inc
## 2198                                           North Country Family Health Center, Inc.
## 2199                                                        NewYork-Presbyterian/Queens
## 2200                                                              Little Falls Hospital
## 2201                                      New York City Health and Hospital Corporation
## 2202                                           Island Ambulatory Surgery Center, L.L.C.
## 2203                                                 Nicholas H Noyes Memorial Hospital
## 2204                                               Hudson Headwaters Health Network Inc
## 2205                                      New York City Health and Hospital Corporation
## 2206                                            HealthAlliance Hospital Broadway Campus
## 2207                                                   Damian Family Care Centers, Inc.
## 2208                                          Joseph P Addabbo Family Health Center Inc
## 2209                                                     Beth Israel Medical Center Inc
## 2210                                                       State University of New York
## 2211                                                    Community Memorial Hospital Inc
## 2212                                                            Park Ridge Hospital Inc
## 2213                                                   Hudson Valley Care Partners, LLC
## 2214                                                   Hospice of the North Country Inc
## 2215                                                        Knickerbocker Dialysis, Inc
## 2216                                                                        NYSARC, Inc
## 2217                                     Finger Lakes Migrant Health Care Project, Inc.
## 2218                                                         Faxton-St Lukes Healthcare
## 2219                                               Whitney M Young Jr Health Center Inc
## 2220                                                            Park Ridge Hospital Inc
## 2221                     Absolut Center for Nursing and Rehabilitation at Houghton, LLC
## 2222                                      Brownsville Community Development Corporation
## 2223                                              Buffalo Hearing and Speech Center Inc
## 2224                                                   Hudson Valley Care Partners, LLC
## 2225                                                          Pine Haven Operating, LLC
## 2226                                                             S.L.A. Associates, LLC
## 2227                                                          Adirondack Medical Center
## 2228                                                      DOJ OPERATIONS ASSOCIATES LLC
## 2229                                                 Uptown Health Care Management, Inc
## 2230                                                                  Settlement Health
## 2231                                                      St. Josephs Hospital, Yonkers
## 2232                                         Westchester County Health Care Corporation
## 2233                                                        Hudson Valley Hospice, Inc.
## 2234                                               Open Door Family Medical Center, Inc
## 2235           Hospital for Special Surgery Ambulatory Surgery Center of Manhattan, LLC
## 2236                                              South Nassau Communities Hospital Inc
## 2237                                                                St Marys Center Inc
## 2238                                          Our Lady of Lourdes Memorial Hospital Inc
## 2239                                                             St Peters Hospital Inc
## 2240                                                   Kew Gardens Dialysis Center, LLC
## 2241                                                                   CLR Carthage LLC
## 2242                                                     Bon Secours Community Hospital
## 2243                                                Union Community Health Center, Inc.
## 2244                                                           Glens Falls Hospital Inc
## 2245                                                                  Cortland ASC, LLC
## 2246                                                              County of Westchester
## 2247                                                Rensselaer County Health Department
## 2248                                          Roswell Park Cancer Institute Corporation
## 2249                                                                 Grand Batavia, LLC
## 2250                                 Meadow Park Rehabilitation and Health Care Ctr LLC
## 2251                                                             Yertle Operations, LLC
## 2252                                    East Haven Nursing & Rehabilitation Center, LLC
## 2253                                                             Woodmere Dialysis, LLC
## 2254                                                       Garnet Health Medical Center
## 2255                                                                  State of New York
## 2256                                                      St. Josephs Hospital, Yonkers
## 2257                                         Brook Plaza Ambulatory Surgical Center Inc
## 2258                                                  Staten Island University Hospital
## 2259                                                              NYU Langone Hospitals
## 2260                                                          The Childrens Aid Society
## 2261                                                                       Medcare, LLC
## 2262                                                  Mary Imogene Bassett Hospital Inc
## 2263                                                Strong Partners Health System, Inc.
## 2264                                                                     Kaleida Health
## 2265                               NY Society for the Relief of The Ruptured & Crippled
## 2266                                          Endoscopy Center of Western New York, LLC
## 2267                                                              Grand Great Neck, LLC
## 2268                                                        University of Rochester Inc
## 2269                                                          Maimonides Medical Center
## 2270                                                          Montefiore Medical Center
## 2271                                      Eastern Orange Ambulatory Surgery Center, LLC
## 2272                                                                 Doctors United Inc
## 2273                           Parker Jewish Institute for Health Care & Rehabilitation
## 2274                                            HealthAlliance Hospital Broadway Campus
## 2275                                               Lutheran Center at Poughkeepsie, Inc
## 2276                                                               Bridgewater CFD, LLC
## 2277                                       Dewitt Rehabilitation and Nursing Center Inc
## 2278                                                        NewYork-Presbyterian/Queens
## 2279                               Fort Tryon Rehabilitation & Health Care Facility LLC
## 2280                                                   Morris Heights Health Center Inc
## 2281                                                     New York Dialysis Services Inc
## 2282                                                    Community Memorial Hospital Inc
## 2283                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2284                                                           Third Avenue Imaging LLC
## 2285                          Visiting Nurse Association of Utica and Oneida County Inc
## 2286                                                      Cornerstone Family Healthcare
## 2287                                                              Everett Road ASC, LLC
## 2288                                             The New York and Presbyterian Hospital
## 2289                                                      St. Josephs Hospital, Yonkers
## 2290                                       ColumbiaDoctors/NewYork-Presbyterian Imaging
## 2291                                                                          CGSR, Inc
## 2292                                                Long Island Select Healthcare, Inc.
## 2293                                                      Community Health Project, Inc
## 2294                                                              NYU Langone Hospitals
## 2295                                                         Olean General Hospital Inc
## 2296                                               Main Street Radiology at Bayside LLC
## 2297                                                                     Kaleida Health
## 2298                                                         Williamsburg Services, LLC
## 2299                                              Niagara Falls Memorial Medical Center
## 2300                                                          Concourse Replacement LLC
## 2301                                                       Hudson River Healthcare, Inc
## 2302                                                      Montgomery Operating Co., LLC
## 2303                  NY Hotel Trades Council&Hotel Association of NYC Health Ctr, Inc.
## 2304                                      New York City Health and Hospital Corporation
## 2305                             Nassau County Department of Drug and Alcohol Addiction
## 2306                                                            Port Jefferson ASC, LLC
## 2307                                    Visiting Nurse Service of New York Home Care II
## 2308                                                             Advanced Endoscopy LLC
## 2309                                Sisters of Charity Hospital of Buffalo New York Inc
## 2310                                                              Eye Health Associates
## 2311                                Northwest Buffalo Community Health Care Center, Inc
## 2312                                Sisters of Charity Hospital of Buffalo New York Inc
## 2313                                Sisters of Charity Hospital of Buffalo New York Inc
## 2314                                         William F Ryan Community Health Center Inc
## 2315                                                  Long Island Jewish Medical Center
## 2316                                                               The Brightonian, Inc
## 2317                                                        Rome Memorial Hospital, Inc
## 2318                                                  Samaritan Hospital of Troy NY Inc
## 2319                                                           Glens Falls Hospital Inc
## 2320                                                Ontario County Board of Supervisors
## 2321                                                   Kingsway Arms Nursing Center Inc
## 2322                            Champlain Valley Physicians Hospital Medical Center Inc
## 2323                                                   Schnur Operations Associates LLC
## 2324                                               Center for Disability Services, Inc.
## 2325                                                       The Brooklyn Hospital Center
## 2326                                               Whitney M Young Jr Health Center Inc
## 2327                                                     New York Dialysis Services Inc
## 2328                                               Rochester General Long Term Care Inc
## 2329                                                  Mary Imogene Bassett Hospital Inc
## 2330                                                        Midtown Surgery Center, LLC
## 2331                                                  Institute for Family Health, Inc.
## 2332                                                   Morris Heights Health Center Inc
## 2333                                                                          NHPE, LLC
## 2334                                                       Community Healthcare Network
## 2335                                                                          RRNC, LLC
## 2336                                                               Dialysis Clinic, Inc
## 2337                                                    St Johnland Nursing Center, Inc
## 2338                                                  Long Island Jewish Medical Center
## 2339                                                                    County of Essex
## 2340                                                         Olean General Hospital Inc
## 2341              Home for the Aged of The Little Sisters of The Poor Of The City Of NY
## 2342                                                            Bezalel Nursing Home Co
## 2343                                                                Gouverneur Hospital
## 2344                                                        St Luke's Cornwall Hospital
## 2345                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2346                                                     Rochester General Hospital Inc
## 2347                                                 Franciscan Sisters of the Poor Inc
## 2348                                                    Margaretville Nursing Home, Inc
## 2349                       Soldiers and Sailors Memorial Hospital of Yates County, Inc.
## 2350                                                Niagara County Department of Health
## 2351                                                  Staten Island University Hospital
## 2352                                                   Morris Heights Health Center Inc
## 2353                                                  Long Island Jewish Medical Center
## 2354                                                                Oswego Hospital Inc
## 2355                                                          The Saratoga Hospital Inc
## 2356                                                             Putnam Hospital Center
## 2357                                                             Putnam Hospital Center
## 2358                                                      Cornerstone Family Healthcare
## 2359                                                   Mary M Gooley Hemophilia Ctr Inc
## 2360                                            NewYork-Presbyterian/Brooklyn Methodist
## 2361                                                         Buffalo Womenservices, LLC
## 2362                                                                    Sapphire HC LLC
## 2363                                                            Canton-Potsdam Hospital
## 2364                                                                 St. James Hospital
## 2365                                                     Rochester General Hospital Inc
## 2366                                    Endoscopic Diagnostic and Treatment Center, LLC
## 2367                                                     Nassau Health Care Corporation
## 2368                             CenterLight Healthcare Diagnostic and Treatment Center
## 2369                                                                    County of Lewis
## 2370                                                  Staten Island University Hospital
## 2371                                           Garnet Health Medical Center - Catskills
## 2372                                                              St. Mary's Healthcare
## 2373                                                        Atlanticare Management, LLC
## 2374                               Visiting Nurse Association Health Care Services, Inc
## 2375                                      New York City Health and Hospital Corporation
## 2376                                              The Frederick Ferris Thompson Hosital
## 2377                                                     Rochester General Hospital Inc
## 2378                                                     Rochester General Hospital Inc
## 2379                                                       State University of New York
## 2380                                                       State University of New York
## 2381                 Absolut Center for Nursing and Rehabilitation at Three Rivers, LLC
## 2382                                               United Health Services Hospitals Inc
## 2383                                                           Pontiac Nursing Home LLC
## 2384                                       L'Refuah Medical & Rehabilitation Center,Inc
## 2385                                                          The Childrens Aid Society
## 2386                                                   Damian Family Care Centers, Inc.
## 2387                                     Carillon Nursing and Rehabilitation Center LLC
## 2388                                                       Brighton Surgery Center, LLC
## 2389                                                  Mary Imogene Bassett Hospital Inc
## 2390                                                 The Caring Coalition of Central NY
## 2391                                      Brownsville Community Development Corporation
## 2392                                       Planned Parenthood of Greater New York, Inc.
## 2393                                      New York City Health and Hospital Corporation
## 2394                                                     The Rockefeller University Inc
## 2395                                                              NYU Langone Hospitals
## 2396                                                         Faxton-St Lukes Healthcare
## 2397                                                        Rome Memorial Hospital, Inc
## 2398                                           Mount St Marys Hospital of Niagara Falls
## 2399                                               Syracuse Community Health Center Inc
## 2400                                                          Queens Endoscopy ASC, LLC
## 2401                                                     West Lawrence Care Center, LLC
## 2402                                                      Cornerstone Family Healthcare
## 2403                                                       Newtown Dialysis Center, Inc
## 2404                                                                     Kaleida Health
## 2405                                                    Newark-Wayne Community Hospital
## 2406                                           North Country Family Health Center, Inc.
## 2407                                               Open Door Family Medical Center, Inc
## 2408                                         United Cerebral Palsy of Ulster County Inc
## 2409                                                          Montefiore Medical Center
## 2410                                                       Hudson River Healthcare, Inc
## 2411                                                 Highland Hospital of Rochester Inc
## 2412                            Home for the Aged of The Little Sisters of The Poor Inc
## 2413                                      Department of Behavioral and Community Health
## 2414                                                               Somers Operating LLC
## 2415                                              Unity Linden Oaks Surgery Center, LLC
## 2416                                                        Crouse Community Center Inc
## 2417                                                        St Elizabeth Medical Center
## 2418                                                          Montefiore Medical Center
## 2419                                           Perry Avenue Family Medical Center, Inc.
## 2420                                                      CMI Professional Services LLP
## 2421                                                              NYU Langone Hospitals
## 2422                                                        University of Rochester Inc
## 2423                                                             St Peters Hospital Inc
## 2424                                                Strong Partners Health System, Inc.
## 2425                                                     Chenango Memorial Hospital Inc
## 2426                                      New York City Health and Hospital Corporation
## 2427                                Sky View Rehabilitation and Health Care Center, LLC
## 2428                  Absolut Center for Nursing and Rehabilitation at Aurora Park, LLC
## 2429                                                               Jamaica Hospital Inc
## 2430                                             Schenectady Family Health Services Inc
## 2431                                                          Montefiore Medical Center
## 2432                                             Albany Regional Eye Surgery Center LLC
## 2433                           Planned Parenthood of Central and Western New York, Inc.
## 2434                                                    Hospice of Jefferson County Inc
## 2435                                                      Shore View Acquisition I, LLC
## 2436                                                       State University of New York
## 2437                                      New York City Health and Hospital Corporation
## 2438                                                       Hudson River Healthcare, Inc
## 2439                                                                          CRNC, LLC
## 2440                                                     Rochester General Hospital Inc
## 2441                                                                  State of New York
## 2442                                                                SUNY at Stony Brook
## 2443                            New Franklin Rehabilitation & Health Care Facility, LLC
## 2444                                     Finger Lakes Migrant Health Care Project, Inc.
## 2445                                           START Treatment & Recovery Centers, Inc.
## 2446                                                                    County of Tioga
## 2447                                                         Arnot Ogden Medical Center
## 2448                                                                Oswego Hospital Inc
## 2449                                                        Park Ridge Nursing Home Inc
## 2450                                                       State University of New York
## 2451                                                               County of Montgomery
## 2452                                        New York Medical and Diagnostic Center, Inc
## 2453                                             Good Samaritan Hospital Medical Center
## 2454                                               Cayuga Medical Center at Ithaca, Inc
## 2455                                                  Samaritan Hospital of Troy NY Inc
## 2456                                                     Wyckoff Heights Medical Center
## 2457                                  Ambulatory Surgery Center of Western New York LLC
## 2458                                                             St Peters Hospital Inc
## 2459                                    Brookhaven Memorial Hospital Medical Center Inc
## 2460                                                      CMI Professional Services LLP
## 2461                                                         Faxton-St Lukes Healthcare
## 2462                                            Westchester County Department of Health
## 2463                                               Whitney M Young Jr Health Center Inc
## 2464                                                        Knickerbocker Dialysis, Inc
## 2465                                                       Hudson River Healthcare, Inc
## 2466                                                           St Barnabas Hospital Inc
## 2467                                          Menorah Home & Hospital for Aged & Infirm
## 2468                                                        University of Rochester Inc
## 2469                                                       Hudson River Healthcare, Inc
## 2470                                                    St Johns Riverside Hospital Inc
## 2471                                                            Nesconset Operating LLC
## 2472                                                The Door - A Center of Alternatives
## 2473                                                   Fairview Nursing Care Center Inc
## 2474                                                    United Cerebral Palsy D & T Ctr
## 2475                                                          The Saratoga Hospital Inc
## 2476                                               Open Door Family Medical Center, Inc
## 2477                                                            Canton-Potsdam Hospital
## 2478                                             Terence Cardinal Cooke Health Care Ctr
## 2479                                                       Gramercy Surgery Center, Inc
## 2480                                                  East End Dialysis Management, LLC
## 2481                                                  Specialists' One-Day Surgery, LLC
## 2482                               NY Society for the Relief of The Ruptured & Crippled
## 2483                                                             Vestal Healthcare, LLC
## 2484                                                                         NCRNC, LLC
## 2485                        Pelham Parkway Nursing Care and Rehabilitation Facility LLC
## 2486                                          1019 Wicker Street Operating Company, LLC
## 2487                                                   Kingsbrook Jewish Medical Center
## 2488                                                         Oneida Health Systems, Inc
## 2489                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2490                                                     Norwich Operating Company, LLC
## 2491                                                            Park Ridge Hospital Inc
## 2492                                            NewYork-Presbyterian/Brooklyn Methodist
## 2493                                                     Northern Dutchess Hospital Inc
## 2494                                                 Heritage Operating Associates, LLC
## 2495                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 2496                                                  Staten Island University Hospital
## 2497                                                         Crouse Health Hospital Inc
## 2498                                                                   County of Seneca
## 2499                       Soldiers and Sailors Memorial Hospital of Yates County, Inc.
## 2500                                              4800 Bear Road Operating Company, LLC
## 2501                                                         Faxton-St Lukes Healthcare
## 2502                                                        The Chautauqua Center, Inc.
## 2503                                             Good Samaritan Hospital Medical Center
## 2504                                                       Nathan Littauer Hospital Inc
## 2505                                                 Highland Hospital of Rochester Inc
## 2506                                                         Arnot Ogden Medical Center
## 2507                                                            Premier Healthcare, Inc
## 2508                                                              Kendal at Ithaca, Inc
## 2509                                                      Cornerstone Family Healthcare
## 2510                                        New York Community Hospital of Brooklyn,Inc
## 2511                                                    Tioga Opportunities Program Inc
## 2512                                                   Morris Heights Health Center Inc
## 2513                                    Brookhaven Memorial Hospital Medical Center Inc
## 2514                                                     Rochester General Hospital Inc
## 2515                                                                          SJLS, LLC
## 2516                                           START Treatment & Recovery Centers, Inc.
## 2517                                      New York City Health and Hospital Corporation
## 2518                                           EmblemHealth Medical and Dental Services
## 2519                                              Unity Linden Oaks Surgery Center, LLC
## 2520                                                       State University of New York
## 2521                                                              NYU Langone Hospitals
## 2522                                                                L&A Operational LLC
## 2523                                      Brookdale Physicians Dialysis Associates, Inc
## 2524                                                         Health Quest Systems, Inc.
## 2525                                                         Health Quest Systems, Inc.
## 2526                                                  Mary Imogene Bassett Hospital Inc
## 2527                                                North Shore University Hospital Inc
## 2528                                                                           SCOB.LLC
## 2529                                                    Guthrie Cortland Medical Center
## 2530                                                            Canton-Potsdam Hospital
## 2531                                                Bethel Springvale Nursing Home, Inc
## 2532                                                                   City of New York
## 2533                                                            Park Ridge Hospital Inc
## 2534                                                       Hudson River Healthcare, Inc
## 2535                                             Community Health Center of Buffalo Inc
## 2536                             Planned Parenthood of the North Country, New York, Inc
## 2537                                                                   Liberty RC, Inc.
## 2538                              Hudson Valley Regional Community Health Centers, Inc.
## 2539                                         East Harlem Council for Human Services Inc
## 2540                                      New York City Health and Hospital Corporation
## 2541                                                  Long Island Jewish Medical Center
## 2542              Sapphire Center for Rehabilitation and Nursing of Central Queens, LLC
## 2543                                                          Adirondack Medical Center
## 2544                                                               Dialysis Clinic, Inc
## 2545                                   Aurelia Osborn Fox Memorial Hospital Society Inc
## 2546                                                     New York Dialysis Services Inc
## 2547                                      New York City Health and Hospital Corporation
## 2548                                         Genesee Valley Presbyterian Nursing Center
## 2549                                              The Frederick Ferris Thompson Hosital
## 2550                                                     Wyckoff Heights Medical Center
## 2551                                                Capital Region Geriatric Center Inc
## 2552                                                     New York Dialysis Services Inc
## 2553                                                             Cabrini of Westchester
## 2554                             United Cerebral Palsy Association of Nassau County Inc
## 2555                                                       State University of New York
## 2556                                           North Country Family Health Center, Inc.
## 2557                                                      Physicians Choice Surgicenter
## 2558                                                   New York Easter Seal Society Inc
## 2559                                                    Lafayette Medical Approach, LLC
## 2560                                                    Westfield Memorial Hospital Inc
## 2561                                                      Isabella Geriatric Center Inc
## 2562                                              South Nassau Communities Hospital Inc
## 2563                                                        Union Square Eye Center LLC
## 2564                                                        St Elizabeth Medical Center
## 2565                                                                 Ellis Hospital Inc
## 2566                                                        Knickerbocker Dialysis, Inc
## 2567                                          Home Aide Service of Eastern New York Inc
## 2568                                                   ParCare Community Health Network
## 2569                                                                    Rockaway HD LLC
## 2570                                                Grand Street Gastroenterology, Inc.
## 2571                                                 Brookdale Family Care Centers, Inc
## 2572                                                                     Kaleida Health
## 2573                                                                Utica Partners, LLC
## 2574                                                           Salem Acquisition I, LLC
## 2575                                     Church Home of the Protestant Episcopal Church
## 2576                                                                    MSAF Group, LLC
## 2577                                               United Health Services Hospitals Inc
## 2578                                                                          ORNC, LLC
## 2579                                           START Treatment & Recovery Centers, Inc.
## 2580                                              Niagara Falls Memorial Medical Center
## 2581                                 Hillside Polymedic Diagnostic and Treatment Center
## 2582                               NY Society for the Relief of The Ruptured & Crippled
## 2583                                                             Kenmore Mercy Hospital
## 2584                                                     Anthony L Jordan Health Center
## 2585                                                  New York University Dental Center
## 2586                                           North Country Family Health Center, Inc.
## 2587                                                        University of Rochester Inc
## 2588                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 2589                                                  Samaritan Hospital of Troy NY Inc
## 2590                                BronxCare Dr. Martin Luther King, Jr. Health Center
## 2591                                                          Montefiore Medical Center
## 2592                                      Family Health Network of Central New York Inc
## 2593                                                         Olean General Hospital Inc
## 2594                                                          Montefiore Medical Center
## 2595                                                         Faxton-St Lukes Healthcare
## 2596                                                         Oneida Health Systems, Inc
## 2597                                               Open Door Family Medical Center, Inc
## 2598                                                      Bridge Regional Health System
## 2599                                                             Ozone Acquisition, LLC
## 2600                                                    St Johns Riverside Hospital Inc
## 2601                                      New York City Health and Hospital Corporation
## 2602                                                         Health Quest Systems, Inc.
## 2603                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 2604                                                        Knickerbocker Dialysis, Inc
## 2605                                   Sunnyview Hospital and Rehabilitation Center Inc
## 2606                                                         Wesley Gardens Corporation
## 2607                                                  Samaritan Hospital of Troy NY Inc
## 2608                                             Chautauqua Hospice and Palliative Care
## 2609                                                           Samaritan Medical Center
## 2610                                         Westchester County Health Care Corporation
## 2611                                                                   Liberty RC, Inc.
## 2612                                                             Wartburg Receiver, LLC
## 2613                                                          Montefiore Medical Center
## 2614                                    Brookhaven Memorial Hospital Medical Center Inc
## 2615                                                               Mercy Medical Center
## 2616                                                                Mosaic Health, Inc.
## 2617                                                           Highland Care Center Inc
## 2618                                                       State University of New York
## 2619                                             Community Care of Western New York Inc
## 2620                                                         Riverhead Care Center, LLC
## 2621                                                       Nathan Littauer Hospital Inc
## 2622                                                              NYU Langone Hospitals
## 2623                                                     Rochester General Hospital Inc
## 2624                         Saratoga County Nursing Service of Public Health Committee
## 2625                                                          Interfaith Medical Center
## 2626                                                          Highland Nursing Home Inc
## 2627                                                  Latta Road Nursing Home East, LLC
## 2628                                                                PRNC Operating, LLC
## 2629                                                             Gold Crest Care Center
## 2630                                                               Jamaica Hospital Inc
## 2631                                Northwest Buffalo Community Health Care Center, Inc
## 2632                                                              St. Mary's Healthcare
## 2633                                                   Damian Family Care Centers, Inc.
## 2634                                                             Wells Nursing Home Inc
## 2635                                          Our Lady of Lourdes Memorial Hospital Inc
## 2636                                                              Urban Health Plan Inc
## 2637                                                        University of Rochester Inc
## 2638                                               United Health Services Hospitals Inc
## 2639                                                        Geneva General Hospital Inc
## 2640                                                               Refuah Health Center
## 2641                                                North Shore University Hospital Inc
## 2642                                        Highland View Care Center Operating Co. LLC
## 2643                                               Cayuga Medical Center at Ithaca, Inc
## 2644                                                        University of Rochester Inc
## 2645                                     Finger Lakes Migrant Health Care Project, Inc.
## 2646                                                           Hospice of Orleans, Inc.
## 2647                              North Country Orthopaedic Ambulatory Surgery Ctr, LLC
## 2648                                                              NYU Langone Hospitals
## 2649                                                              Massapequa Center LLC
## 2650                                       Planned Parenthood of Greater New York, Inc.
## 2651                                                              NYU Langone Hospitals
## 2652                                                     New York Dialysis Services Inc
## 2653                                                              NYU Langone Hospitals
## 2654                                                         Oneida Health Systems, Inc
## 2655                                                       State University of New York
## 2656                                                         Palm Tree Care Center, LLC
## 2657                                                      East Hill Family Medical, Inc
## 2658                                                     United Memorial Medical Center
## 2659                                                     Hospice of Chenango County Inc
## 2660                                                      Cornerstone Family Healthcare
## 2661                                                Long Island Select Healthcare, Inc.
## 2662                                                     Morningside Acquisition I, LLC
## 2663                                                        Ridge Health Services, Inc.
## 2664                                                        University of Rochester Inc
## 2665                                                North Shore University Hospital Inc
## 2666                                                       Nathan Littauer Hospital Inc
## 2667                                                        Knickerbocker Dialysis, Inc
## 2668                                               United Health Services Hospitals Inc
## 2669                                                           Wingate of Dutchess, Inc
## 2670                                                        Knickerbocker Dialysis, Inc
## 2671                                                   Morris Heights Health Center Inc
## 2672                                                       Upstate Cerebral Palsy, Inc.
## 2673                                                Long Island Select Healthcare, Inc.
## 2674                                            Oak Orchard Community Health Center Inc
## 2675                                                            St Francis Hospital Inc
## 2676                         Northern Metropolitan Residential Health Care Facility Inc
## 2677                                            Oak Orchard Community Health Center Inc
## 2678                                               United Health Services Hospitals Inc
## 2679                                                     Rochester General Hospital Inc
## 2680                                Southern Tier Community Health Center Network, Inc.
## 2681                                                      Hospice of Fulton County, Inc
## 2682                                                                   At Home Care Inc
## 2683                                                                Yonkers Gardens LLC
## 2684                                                                 County of Franklin
## 2685                                                              NYU Langone Hospitals
## 2686                                       HealthAlliance Hospital Mary's Avenue Campus
## 2687                                                        NewYork-Presbyterian/Queens
## 2688                                            Housing Works Health Services III, Inc.
## 2689                                                                     Kaleida Health
## 2690                                                       Carnegie Hill Endoscopy, LLC
## 2691                                          Amsterdam Nursing Home Corporation (1992)
## 2692                                                  New Alternatives for Children Inc
## 2693                                                     Rochester General Hospital Inc
## 2694                             CenterLight Healthcare Diagnostic and Treatment Center
## 2695                                       L'Refuah Medical & Rehabilitation Center,Inc
## 2696                                Bay Park Center for Nursing and Rehabilitation, LLC
## 2697                                                  Mary Imogene Bassett Hospital Inc
## 2698                                                                   Liberty RC, Inc.
## 2699                                                       State University of New York
## 2700                                    Brookhaven Memorial Hospital Medical Center Inc
## 2701                                                       IR Operations Associates LLC
## 2702                                                     Wyckoff Heights Medical Center
## 2703                                                                    County of Lewis
## 2704                                                New York State Department of Health
## 2705                                                           The Mount Sinai Hospital
## 2706                                                              NYU Langone Hospitals
## 2707                                                             St Peters Hospital Inc
## 2708                                                                      Orange County
## 2709                                                     Albany Medical Center Hospital
## 2710                                                                 Glen Cove Hospital
## 2711                                                    South Shore Surgery Center, LLC
## 2712                                             The New York and Presbyterian Hospital
## 2713                                                          The Childrens Aid Society
## 2714                                                   Damian Family Care Centers, Inc.
## 2715                                               Hudson Headwaters Health Network Inc
## 2716                                                  Mary Imogene Bassett Hospital Inc
## 2717                                         Visiting Nurse Services In Westchester Inc
## 2718                                             Methodist Church Home for the Aged Inc
## 2719                                                      Roosevelt Surgery Center, LLC
## 2720                               United Cerebral Palsy Assn of the Rochester Area Inc
## 2721                                              Oasis Rehabilitation and Nursing, LLC
## 2722                                                  Samaritan Hospital of Troy NY Inc
## 2723                                                    Baptist Home of Brooklyn NY Inc
## 2724                                                   Damian Family Care Centers, Inc.
## 2725                                       Planned Parenthood of Greater New York, Inc.
## 2726                    Absolut Center for Nursing and Rehabilitation at Westfield, LLC
## 2727                               Memorial Hospital for Cancer and Allied Diseases Inc
## 2728                                                            Canton-Potsdam Hospital
## 2729                                                        Knickerbocker Dialysis, Inc
## 2730                                                         Health Quest Systems, Inc.
## 2731                                                            St Francis Hospital Inc
## 2732                                                                 Glen Cove Hospital
## 2733                                                  Yates County Board of Supervisors
## 2734                          State of NY State University of NY Central Administration
## 2735                                     Finger Lakes Migrant Health Care Project, Inc.
## 2736                                                              Urban Health Plan Inc
## 2737                                                  Long Island Jewish Medical Center
## 2738                                                          Sunnyside Care Center LLC
## 2739                                                     Albany Medical Center Hospital
## 2740                                       Planned Parenthood of Greater New York, Inc.
## 2741                          UCP and Handicapped Childrens Association of Syracuse Inc
## 2742                                Sisters of Charity Hospital of Buffalo New York Inc
## 2743                                                  Mary Imogene Bassett Hospital Inc
## 2744                                                      Bridge Regional Health System
## 2745                                                Upper Room Aids Ministry, Inc: ADHC
## 2746                                                                 Ellis Hospital Inc
## 2747                                                        SurgiCare of Manhattan, LLC
## 2748                                                              NYU Langone Hospitals
## 2749                  NY Hotel Trades Council&Hotel Association of NYC Health Ctr, Inc.
## 2750                                                          Maimonides Medical Center
## 2751                                                                   Liberty RC, Inc.
## 2752                                                      St. Josephs Hospital, Yonkers
## 2753                         The Winifred Masterson Burke Rehabilitation Foundation Inc
## 2754                                                       NY Eye and Ear Infirmary Inc
## 2755                                                      Newark Manor Nursing Home Inc
## 2756                                                       Hudson River Healthcare, Inc
## 2757                                                            Extraordinary Home Care
## 2758                                                       Franziska Racker Centers Inc
## 2759                                            Grand Manor Health Related Facility Inc
## 2760                                                         Faxton-St Lukes Healthcare
## 2761                                                         Cliffside Nursing Home Inc
## 2762                                                         Rego Park Nursing Home Ltd
## 2763                               Visiting Nursing Association of Western New York Inc
## 2764                                                              Calvary Hospital Inc.
## 2765                                                     Conesus Lake Nursing Home, LLC
## 2766                                          Our Lady of Lourdes Memorial Hospital Inc
## 2767                                Sisters of Charity Hospital of Buffalo New York Inc
## 2768                                                                          EHS, Inc.
## 2769                                                       Upstate Cerebral Palsy, Inc.
## 2770                                           Mt Vernon Neighborhood Health Center Inc
## 2771                                                     Nassau Health Care Corporation
## 2772                                                                Project Renewal Inc
## 2773                                                           St Barnabas Hospital Inc
## 2774                                                        Suffolk Surgery Center, LLC
## 2775                                            Finger Lakes Visiting Nurse Service Inc
## 2776                                       Planned Parenthood of Greater New York, Inc.
## 2777                                                       Union Plaza Nursing Home Inc
##                             Operator.Address.1        Operator.Address.2
## 1                          169 Riverside Drive                          
## 2                       Box 1000 Tilden Avenue                          
## 3                  116 Martin Luther King East                          
## 4                           62 Prospect Street                          
## 5                           4192a Bolivar Road                          
## 6               560 Delaware Avenue, Suite 400                          
## 7                           400 Endo Boulevard                          
## 8                          346 Delaware Avenue                          
## 9                      110 Bi-County Boulevard                 Suite 114
## 10                            550 First Avenue                          
## 11                          711 Stewart Avenue                          
## 12                          323 Genesee Street                          
## 13                            550 First Avenue                          
## 14                         169 Riverside Drive                          
## 15                              790 Ridge Road                          
## 16                          178-50 Linden Blvd                          
## 17                               462 Grider St                          
## 18                        344 West 51st Street                          
## 19              7650 SE 27th Street, Suite 200                          
## 20                            Lake Colby Drive                          
## 21                             105 Dart Circle                          
## 22                             515 Main Street                          
## 23                          601 Elmwood Avenue                          
## 24                          91 Plaza Boulevard                          
## 25                   14 DeKalb Ave., 4th Floor                          
## 26                            65 Ashburton Ave                          
## 27                           800 Second Avenue                 8th Floor
## 28                         200 Carleton Avenue                          
## 29                     2200 Northern Boulevard                          
## 30                   207 Troy-Schenectady Road                          
## 31                       Lark And Arbor Drives                          
## 32                                Box 218 Rd 1                          
## 33                          3125 Emmons Avenue                          
## 34                            300 Gleed Avenue                          
## 35                            125 Worth Street                          
## 36                     1500 North James Street                          
## 37                                 Atwell Road                          
## 38                        155 Crystal Run Road                          
## 39                              45 Reade Place                          
## 40                           31-00 47th Avenue                          
## 41                            125 Worth Street                          
## 42                               650 Mcclellan                          
## 43                  1615-1617 Eastchester Road                          
## 44                           250 Church Street                          
## 45                             570 Taxter Road                 Suite 250
## 46                          223 J B Wise Place                          
## 47                        240 Old Country Road                          
## 48                         2215 Burdett Avenue                          
## 49                           148 Wilson Avenue                          
## 50                           120 Church Street                          
## 51                            550 First Avenue                          
## 52                       111 East 210th Street                          
## 53                  1615-1617 Eastchester Road                          
## 54                            550 First Avenue                          
## 55                            256 Mason Avenue                          
## 56                         3117 Webster Avenue                          
## 57                      4770 White Plains Road                          
## 58                        70 West Burnside Ave                          
## 59                               650 Mcclellan                          
## 60                    147 and 149 Reist Street                          
## 61        1 South Washington Street, Suite 300                          
## 62                        1656 Champlin Avenue                          
## 63                              701 N Broadway                          
## 64                            125 Worth Street                          
## 65                        1000 Montauk Highway                          
## 66                             521 East Avenue                          
## 67                              2 Coulter Road                          
## 68                         300 Community Drive                          
## 69            Amsterdam Avenue At 114th Street                          
## 70                          71 Prospect Avenue                          
## 71                              45 Reade Place                          
## 72                           Stoneleigh Avenue                          
## 73                       110 West Sixth Street                          
## 74                             500 Main Street                          
## 75                          325 Cedarwood Hall                          
## 76                            256 Mason Avenue                          
## 77                  1615-1617 Eastchester Road                          
## 78                                 Park Street                          
## 79                        One Greenwich Street                          
## 80                          601 Elmwood Avenue                          
## 81                                260 Avenue X                          
## 82                         16 East 16th Street                          
## 83                       111 East 210th Street                          
## 84                            270-05 76 Avenue                          
## 85                          601 Elmwood Avenue                          
## 86                           1200 Waters Place                          
## 87                            1037 Main Street                          
## 88                          North Country Road                          
## 89                            125 Worth Street                          
## 90                          100 East 77 Street                          
## 91                       1035 East 27th Street                          
## 92                    4101 East Genesee Street                          
## 93                             214 King Street                          
## 94                      475 New Hempstead Road                          
## 95                  1615-1617 Eastchester Road                          
## 96                                  Po Box 222                          
## 97                            56 Market Street                          
## 98                       61-35 Dry Harbor Road                          
## 99                        1650 Champlin Avenue                          
## 100                       340 Arnett Boulevard                          
## 101                        1508 Genesee Street                          
## 102                           125 Worth Street                          
## 103           Amsterdam Avenue At 114th Street                          
## 104                      240 North Main Street                          
## 105                         1980 Crompond Road                          
## 106                           427 Guy Park Ave                          
## 107                         North Country Road                          
## 108                         2522 Hughes Avenue                          
## 109                              645 Tenth Ave                          
## 110                    115 East Stevens Avenue        Suites 104 and 105
## 111                           101 South Street                          
## 112                           550 First Avenue                          
## 113                          1049 Fifth Avenue                          
## 114                           1275 York Avenue                          
## 115                 1615-1617 Eastchester Road                          
## 116                           70 Dubois Street                          
## 117                            905 Culver Road                          
## 118                                   Route 97                          
## 119                       70 West Burnside Ave                          
## 120                         178-50 Linden Blvd                          
## 121                           125 Worth Street                          
## 122                        301 Prospect Avenue                          
## 123                        1270 Belmont Avenue                          
## 124                         1276 Fulton Avenue                          
## 125                          26 Bleeker Street                          
## 126                   1110 Pennsylvania Avenue                          
## 127                        Po Box 350 Route 54                          
## 128                 1072 Troy Schenectady Road                          
## 129                 1615-1617 Eastchester Road                          
## 130                           46 East Broadway                          
## 131                               100-17 23 St                          
## 132                           270-05 76 Avenue                          
## 133                        New Scotland Avenue                          
## 134  100 Woods Road, Taylor Pavilion 2nd Floor                          
## 135                                 Po Box 222                          
## 136                      110 West Sixth Street                          
## 137                         275 Madison Avenue                          
## 138                        300 Community Drive                          
## 139                              Church Street                          
## 140                     3525 Baychester Avenue                          
## 141                          26 Bleeker Street                          
## 142                        301 Prospect Avenue                          
## 143           1375 Washington Avenue-Suite 201                          
## 144                       1656 Champlin Avenue                          
## 145    Gutnicki LLP, 4711 Gold Road, Suite 200                          
## 146                         865 Merrick Avenue                 3rd Floor
## 147                                Atwell Road                          
## 148                          111 Westfall Road                          
## 149                            905 Culver Road                          
## 150                       1656 Champlin Avenue                          
## 151                          830 Washington St                          
## 152                       150 Dark Hollow Road                          
## 153                               813 Fay Road                          
## 154                           1275 York Avenue                          
## 155                         2640 Pitkin Avenue                          
## 156                        2570 U. S. Route 92                          
## 157                        15 West 65th Street                          
## 158                  1101 Pelham Parkway North                          
## 159                       2019 Nostrand Avenue                          
## 160                 1615-1617 Eastchester Road                          
## 161                        301 Prospect Avenue                          
## 162                         601 Elmwood Avenue                          
## 163                           49 Marvin Avenue                          
## 164                           184 Fifth Avenue                          
## 165                               127 North St                          
## 166                        15 West 65th Street                          
## 167                          736 Irving Avenue                          
## 168                      1285 Trumansburg Road                          
## 169                          4422 Third Avenue                          
## 170                                Atwell Road                          
## 171                          200 Varick Street                          
## 172                          180 Sylvan Avenue                          
## 173                           535 East 70th St                          
## 174                           125 Worth Street                          
## 175                           3200 Burnett Ave                          
## 176                           89 Baxter Street                          
## 177                             426 E 119th St                          
## 178                            100 Park Street                          
## 179                   91-93 South Third Street                          
## 180                        300 Community Drive                          
## 181                        125 West Hills Road                          
## 182                         178-50 Linden Blvd                          
## 183                      4975 Albany Post Road                          
## 184                       2150 Bleecker Street                          
## 185                     2700 North Forest Road                          
## 186                             121 Dekalb Ave                          
## 187                          4915 Tenth Avenue                          
## 188                        Po Box 350 Route 54                          
## 189                            905 Culver Road                          
## 190                       2150 St. Paul Street                          
## 191                        2445 Oceanside Road                          
## 192                       70 West Burnside Ave                          
## 193                            155 Lawn Avenue                          
## 194                        2256 Burdett Avenue                          
## 195                           270-05 76 Avenue                          
## 196                            165 Main Street                          
## 197                            4 Fuller Street                          
## 198                          830 Washington St                          
## 199                           125 Worth Street                          
## 200                         71 Prospect Avenue                          
## 201                 1615-1617 Eastchester Road                          
## 202                          105 Mary's Avenue                          
## 203                      1072 Havemeyer Avenue                          
## 204                          211 Church Street                          
## 205                      191 North Main Street                          
## 206                           150 Broad Street                          
## 207                           374 Stockholm St                          
## 208                            905 Culver Road                          
## 209                        183rd And Third Ave                          
## 210                           1037 Main Street                          
## 211                        183rd And Third Ave                          
## 212            178 Washington Avenue Extension                          
## 213                           2157 Main Street                          
## 214                   One Gustave L Levy Place                          
## 215                            100 Park Street                          
## 216                      111 East 210th Street                          
## 217                        16 East 16th Street                          
## 218                         178-50 Linden Blvd                          
## 219                    1911-1921 Jerome Avenue                          
## 220                   108 Holland Circle Drive                          
## 221                           184 Fifth Avenue                          
## 222                           1275 York Avenue                          
## 223                           270-05 76 Avenue                          
## 224                      622 West 168th Street                          
## 225                   One Gustave L Levy Place                          
## 226                           2697 Main Street                          
## 227                        2400 Dallas Parkway                 Suite 350
## 228                           550 First Avenue                          
## 229                         178-50 Linden Blvd                          
## 230                         350 Parrish Street                          
## 231                       110 West 97th Street                          
## 232                      116 North Jensen Road                          
## 233                        300 Community Drive                          
## 234                           125 Worth Street                          
## 235                   134 Great East Neck Road                          
## 236                           One Fox Run Lane                          
## 237                        159 Carleton Avenue                          
## 238                       99 East State Street                          
## 239              1633 Church Street, Suite 500                          
## 240             89th Ave & Van Wyck Expressway                          
## 241                     315 South Manning Blvd                          
## 242                          50 Clinton Street                          
## 243                       2555 Nostrand Avenue                          
## 244                       275 Castleton Avenue                          
## 245                            214 King Street                          
## 246              447-449 Lake Shore Drive West                          
## 247                        526 Altamont Avenue                          
## 248                            565 Abbott Road                          
## 249             67-10 Rockaway Beach Boulevard                          
## 250                       345 East 24th Street                          
## 251                           427 Guy Park Ave                          
## 252                           125 Worth Street                          
## 253                    2020 East Gun Hill Road                          
## 254                   100 Woodland Pond Circle                          
## 255                            570 Taxter Road                 Suite 250
## 256                             14012 Route 31                          
## 257                          50 Clinton Street                          
## 258                              35 Colvin Ave                          
## 259                        149 Ballston Avenue                          
## 260                      2700 Eastchester Road                          
## 261                        2570 U. S. Route 92                          
## 262                          26 Bleeker Street                          
## 263                           89 Baxter Street                          
## 264              1633 Church Street, Suite 500                          
## 265                        2215 Burdett Avenue                          
## 266                           550 First Avenue                          
## 267                      111 East 210th Street                          
## 268                           1275 York Avenue                          
## 269                           2175 Quarry Road                          
## 270                       731 Pre-Emptton Road                          
## 271                             41 Main Avenue                          
## 272                           751 Watkins Road                          
## 273                  1000 Pelham Parkway South                          
## 274                         601 Elmwood Avenue                          
## 275                               115 Broadway                          
## 276                      111 East 210th Street                          
## 277                           134 Homer Avenue                          
## 278                     140 Beach 113th Street                          
## 279      c/o American Renal Associates LLC MBR 500 Cummings Ctr Ste 6550
## 280                         529 Central Avenue                          
## 281                   One Gustave L Levy Place                          
## 282                   206 South Elmwood Avenue                          
## 283                      111 East 210th Street                          
## 284                      110 West Sixth Street                          
## 285                                Atwell Road                          
## 286                         5835 Unicorn Drive                          
## 287                          3400 Vickery Road                          
## 288                         175 Arsenal Street                          
## 289                        2215 Burdett Avenue                          
## 290                       110 West 97th Street                          
## 291                              650 Mcclellan                          
## 292                         Springbrook Avenue                          
## 293               2600 Niagara Falls Boulevard                31st Floor
## 294                           125 Worth Street                          
## 295                          1305 Utica Avenue                          
## 296                         2079 Forest Avenue                          
## 297                           70 Bunner Street                          
## 298                          223 Oneida Street                          
## 299                           207 Foote Avenue                          
## 300                         Empire State Plaza  Corning Tower  Room 1683
## 301                        2570 U. S. Route 92                          
## 302                         71 Prospect Avenue                          
## 303                            St Andrews Lane                          
## 304                        169 Riverside Drive                          
## 305                           210 Clinton Road                          
## 306                              506 Sixth St.                          
## 307                    36-17 Parsons Boulevard                          
## 308                             377 Oak Street                          
## 309                      111 East 210th Street                          
## 310                               396 Broadway                          
## 311                            915 Dean Street                          
## 312                     315 South Manning Blvd                          
## 313                      116 North Jensen Road                          
## 314                         302 Laurens Street                          
## 315                         North Country Road                          
## 316                    1911-1921 Jerome Avenue                          
## 317                  123-125 West 124th Street                          
## 318                          211 Church Street                          
## 319                     4770 White Plains Road                 3rd Floor
## 320                              650 Mcclellan                          
## 321                             45 Reade Place                          
## 322                       222 East Main Street                          
## 323                   One Gustave L Levy Place                          
## 324                             600 Roe Avenue                          
## 325                            905 Culver Road                          
## 326            Squire Hall-3435 Main St-SUNY/B                          
## 327                         839 Suffolk Avenue                          
## 328                   1704-1706 Mermaid Avenue                          
## 329                         601 Elmwood Avenue                          
## 330                          462 Grider Street                          
## 331                           550 First Avenue                          
## 332                           125 Worth Street                          
## 333                         178-50 Linden Blvd                          
## 334                         350 Parrish Street                          
## 335                         405 Carlton Avenue                          
## 336                        2215 Burdett Avenue                          
## 337                            128 Rutledge St                          
## 338                    110 Business Park Drive                          
## 339                        1555 Long Pond Road                          
## 340                       196 198 North Street                          
## 341                         223 J B Wise Place                          
## 342                           22 Church Street                          
## 343                     315 South Manning Blvd                          
## 344                           1037 Main Street                          
## 345                 1615-1617 Eastchester Road                          
## 346                        225 Community Drive                          
## 347                         178-50 Linden Blvd                          
## 348                         29-01 216th Street                          
## 349                               393 Front St                          
## 350                              645 Tenth Ave                          
## 351                            355 Bard Avenue                          
## 352                             4802 Tenth Ave                          
## 353                       70 West Burnside Ave                          
## 354                            500 Ohio Street                          
## 355                                 Po Box 222                          
## 356                           1037 Main Street                          
## 357                           1 Hospital Drive                          
## 358                       70 West Burnside Ave                          
## 359                        411 Canisteo Street                          
## 360                      111 East 210th Street                          
## 361                        169 Riverside Drive                          
## 362                                 Po Box 479                          
## 363                   One Gustave L Levy Place                          
## 364                        2570 U. S. Route 92                          
## 365                         100 East 77 Street                          
## 366                           121 Dunning Road                          
## 367                           184 Fifth Avenue                          
## 368                              650 Mcclellan                          
## 369                         529 Central Avenue                          
## 370                       460 West 34th Street                          
## 371                          211 Church Street                          
## 372                    10 Nathan Perlman Place                          
## 373                        612 Allerton Avenue                          
## 374                     191-06 Hillside Avenue                          
## 375                            100 Park Street                          
## 376                     690 West German Street                          
## 377                      630 West 168th Street                          
## 378                  4770 White Plains Road #3                          
## 379                        1555 Long Pond Road                          
## 380                           Lake Colby Drive                          
## 381                         601 Elmwood Avenue                          
## 382                        2215 Burdett Avenue                          
## 383                       70 West Burnside Ave                          
## 384            105-20 Rockaway Beach Boulevard                          
## 385                      630 West 168th Street                          
## 386                      622 West 168th Street                          
## 387                      1540 Tomlinson Avenue                          
## 388                          211 Church Street                          
## 389                           550 First Avenue                          
## 390                         71-20 110th Street                          
## 391                       240 Old Country Road                          
## 392                                Main Street                          
## 393                                 Po Box 222                          
## 394                        2215 Burdett Avenue                          
## 395             505 East 70th Street 2nd Floor                          
## 396                             11 Stokum Lane                          
## 397                           1275 York Avenue                          
## 398                        1270 Belmont Avenue                          
## 399                       255 Lafayette Avenue                          
## 400                            4 Fuller Street                          
## 401                            142 Audobon Ave                          
## 402                      2651 Strang Boulevard                          
## 403                        300 Community Drive                          
## 404                          462 Grider Street                          
## 405                           19 Laurel Avenue                          
## 406                South Avenue At Bellevue Dr                          
## 407                              6585 Broadway                          
## 408                            11 Avena Avenue                          
## 409                            11 Avena Avenue                          
## 410                          26 Bleeker Street                          
## 411              5496 East Taft Road - Suite B                          
## 412                            165 Main Street                          
## 413                           2697 Main Street                          
## 414                      510 West 126th Street                          
## 415                            100 High Street                          
## 416                           550 First Avenue                          
## 417                        1555 Long Pond Road                          
## 418                      622 West 168th Street                          
## 419                     17 Narragansett Avenue                          
## 420                       1000 Montauk Highway                          
## 421                            128 Rutledge St                          
## 422                        1270 Belmont Avenue                          
## 423                         350 Parrish Street                          
## 424                           2157 Main Street                          
## 425                         2079 Forest Avenue                          
## 426              1633 Church Street, Suite 500                          
## 427                            155 Dean Street                          
## 428                           550 First Avenue                          
## 429                         2107 Ditmas Avenue                          
## 430                      622 West 168th Street                          
## 431                       135 Linden Boulevard                          
## 432                            905 Culver Road                          
## 433                         119-09 26th Avenue                          
## 434                         33 State Route 17M                   Suite 1
## 435                                   Route 59                          
## 436                           140 West Main St                          
## 437                        80 West Main Street                          
## 438                              85 Metro Park                          
## 439                               621 Tenth St                          
## 440                           550 First Avenue                          
## 441                               813 Fay Road                          
## 442                  1440 Port Washington Blvd                          
## 443                            20 Grand Street                          
## 444                        3333 Elmwood Avenue                          
## 445                       444 Hopkinson Avenue                          
## 446                       170 Old Country Road                          
## 447                           550 First Avenue                          
## 448                          56-36 Main Street                          
## 449                           374 Stockholm St                          
## 450                         178-50 Linden Blvd                          
## 451                         1725 Brentwood  Rd                          
## 452                           550 First Avenue                          
## 453                        2215 Burdett Avenue                          
## 454                          3674 Third Avenue                          
## 455                         601 Elmwood Avenue                          
## 456                           255 Glen Cove Rd                          
## 457                 1615-1617 Eastchester Road                          
## 458                      111 East 210th Street                          
## 459                        One Long Beach Road                          
## 460             Davis Avenue At East Post Road                          
## 461                          71-12 Park Avenue                          
## 462                  Box 876-82 Holland Street                          
## 463                        612 Allerton Avenue                          
## 464                        2240 Western Avenue                          
## 465                   800 West Chestnut Street                          
## 466                             West Street Rd                          
## 467                                  Route 146                          
## 468                            570 Taxter Road                 Suite 250
## 469                         North Country Road                          
## 470                      622 West 168th Street                          
## 471                                 Po Box 54o                          
## 472                            100 High Street                          
## 473              89-56 162nd Street, 3rd Floor                          
## 474                          830 Washington St                          
## 475                           280 Henry Street                          
## 476                           270-05 76 Avenue                          
## 477                 1615-1617 Eastchester Road                          
## 478                     1014 Oswegatchie Trail                          
## 479                                115 Park St                          
## 480                  Box 876-82 Holland Street                          
## 481                           184 Fifth Avenue                          
## 482                         1221 Jerome Avenue                          
## 483                        282 Riverside Drive                          
## 484                           4 Harriman Drive                          
## 485                       74 New Turnpike Road                          
## 486                            905 Culver Road                          
## 487                        50 Sheffield Avenue                          
## 488                           550 First Avenue                          
## 489                      622 West 168th Street                          
## 490                         865 Merrick Avenue                 3rd Floor
## 491                         North Country Road                          
## 492                      728 North Main Street                          
## 493                         100 Beekman Street                          
## 494                      191 North Main Street                          
## 495                314 South Manning Boulevard                          
## 496                       200 West 13th Street                          
## 497                         178-50 Linden Blvd                          
## 498                       1574-78 Hillside Ave                          
## 499                   2975 Independence Avenue                          
## 500                    1070 Southern Boulevard                          
## 501                            2 Medical Plaza                          
## 502                              650 Mcclellan                          
## 503                            128 Rutledge St                          
## 504                       1500 Portland Avenue                          
## 505            520 East 70th Street, Level J-0                          
## 506                           61 Delano Street                          
## 507                      111 East 210th Street                          
## 508                           550 First Avenue                          
## 509                            7 Keeler Avenue                          
## 510                     315 South Manning Blvd                          
## 511                             127 S Broadway                          
## 512                   1455 Coney Island Avenue                          
## 513                             4802 Tenth Ave                          
## 514                            100 High Street                          
## 515                         6930 Williams Road                          
## 516                           4604 31st Avenue                          
## 517                    1070 Southern Boulevard                          
## 518                   St Elizabeth Motherhouse                          
## 519                        16 East 16th Street                          
## 520                    1070 Southern Boulevard                          
## 521                           256 Mason Avenue                          
## 522                           8622 Bay Parkway                   Suite 1
## 523                        16 East 16th Street                          
## 524                       5901 Palisade Avenue                          
## 525                         601 Elmwood Avenue                          
## 526                   440 East Harrison Street                          
## 527                            128 Rutledge St                          
## 528                                  Route 146                          
## 529                  666 Broadway  Tenth Floor                          
## 530              89-56 162nd Street, 3rd Floor                          
## 531                          101 Hospital Road                          
## 532                           125 Worth Street                          
## 533                          305 Locust Avenue                          
## 534                     315 South Manning Blvd                          
## 535                        2215 Burdett Avenue                          
## 536                           133 Pratt Street                          
## 537                           2157 Main Street                          
## 538                            100 Park Street                          
## 539                          211 Church Street                          
## 540                         178-50 Linden Blvd                          
## 541                           270-05 76 Avenue                          
## 542                            165 Main Street                          
## 543                     315 South Manning Blvd                          
## 544              89-56 162nd Street, 3rd Floor                          
## 545                       99 East State Street                          
## 546            560 Delaware Avenue, Suuite 400                          
## 547                        16 East 16th Street                          
## 548                           125 Worth Street                          
## 549                    1070 Southern Boulevard                          
## 550       1 South Washington Street, Suite 300                          
## 551                        612 Allerton Avenue                          
## 552                           19 Laurel Avenue                          
## 553                 590 Avenue of the Americas                          
## 554                           1037 Main Street                          
## 555                              10 Hasting Dr                          
## 556                              650 Mcclellan                          
## 557                                 Po Box 54o                          
## 558                      12 Springbrook Avenue                          
## 559                          56-36 Main Street                          
## 560                      370 Bay Ridge Parkway                          
## 561             89th Ave & Van Wyck Expressway                          
## 562                            23 Davis Avenue                          
## 563                              462 Grider St                          
## 564           540 White Plains Road, Suite 300                          
## 565                           207 Foote Avenue                          
## 566                      111 East 210th Street                          
## 567                           172 E. King Road                          
## 568                        300 Community Drive                          
## 569                           535 East 70th St                          
## 570                        65 Ashburton Avenue                          
## 571                       2392 Nostrand Avenue                          
## 572                         156 William Street                 4th floor
## 573                           550 First Avenue                          
## 574                   655 North Liberty Street                          
## 575                         260-01 79th Avenue                          
## 576                          One Norton Avenue                          
## 577                           571 Mcdonald Ave                          
## 578                            905 Culver Road                          
## 579                                 Po Box 222                          
## 580                           184 Fifth Avenue                          
## 581                         475 Hempstead Road                          
## 582                           125 Worth Street                          
## 583                           100 Leroy Avenue                          
## 584                           2697 Main Street                          
## 585                           550 First Avenue                          
## 586               5112 West Taft Road, Suite E                          
## 587                                Atwell Road                          
## 588                              650 Mcclellan                          
## 589                           1037 Main Street                          
## 590                         125 Lattimore Road                          
## 591                         601 Elmwood Avenue                          
## 592                 380 2nd Avenue, Suite 1000                          
## 593                        3117 Webster Avenue                          
## 594                           550 First Avenue                          
## 595                           256 Mason Avenue                          
## 596                       120 East 16th Street                          
## 597              1633 Church Street, Suite 500                          
## 598                                5 Care Lane                          
## 599                           550 First Avenue                          
## 600                        2215 Burdett Avenue                          
## 601                          211 Church Street                          
## 602                                Atwell Road                          
## 603                        3117 Webster Avenue                          
## 604                     315 South Manning Blvd                          
## 605                       196-198 North Street                          
## 606                314 South Manning Boulevard                          
## 607                         178-50 Linden Blvd                          
## 608                         601 Elmwood Avenue                          
## 609                      Lark And Arbor Drives                          
## 610                          830 Washington St                          
## 611                          189 Wheatley Road                          
## 612                    Red Jacket Road Box 339                          
## 613                         Springbrook Avenue                          
## 614                     100 Southern Boulevard                          
## 615                        115 South Quarry St                          
## 616                    10 Nathan Perlman Place                          
## 617                       70 West Burnside Ave                          
## 618                     3525 Baychester Avenue                          
## 619                    15 Mount Ebo Road South                          
## 620                                50 Leroy St                          
## 621                             42 Gurney Lane                          
## 622               Montour & Townsend Line Road                          
## 623                      111 East 210th Street                          
## 624                            100 High Street                          
## 625            445 Hamilton Avenue, 10th floor                          
## 626                       1656 Champlin Avenue                          
## 627                           South Wilbur Ave                          
## 628                     225 Crossways Park Dr.                          
## 629                      612 West Smith Street                          
## 630                         302 Laurens Street                          
## 631                           1037 Main Street                          
## 632                        300 Community Drive                          
## 633                        2215 Burdett Avenue                          
## 634                     315 South Manning Blvd                          
## 635                      1766 East 12th Street                          
## 636                           1776 Clay Avenue                          
## 637                     182-15 Hillside Avenue                          
## 638                         400 Endo Boulevard                          
## 639                           270-05 76 Avenue                          
## 640                       Five Irongate Center                          
## 641                           187 Third Avenue                          
## 642                            905 Culver Road                          
## 643                              650 Mcclellan                          
## 644                           1037 Main Street                          
## 645                           1037 Main Street                          
## 646                            100 High Street                          
## 647                         356 East 88 Street                          
## 648                         91 Tompkins Avenue                          
## 649                                Court House                          
## 650                           112 State Street                          
## 651                           100 Leroy Avenue                          
## 652                             215 Klein Road                          
## 653                        1270 Belmont Avenue                          
## 654                    1 Huntington Quadrangle                          
## 655                            7740 Meigs Road                          
## 656             89th Ave & Van Wyck Expressway                          
## 657                                  Lake Road                          
## 658                           125 Worth Street                          
## 659                            905 Culver Road                          
## 660                        301 Prospect Avenue                          
## 661                75 Jones And Gifford Avenue                          
## 662                             Lansing Street                          
## 663                    225 Como Park Boulevard                          
## 664                         178-50 Linden Blvd                          
## 665                       225 Rabro Drive East                          
## 666                     3111 South Winton Road                          
## 667                    1 Huntington Quadrangle                          
## 668                           600 Linda Avenue                          
## 669                         350 Parrish Street                          
## 670                               256 Broadway                          
## 671                           Lake Colby Drive                          
## 672                      111 East 210th Street                          
## 673                      111 East 210th Street                          
## 674                        135 Franklin Avenue                          
## 675                             275 7th Avenue                          
## 676                    1500 North James Street                          
## 677                       250 West 55th Street                Suite 3300
## 678           Court House 355 West Main Street                          
## 679                         601 Elmwood Avenue                          
## 680                             39 Mariner Way                          
## 681                         967 North Broadway                          
## 682                  222-15 Northern Boulevard                          
## 683                                 Po Box 54o                          
## 684                          26 Bleeker Street                          
## 685                  123-125 West 124th Street                          
## 686                        2445 Oceanside Road                          
## 687                            100 High Street                          
## 688                           550 First Avenue                          
## 689                           61 Delano Street                          
## 690                             81 Park Street                          
## 691                              650 Mcclellan                          
## 692                           280 Henry Street                          
## 693                            65 Sonoma Drive                          
## 694                                Atwell Road                          
## 695                         470 Seaview Avenue                          
## 696                  4646 Nine Mile Point Road                          
## 697                         601 Elmwood Avenue                          
## 698                            100 Park Street                          
## 699                                50 Leroy St                          
## 700                          22-46 31st Street                          
## 701                       41861 State Route 10                          
## 702                        199 Community Drive                          
## 703                        2215 Burdett Avenue                          
## 704                314 South Manning Boulevard                          
## 705                          26 Bleeker Street                          
## 706                           256 Mason Avenue                          
## 707                       40 Robert Pitt Drive                          
## 708                           207 Foote Avenue                          
## 709                                 Po Box 222                          
## 710                    1500 North James Street                          
## 711                    1070 Southern Boulevard                          
## 712                          211 Church Street                          
## 713                           1020 Mary Street                          
## 714                           Bradhurst Avenue                          
## 715                             3 Flynn Avenue                          
## 716                         67 Springvale Road                          
## 717                           4 Harriman Drive                          
## 718                         178-50 Linden Blvd                          
## 719                       70 West Burnside Ave                          
## 720                           2697 Main Street                          
## 721                              650 Mcclellan                          
## 722                            973 East Avenue                          
## 723                              650 Mcclellan                          
## 724                         375 East Bay Drive                          
## 725             505 East 70th Street 2nd Floor                          
## 726                         350 Parrish Street                          
## 727                       70 West Burnside Ave                          
## 728                            4377 Bronx Blvd                          
## 729             Government Plaza - Po Box 1766                          
## 730                           550 First Avenue                          
## 731                           1037 Main Street                          
## 732                South Avenue At Bellevue Dr                          
## 733                         5300 Military Road                          
## 734                                Atwell Road                          
## 735                           25 Hemlock Drive                          
## 736                       100 St. Camillus Way                          
## 737                           125 Worth Street                          
## 738                           550 First Avenue                          
## 739                819-829 South Salina Street                          
## 740                           550 First Avenue                          
## 741                         25 Schoenfeld Blvd                          
## 742                  Heritage Village Route 60                          
## 743                        1270 Belmont Avenue                          
## 744                         178-50 Linden Blvd                          
## 745                          190 Intrepid Lane                          
## 746                            9 Hilaire Drive                          
## 747                       99 East State Street                          
## 748                          171 Kings Highway                          
## 749                      Lark And Arbor Drives                          
## 750                          85 College Street                          
## 751                           1037 Main Street                          
## 752                           550 First Avenue                          
## 753                        301 Prospect Avenue                          
## 754                        2215 Burdett Avenue                          
## 755                             127 S Broadway                          
## 756                         140 Burwell Street                          
## 757                    1873-88 Eastern Parkway                          
## 758                            565 Abbott Road                          
## 759                     142-27 Franklin Avenue                          
## 760                           61 Delano Street                          
## 761                           270-05 76 Avenue                          
## 762                           758 South Avenue                          
## 763                      625 East Fordham Road                          
## 764                          26 Bleeker Street                          
## 765                     315 South Manning Blvd                          
## 766                     County Office Building                          
## 767                               621 Tenth St                          
## 768                   32-11 Francis Lewis Blvd                          
## 769                         177258 58th Street                          
## 770                            391 Pelham Road                          
## 771                            565 Abbott Road                          
## 772                           6209 16th Avenue                          
## 773                        1270 Belmont Avenue                          
## 774                            100 High Street                          
## 775                        2570 U. S. Route 92                          
## 776                     179 North Broad Street                          
## 777                           256 Mason Avenue                          
## 778                      1285 Trumansburg Road                          
## 779                            100 Ross Street                          
## 780                      111 East 210th Street                          
## 781                           535 East 70th St                          
## 782                      111 East 210th Street                          
## 783                               Elsie Street                          
## 784                           374 Stockholm St                          
## 785                      111 East 210th Street                          
## 786                       160 East Main Street                          
## 787                           125 Worth Street                          
## 788                       105 West Sheedy Road                 Suite 225
## 789                         601 Elmwood Avenue                          
## 790                           550 First Avenue                          
## 791                               393 Front St                          
## 792                         275 Madison Avenue                          
## 793                            101 Main Street                          
## 794                      111 East 210th Street                          
## 795                           270-05 76 Avenue                          
## 796                  Box 876-82 Holland Street                          
## 797                         71 Prospect Avenue                          
## 798                  4770 White Plains Road #3                          
## 799                                  Route 146                          
## 800                        700 Boisseau Avenue                          
## 801                        224 Brookville Road                          
## 802                                50 Leroy St                          
## 803                      111 East 210th Street                          
## 804                             1360 Route 112                          
## 805                            21 Wilkins Road                          
## 806                     140 Beach 114th Street                          
## 807                      1727 Amsterdam Avenue                          
## 808                         601 Elmwood Avenue                          
## 809                           1037 Main Street                          
## 810                 1615-1617 Eastchester Road                          
## 811                         601 Elmwood Avenue                          
## 812                           9 Reservoir Road                          
## 813                            740 East Avenue                          
## 814                      1075 Central Park Ave                          
## 815                           1037 Main Street                          
## 816             505 East 70th Street 2nd Floor                          
## 817                            100 Park Street                          
## 818                          One Norton Avenue                          
## 819                            565 Abbott Road                          
## 820              Sullivan Co Government Center                          
## 821              1633 Church Street, Suite 500                          
## 822                           270-05 76 Avenue                          
## 823                       135 Linden Boulevard                          
## 824                           270-05 76 Avenue                          
## 825                   700 East Brighton Avenue                          
## 826                           380 Henry Street                          
## 827                            490 Pelham Road                          
## 828            305 West 44th Street, 3rd Floor                          
## 829                           1037 Main Street                          
## 830                            140 58th Street                          
## 831                         178-50 Linden Blvd                          
## 832                     315 South Manning Blvd                          
## 833                      111 East 210th Street                          
## 834                          2253 Third Avenue                          
## 835                           1776 Clay Avenue                          
## 836                               319 Broadway                          
## 837                           270-05 76 Avenue                          
## 838                      70 North Third Street                          
## 839                                  Route 146                          
## 840                         319 Central Avenue                          
## 841                         178-50 Linden Blvd                          
## 842                            230 Hilton Ave.                          
## 843                                Atwell Road                          
## 844                            1520 Maxon Road                          
## 845                            905 Culver Road                          
## 846                819-829 South Salina Street                          
## 847                 2649 South Road, Suite 220               Lower Level
## 848                                Atwell Road                          
## 849                       200 West 58th Street                          
## 850                          770 East 176th St                          
## 851                          12657 Seneca Road                          
## 852                            143-10 20th Ave                          
## 853                        New Scotland Avenue                          
## 854                        1500 Brecknock Road                          
## 855                         1609 E Main Street                          
## 856                    1 Huntington Quadrangle                          
## 857                              650 Mcclellan                          
## 858                  501 Theodore Fremd Avenue                          
## 859                       1656 Champlin Avenue                          
## 860                             127 S Broadway                          
## 861                           280 Henry Street                          
## 862                      111 East 210th Street                          
## 863                           4520 Ransom Road                          
## 864                 1615-1617 Eastchester Road                          
## 865                 1615-1617 Eastchester Road                          
## 866                                1 Bridge St                          
## 867                    1070 Southern Boulevard                          
## 868               128 Phoenix Mills Cross Road                          
## 869                           125 Worth Street                          
## 870                         323 Genesee Street                          
## 871                      700 E Brighton Avenue                          
## 872                       110 West 97th Street                          
## 873                819-829 South Salina Street                          
## 874                                  Route 146                          
## 875                  Wyoming County Courthouse                          
## 876                          26 Bleeker Street                          
## 877                           550 First Avenue                          
## 878                             Bradley Avenue                          
## 879                          211 Church Street                          
## 880                        75 Crystal Run Road                          
## 881                  Wyoming County Courthouse                          
## 882                            100 Park Street                          
## 883                       189 East Main Street                          
## 884                      111 East 210th Street                          
## 885                  1400 Pelham Parkway South                          
## 886                            191 Bradley Ave                          
## 887                         555 Prospect Place                          
## 888                        612 Allerton Avenue                          
## 889                          211 Church Street                          
## 890                       810 St. Marks Avenue                          
## 891                           46 East Broadway                          
## 892                         601 Elmwood Avenue                          
## 893                           125 Worth Street                          
## 894                           2157 Main Street                          
## 895                    4295 Hempstead Turnpike                          
## 896                          26 Bleeker Street                          
## 897                              462 Grider St                          
## 898                      3035 West 24th Street                          
## 899                           256 Mason Avenue                          
## 900                   5700 West Genesee Street                          
## 901                          462 Grider Street                          
## 902                           2697 Main Street                          
## 903                                1 Bridge St                          
## 904                            515 Main Street                          
## 905                       2-8 West Main Street                          
## 906             461 John James Audubon Parkway                          
## 907                           550 First Avenue                          
## 908                            128 Rutledge St                          
## 909                        300 Community Drive                          
## 910                      1601 Bronxdale Avenue                          
## 911                             45 Reade Place                          
## 912                           125 Worth Street                          
## 913                          250 Church Street                          
## 914                        612 Allerton Avenue                          
## 915              89-56 162nd Street, 3rd Floor                          
## 916                                 Po Box 222                          
## 917                    1070 Southern Boulevard                          
## 918                       444 Hopkinson Avenue                          
## 919                                Atwell Road                          
## 920                         71 Prospect Avenue                          
## 921                    10 Nathan Perlman Place                          
## 922                           107 W 4th Street                          
## 923                           134 Homer Avenue                          
## 924                           125 Worth Street                          
## 925                        2799 Sheridan Drive                          
## 926                          3356 Perry Avenue                          
## 927                           550 First Avenue                          
## 928                           10 Munson Street                          
## 929                          184 Barton Street                          
## 930                    111 Clara Barton Street                          
## 931                           550 First Avenue                          
## 932                             127 S Broadway                          
## 933                                Atwell Road                          
## 934                            570 Taxter Road                 Suite 250
## 935                        2215 Burdett Avenue                          
## 936                           125 Worth Street                          
## 937                              6620 Fly Road                          
## 938            16105 Horace Harding Expressway                          
## 939                            820 Park Avenue                          
## 940                       46 Stauderman Avenue                          
## 941                        169 Riverside Drive                          
## 942                 848 Route 50, P.O. Box 419                          
## 943                      1285 Trumansburg Road                          
## 944                       1450 Portland Avenue                          
## 945                   One Gustave L Levy Place                          
## 946                         350 Parrish Street                          
## 947  100 Woods Road, Taylor Pavilion 2nd Floor                          
## 948                       420 Lafayette Street                          
## 949                        15 West 65th Street                          
## 950                           535 East 70th St                          
## 951                         100 Beekman Street                          
## 952                            521 East Avenue                          
## 953                        New Scotland Avenue                          
## 954                          3674 Third Avenue                          
## 955                            1 Cisney Avenue                          
## 956                          620 Foster Avenue                          
## 957                    1 Huntington Quadrangle                          
## 958                     315 South Manning Blvd                          
## 959                        311 W. 231st Street                          
## 960                      1727 Amsterdam Avenue                          
## 961                      728 North Main Street                          
## 962                         139-66 35th Avenue                          
## 963                           4714 16th Avenue                          
## 964                       120 East 16th Street                          
## 965                         220 Sherman Street                          
## 966                          739 Irving Avenue                          
## 967             Davis Avenue At East Post Road                          
## 968                                7 Route 25A                          
## 969                                 602 Hudson                          
## 970                            100 High Street                          
## 971                             40 Park Street                          
## 972                               127 North St                          
## 973                            515 Main Street                          
## 974                              650 Mcclellan                          
## 975                         555 Prospect Place                          
## 976                         178-50 Linden Blvd                          
## 977                             91 Main Street                          
## 978                          111 Westfall Road                          
## 979  100 Woods Road, Taylor Pavilion 2nd Floor                          
## 980                             121 Dekalb Ave                          
## 981                           400 East Main St                          
## 982                           550 First Avenue                          
## 983                        2882 W. 15th Street               Lower Level
## 984                            11 Avena Avenue                          
## 985                       166 East Main Street                          
## 986                       160 East Main Street                          
## 987                            159 Main Street                          
## 988                         3007 Farragut Road                          
## 989                                 Po Box 54o                          
## 990                        1118 Charles Street                          
## 991                        16 East 16th Street                          
## 992                 979 Cross Bronx Expressway                          
## 993                       110 West 97th Street                          
## 994                           Lake Colby Drive                          
## 995                      440 Mamaroneck Avenue                          
## 996                819-829 South Salina Street                          
## 997                      785 Mamaroneck Avenue                          
## 998                             Box 639, Rt 55                          
## 999                           550 First Avenue                          
## 1000                          550 First Avenue                          
## 1001                       300 Community Drive                          
## 1002                          6010 Bay Parkway                          
## 1003                       169 Riverside Drive                          
## 1004                        2806 George Street                          
## 1005                 2425 Clinton Avenue South                          
## 1006                 297 North Ballston Avenue                          
## 1007                          112 State Street                          
## 1008                         26 Bleeker Street                          
## 1009                          427 Guy Park Ave                          
## 1010                     785 Mamaroneck Avenue                          
## 1011                    County Office Building                          
## 1012                           500 Ohio Street                          
## 1013                1615-1617 Eastchester Road                          
## 1014                            701 N Broadway                          
## 1015                           905 Culver Road                          
## 1016                           100 High Street                          
## 1017             Sullivan Co Government Center                          
## 1018                          270-05 76 Avenue                          
## 1019                       131 Lawrence Street                          
## 1020                        319 Central Avenue                          
## 1021                    315 South Manning Blvd                          
## 1022                         101 Hospital Road                          
## 1023                            4802 Tenth Ave                          
## 1024                       471 Montauk Highway                          
## 1025                            1639 52 Street                          
## 1026                1615-1617 Eastchester Road                          
## 1027                           50 Maine Avenue                          
## 1028                     1229 Trumansburg Road                          
## 1029                     191 North Main Street                          
## 1030                      731 Pre-Emptton Road                          
## 1031                        1413 Fulton Street                          
## 1032                1615-1617 Eastchester Road                          
## 1033                       2445 Oceanside Road                          
## 1034                             6585 Broadway                          
## 1035                          Rd 2 Gurney Lane                          
## 1036                     120 West 106th Street                          
## 1037                       16 East 16th Street                          
## 1038                                 Route 146                          
## 1039                   1070 Southern Boulevard                          
## 1040                                     Rt 37                          
## 1041                           676 Pelham Road                          
## 1042                       New Scotland Avenue                          
## 1043                       Harry-Howard Avenue                          
## 1044                            Bradley Avenue                          
## 1045                        331 Russell Street                          
## 1046                        801 W 190th Street                          
## 1047                             650 Mcclellan                          
## 1048                          550 First Avenue                          
## 1049                       300 Community Drive                          
## 1050                     630 West 168th Street                          
## 1051             Sullivan Co Government Center                          
## 1052                           355 Bard Avenue                          
## 1053                         184 Barton Street                          
## 1054                            West Street Rd                          
## 1055                         250 Church Street                          
## 1056                          535 East 70th St                          
## 1057                           500 Ohio Street                          
## 1058                       22 Van Burean Drive                          
## 1059                            45 Reade Place                          
## 1060                        865 Merrick Avenue                 3rd Floor
## 1061                           128 Rutledge St                          
## 1062                     110 West Sixth Street                          
## 1063                          550 First Avenue                          
## 1064                      1305 Nottingham Road                          
## 1065                         111 Westfall Road                          
## 1066                           255 Main Street                          
## 1067                           699 92nd Street                          
## 1068                              396 Broadway                          
## 1069                           905 Culver Road                          
## 1070                       2215 Burdett Avenue                          
## 1071                      1000 Montauk Highway                          
## 1072                     622 West 168th Street                          
## 1073                                Po Box 54o                          
## 1074                               Atwell Road                          
## 1075                            45 Reade Place                          
## 1076                        178-50 Linden Blvd                          
## 1077                     700 E Brighton Avenue                          
## 1078                             85 Metro Park                          
## 1079                         50 E North Street                          
## 1080                        71 Prospect Avenue                          
## 1081                            790 Ridge Road                          
## 1082             89-56 162nd Street, 3rd Floor                          
## 1083                    315 South Manning Blvd                          
## 1084                            163 Union Road                          
## 1085                1720 Whitestone Expressway                 Suite 500
## 1086                               Atwell Road                          
## 1087                        967 North Broadway                          
## 1088           32 East 57th Street, 10th floor                          
## 1089                         1432 Fifth Avenue                          
## 1090                        223 J B Wise Place                          
## 1091                            Lansing Street                          
## 1092                       1555 Long Pond Road                          
## 1093                          125 Worth Street                          
## 1094                    690 West German Street                          
## 1095         45th Avenue And Parsons Boulevard                          
## 1096                       16 East 16th Street                          
## 1097                             650 Mcclellan                          
## 1098                       15 West 65th Street                          
## 1099            67-10 Rockaway Beach Boulevard                          
## 1100                               Atwell Road                          
## 1101                            4802 Tenth Ave                          
## 1102                        100 East 77 Street                          
## 1103                          1275 York Avenue                          
## 1104         Middle Settlement Road Po Box 144                          
## 1105           520 East 70th Street, Level J-0                          
## 1106                       411 Canisteo Street                          
## 1107                               Atwell Road                          
## 1108                   36-17 Parsons Boulevard                          
## 1109                        601 Elmwood Avenue                          
## 1110                      468 Lafayette Avenue                          
## 1111                        71 Prospect Avenue                          
## 1112                  1050 West Genesee Street                          
## 1113                    17 Narragansett Avenue                          
## 1114                        220 Sherman Street                          
## 1115            89th Ave & Van Wyck Expressway                          
## 1116                      225 Rabro Drive East                          
## 1117                          184 Fifth Avenue                          
## 1118                          125 Worth Street                          
## 1119                          Graymoor Route 9                          
## 1120                         1221 East 14th St                          
## 1121                          125 Worth Street                          
## 1122                     625 East Fordham Road                          
## 1123                     421 W Columbia Street                          
## 1124               69-70 Grand Central Parkway                          
## 1125                           100 Park Street                          
## 1126                            2183 Ocean Ave                          
## 1127               South Avenue At Bellevue Dr                          
## 1128                          1037 Main Street                          
## 1129                         56-36 Main Street                          
## 1130                          270-05 76 Avenue                          
## 1131                  One Gustave L Levy Place                          
## 1132                           100 High Street                          
## 1133                    4770 White Plains Road                          
## 1134                   10 Nathan Perlman Place                          
## 1135             1633 Church Street, Suite 500                          
## 1136                             650 Mcclellan                          
## 1137                           905 Culver Road                          
## 1138                      99 East State Street                          
## 1139                       1555 Long Pond Road                          
## 1140                  One Gustave L Levy Place                          
## 1141                         920 Winter Street                          
## 1142                          270-05 76 Avenue                          
## 1143                           521 East Avenue                          
## 1144                            645 W Broadway                          
## 1145                          256 Mason Avenue                          
## 1146                          256 Mason Avenue                          
## 1147                   1 Hillcrest Ctr Ste 225                          
## 1148                          427 Guy Park Ave                          
## 1149                          107 W 4th Street                          
## 1150                       169 Riverside Drive                          
## 1151               819-829 South Salina Street                          
## 1152                        325 Cedarwood Hall                          
## 1153            Government Plaza - Po Box 1766                          
## 1154            560 Delaware Avenue, Suite 400                          
## 1155                          185 Old Broadway                          
## 1156                            One Kendal Way                          
## 1157                               115 Park St                          
## 1158                           515 Main Street                          
## 1159                   700 Island Cottage Road                          
## 1160                       301 Prospect Avenue                          
## 1161                   266 Broadway, Suite 502                          
## 1162                       1076 E. 23rd Street                          
## 1163                          125 Worth Street                          
## 1164              128 Phoenix Mills Cross Road                          
## 1165                      225 Rabro Drive East                          
## 1166                        100 Beekman Street                          
## 1167                 378 Syosset-Woodbury Road                          
## 1168                         1 Terrace Heights                          
## 1169                      240 Old Country Road                          
## 1170                            West Street Rd                          
## 1171                     111 East 210th Street                          
## 1172                           570 Taxter Road                 Suite 250
## 1173                        601 Elmwood Avenue                          
## 1174            Driving Park Avenue    Box 111                          
## 1175              424 Church Street Suite 1900                          
## 1176                       2 Murray Hill Drive                          
## 1177                           1600 7th Avenue                          
## 1178                    585 Schenectady Avenue                          
## 1179                          550 First Avenue                          
## 1180            Davis Avenue At East Post Road                          
## 1181                          125 Worth Street                          
## 1182                      1000 Montauk Highway                          
## 1183                           905 Culver Road                          
## 1184                       2570 U. S. Route 92                          
## 1185                     8101 State Highway 68                          
## 1186                       80 West Main Street                          
## 1187                        350 Parrish Street                          
## 1188                   1070 Southern Boulevard                          
## 1189                         574 Fulton Street                          
## 1190                          270-05 76 Avenue                          
## 1191                       428 State Route 146                          
## 1192                                 Route 146                          
## 1193                         105 Mary's Avenue                          
## 1194                      70 West Burnside Ave                          
## 1195                          101 South Street                          
## 1196                  1818 Como Park Boulevard                31st Floor
## 1197            150 Lafayette Street-6th Floor                          
## 1198                         26 Bleeker Street                          
## 1199                          184 Fifth Avenue                          
## 1200                           214 King Street                          
## 1201                     353 Beach 48th Street                          
## 1202                        100 Beekman Street                          
## 1203                           40 Autumn Drive                          
## 1204                    Box 1000 Tilden Avenue                          
## 1205                          550 First Avenue                          
## 1206                          184 Fifth Avenue                          
## 1207                       192 East Shore Road                          
## 1208                        275 Madison Avenue                          
## 1209                         1432 Fifth Avenue                          
## 1210                       96 Lexington Avenue                          
## 1211                      159-163 Front Street                          
## 1212                       314 East 104 Street                          
## 1213                       15 West 65th Street                          
## 1214                        1276 Fulton Avenue                          
## 1215                          550 First Avenue                          
## 1216                         4422 Third Avenue                          
## 1217                       16 East 16th Street                          
## 1218                       500 Cummings Center                Suite 6550
## 1219                        218 Liberty Street                          
## 1220                    195-44 Woodhull Avenue                          
## 1221                       One Brookdale Plaza                          
## 1222                            Lansing Street                          
## 1223                        100 East 77 Street                          
## 1224                          550 First Avenue                          
## 1225                     622 West 168th Street                          
## 1226              1 Hill Crest Ctr - Suite 325                          
## 1227                  One Gustave L Levy Place                          
## 1228                          550 First Avenue                          
## 1229                       50 Sheffield Avenue                          
## 1230                      444 Hopkinson Avenue                          
## 1231                           905 Culver Road                          
## 1232                         434 Monroe Avenue                          
## 1233                            135 North Road                          
## 1234             1633 Church Street, Suite 500                          
## 1235                        178-50 Linden Blvd                          
## 1236                      340 Arnett Boulevard                          
## 1237                         56-36 Main Street                          
## 1238                        178-50 Linden Blvd                          
## 1239                          100 Daniel Drive                          
## 1240                       350 Beach 54 Street                          
## 1241                     191 North Main Street                          
## 1242                       1509 Central Avenue                          
## 1243                          1037 Main Street                          
## 1244                       1555 Long Pond Road                          
## 1245                           100 Park Street                          
## 1246                       New Scotland Avenue                          
## 1247                         1 Hillcrest Drive                 Suite 225
## 1248                       1555 Long Pond Road                          
## 1249                      70 West Burnside Ave                          
## 1250                          460 Bayview Ave.                          
## 1251                1615-1617 Eastchester Road                          
## 1252                        323 Genesee Street                          
## 1253                           521 East Avenue                          
## 1254                       2570 U. S. Route 92                          
## 1255                            600 Roe Avenue                          
## 1256                         One Norton Avenue                          
## 1257                        319 Central Avenue                          
## 1258                     34 South Bedford Road                          
## 1259                  1740-70 Eastchester Road                          
## 1260                           100 High Street                          
## 1261                          256 Mason Avenue                          
## 1262                     111 East 210th Street                          
## 1263                          270-05 76 Avenue                          
## 1264                              396 Broadway                          
## 1265                                Po Box 54o                          
## 1266                          61 Delano Street                          
## 1267                             85 Metro Park                          
## 1268                      196 198 North Street                          
## 1269                      110 West 97th Street                          
## 1270                           11 Avena Avenue                          
## 1271                         3674 Third Avenue                          
## 1272                          550 First Avenue                          
## 1273                               50 Leroy St                          
## 1274                1500 Route 112, Building 5                          
## 1275                          317 North Street                          
## 1276                      110 West 97th Street                          
## 1277                         4422 Third Avenue                          
## 1278                              127 North St                          
## 1279                         Stoneleigh Avenue                          
## 1280                      1656 Champlin Avenue                          
## 1281                           165 Main Street                          
## 1282                             650 Mcclellan                          
## 1283                                  Route 28                          
## 1284                          550 First Avenue                          
## 1285                   1800 Butterfield Avenue                          
## 1286                           155 Lawn Avenue                          
## 1287                         111 Westfall Road                          
## 1288                      1656 Champlin Avenue                          
## 1289                979 Cross Bronx Expressway                          
## 1290                          758 South Avenue                          
## 1291                          550 First Avenue                          
## 1292                     946 East 211th Street                          
## 1293                        350 Parrish Street                          
## 1294                       37 West 26th Street                          
## 1295                    61-11 Queens Boulevard                          
## 1296                     622 West 168th Street                          
## 1297                         601 Seneca Street                          
## 1298                        178-50 Linden Blvd                          
## 1299                        Empire State Plaza  Corning Tower  Room 1683
## 1300             1633 Church Street, Suite 500                          
## 1301                        967 North Broadway                          
## 1302                        122 East 23 Street                          
## 1303                              615 Avenue C                          
## 1304                               510 5th Ave                          
## 1305                        144-61 38th Avenue                          
## 1306                       6323 Seventh Avenue                          
## 1307                        71 Prospect Avenue                          
## 1308                           100 High Street                          
## 1309                         830 Washington St                          
## 1310                          270-05 76 Avenue                          
## 1311              Montour & Townsend Line Road                          
## 1312                1615-1617 Eastchester Road                          
## 1313                           37 Dietz Street                          
## 1314                       2215 Burdett Avenue                          
## 1315                       80 West Main Street                          
## 1316                        78 Birchwood Drive                          
## 1317                     670 White Plains Road                 Suite 213
## 1318                       3117 Webster Avenue                          
## 1319                             650 Mcclellan                          
## 1320                       2445 Oceanside Road                          
## 1321                          256 Mason Avenue                          
## 1322                            4802 Tenth Ave                          
## 1323                     622 West 168th Street                          
## 1324                        601 Elmwood Avenue                          
## 1325                           101 Main Street                          
## 1326                     111 East 210th Street                          
## 1327                                Po Box 222                          
## 1328                       One Brookdale Plaza                          
## 1329        1025 Westchester Avenue, Suite 200                          
## 1330                          2157 Main Street                          
## 1331                        178-50 Linden Blvd                          
## 1332                         386 Violet Avenue                          
## 1333                          150 Broad Street                          
## 1334                     111 East 210th Street                          
## 1335                           465 Brickman Rd                          
## 1336                          125 Worth Street                          
## 1337            Driving Park Avenue    Box 111                          
## 1338                        223 J B Wise Place                          
## 1339                            2 Coulter Road                          
## 1340                          184 Fifth Avenue                          
## 1341                      70 West Burnside Ave                          
## 1342                          535 East 70th St                          
## 1343                            701 N Broadway                          
## 1344                      Upper Tibbets Avenue                          
## 1345                      99 East State Street                          
## 1346                      255 Lafayette Avenue                          
## 1347                               Park Street                          
## 1348                           231 Main Street                          
## 1349                          70 Bunner Street                          
## 1350                       150 Riverside Drive                          
## 1351                         26 Bleeker Street                          
## 1352                      356 West 18th Street                          
## 1353                  1000 East Genesee Street                          
## 1354                           550 Park Avenue                          
## 1355                   1500 North James Street                          
## 1356                         1305 Utica Avenue                          
## 1357                   260-19 Nassau Boulevard                          
## 1358                      1656 Champlin Avenue                          
## 1359                        127 South Broadway                          
## 1360                          125 Worth Street                          
## 1361                         223 Oneida Street                          
## 1362                          571 Mcdonald Ave                          
## 1363                       301 Prospect Avenue                          
## 1364                         26 Bleeker Street                          
## 1365                             35 Colvin Ave                          
## 1366           520 East 70th Street, Level J-0                          
## 1367                        121 Franklin Place                          
## 1368                          989 Blossom Road                          
## 1369                             1 Titus Place                          
## 1370                          270-05 76 Avenue                          
## 1371                   1911-1921 Jerome Avenue                          
## 1372                        140 Burwell Street                          
## 1373                       2215 Burdett Avenue                          
## 1374                      345 East 24th Street                          
## 1375                      99 East State Street                          
## 1376                          1275 York Avenue                          
## 1377                   37 North Chemung Street                          
## 1378                               Court House                          
## 1379                          184 Fifth Avenue                          
## 1380                       169 Riverside Drive                          
## 1381                         250 Church Street                          
## 1382                   10 Nathan Perlman Place                          
## 1383                          270-05 76 Avenue                          
## 1384                      2555 Nostrand Avenue                          
## 1385                             32 Cedar Lane                          
## 1386                   10 Nathan Perlman Place                          
## 1387                       300 Community Drive                          
## 1388                      240 Old Country Road                          
## 1389            89th Ave & Van Wyck Expressway                          
## 1390                         211 Church Street                          
## 1391                       2215 Burdett Avenue                          
## 1392                          270-05 76 Avenue                          
## 1393                               Court House                          
## 1394               444 Merrick Road, 4th Floor                          
## 1395                        1210 Second Avenue                          
## 1396                1615-1617 Eastchester Road                          
## 1397                      100 Castleton Avenue                          
## 1398               South Avenue At Bellevue Dr                          
## 1399                       169 Riverside Drive                          
## 1400                           570 Taxter Road                 Suite 250
## 1401             165 Main Street, P.O. Box 423                          
## 1402                         211 Church Street                          
## 1403                               Atwell Road                          
## 1404                     111 East 210th Street                          
## 1405                          550 First Avenue                          
## 1406                       1270 Belmont Avenue                          
## 1407                          256 Mason Avenue                          
## 1408                               Atwell Road                          
## 1409                      70 West Burnside Ave                          
## 1410                       2215 Burdett Avenue                          
## 1411                        122 East 23 Street                          
## 1412                        71 Prospect Avenue                          
## 1413                           128 Rutledge St                          
## 1414                     111 East 210th Street                          
## 1415                   1500 North James Street                          
## 1416                                Po Box 222                          
## 1417                     1072 Havemeyer Avenue                          
## 1418                   10 Nathan Perlman Place                          
## 1419                     111 East 210th Street                          
## 1420                           11 Avena Avenue                          
## 1421                       2215 Burdett Avenue                          
## 1422                          550 First Avenue                          
## 1423                      1656 Champlin Avenue                          
## 1424             165 Main Street, P.O. Box 423                          
## 1425                          550 First Avenue                          
## 1426                     185 Old Military Road                          
## 1427                         418 North Main St                          
## 1428                   65 Broadway, 21st Floor                          
## 1429                         Stoneleigh Avenue                          
## 1430                        178-50 Linden Blvd                          
## 1431                       260 Vineyard Avenue                          
## 1432                           905 Culver Road                          
## 1433                        601 Elmwood Avenue                          
## 1434                     111 East 210th Street                          
## 1435                       2570 U. S. Route 92                          
## 1436                             650 Mcclellan                          
## 1437                        601 Elmwood Avenue                          
## 1438                     111 East 210th Street                          
## 1439                          2697 Main Street                          
## 1440                           905 Culver Road                          
## 1441                              1300 Roanoke                          
## 1442                        104 Paddock Street                          
## 1443                        356 East 88 Street                          
## 1444             1367 Washington Ave Suite 401                          
## 1445                         2840 Knapp Street                          
## 1446                            127 S Broadway                          
## 1447                       2215 Burdett Avenue                          
## 1448                       169 Riverside Drive                          
## 1449                           570 Taxter Road                 Suite 250
## 1450                     Lark And Arbor Drives                          
## 1451                          125 Worth Street                          
## 1452                         47 Sickles Street                          
## 1453                     111 East 210th Street                          
## 1454                   17-11 Brookhaven Avenue                          
## 1455                               Court House                          
## 1456                           905 Culver Road                          
## 1457                    315 South Manning Blvd                          
## 1458                             650 Mcclellan                          
## 1459                           521 East Avenue                          
## 1460                               Court House                          
## 1461             89-56 162nd Street, 3rd Floor                          
## 1462                            701 N Broadway                          
## 1463                            600 Roe Avenue                          
## 1464                    Rd # 4 East River Road                          
## 1465                          1772 58th Street                          
## 1466                       10 Claremont Avenue                          
## 1467                          2157 Main Street                          
## 1468                         830 Washington St                          
## 1469                           1 Cisney Avenue                          
## 1470                           165 Main Street                          
## 1471                      2555 Nostrand Avenue                          
## 1472                       2215 Burdett Avenue                          
## 1473                       715 Falconer Street                          
## 1474                            20 Manor Drive                          
## 1475                           155 Lawn Avenue                          
## 1476                     1601 Bronxdale Avenue                          
## 1477                      110 West 97th Street                          
## 1478                   1070 Southern Boulevard                          
## 1479                        1980 Crompond Road                          
## 1480                          400 East Main St                          
## 1481                       1086 North Broadway                          
## 1482                      224 East Main Street                          
## 1483                        120 Meisner Avenue                          
## 1484                       169 Riverside Drive                          
## 1485                    1120 South Main Street                          
## 1486                     3550 Lexington Avenue                          
## 1487                      200 West 58th Street                          
## 1488                         620 Foster Avenue                          
## 1489                     25 Bialystroker Place                          
## 1490                       3117 Webster Avenue                          
## 1491                          225 Maple Avenue                          
## 1492                       300 Community Drive                          
## 1493                       80 West Main Street                          
## 1494                              621 Tenth St                          
## 1495                        178-50 Linden Blvd                          
## 1496                       1325 Brentwood Road                          
## 1497                          1037 Main Street                          
## 1498                      225 Rabro Drive East                          
## 1499                     110 West Sixth Street                          
## 1500                        601 Elmwood Avenue                          
## 1501                             462 Grider St                          
## 1502                     111 East 210th Street                          
## 1503                          107 W 4th Street                          
## 1504                4600 Southwood Hghts Drive                          
## 1505                        Springbrook Avenue                          
## 1506                                20 Wood Ct                          
## 1507                               Court House                          
## 1508                           10 Berkshire Rd                          
## 1509                          141 Dosoris Lane                          
## 1510             1633 Church Street, Suite 500                          
## 1511                       1555 Long Pond Road                          
## 1512                      70 West Burnside Ave                          
## 1513                        356 East 88 Street                          
## 1514                        601 Elmwood Avenue                          
## 1515                           1520 Maxon Road                          
## 1516                     111 East 210th Street                          
## 1517                             1 Titus Place                          
## 1518                          550 First Avenue                          
## 1519                          50 Greene Avenue                          
## 1520                1615-1617 Eastchester Road                          
## 1521                        1276 Fulton Avenue                          
## 1522 100 Woods Road, Taylor Pavilion 2nd Floor                          
## 1523                         385 Seneca Avenue                          
## 1524                        2021 Winton Road S                          
## 1525                1615-1617 Eastchester Road                          
## 1526                            45 Reade Place                          
## 1527                     111 East 210th Street                          
## 1528                        63 Oakcrest Avenue                          
## 1529                      1240 Broadcast Plaza                          
## 1530                          1010 Main Street                          
## 1531                   1070 Southern Boulevard                          
## 1532 100 Woods Road, Taylor Pavilion 2nd Floor                          
## 1533                      1335 Portland Avenue                          
## 1534                     111 East 210th Street                          
## 1535                       16 East 16th Street                          
## 1536                          400 East Main St                          
## 1537                1615-1617 Eastchester Road                          
## 1538                           905 Culver Road                          
## 1539                      1205 Delaware Avenue                          
## 1540                        601 Elmwood Avenue                          
## 1541                        601 Suffolk Avenue                          
## 1542                    315 South Manning Blvd                          
## 1543                        100 Beekman Street                          
## 1544                           1 Cisney Avenue                          
## 1545                         105-12 101 Avenue                          
## 1546                         100 Miller Street                          
## 1547                     622 West 168th Street                          
## 1548                          427 Guy Park Ave                          
## 1549                       16 East 16th Street                          
## 1550                             650 Mcclellan                          
## 1551                              1300 Roanoke                          
## 1552                          427 Guy Park Ave                          
## 1553                               Park Street                          
## 1554                       2 Murray Hill Drive                          
## 1555                          550 First Avenue                          
## 1556                       495 Pinehurst Court                          
## 1557                       68-60 Austin Street                          
## 1558                     3845 Carpenter Avenue                          
## 1559                        967 North Broadway                          
## 1560                  One Gustave L Levy Place                          
## 1561                          2861 Harlem Road                          
## 1562                     670 White Plains Road                 Suite 213
## 1563                          125 Worth Street                          
## 1564                        2640 Pitkin Avenue                          
## 1565                       346 Delaware Avenue                          
## 1566                        178-50 Linden Blvd                          
## 1567                  One Gustave L Levy Place                          
## 1568                  134 Great East Neck Road                          
## 1569                        223 J B Wise Place                          
## 1570                               Atwell Road                          
## 1571               South Avenue At Bellevue Dr                          
## 1572                         535 Second Avenue                          
## 1573                      5901 Palisade Avenue                          
## 1574                          550 First Avenue                          
## 1575            Davis Avenue At East Post Road                          
## 1576                       119-19 Graham Court                          
## 1577                      1000 Montauk Highway                          
## 1578                         26 Bleeker Street                          
## 1579                        111-29 Queens Blvd                          
## 1580                   1070 Southern Boulevard                          
## 1581                           905 Culver Road                          
## 1582                                Po Box 222                          
## 1583                           270 Park Avenue                          
## 1584                              70-05 35 Ave                          
## 1585                       1555 Long Pond Road                          
## 1586                        178-50 Linden Blvd                          
## 1587                      196 198 North Street                          
## 1588                                 Route 146                          
## 1589                                Po Box 54o                          
## 1590                              621 Tenth St                          
## 1591                         1127 Wehrle Drive                  Suite 50
## 1592                           101 Main Street                          
## 1593                      460 West 34th Street                          
## 1594                           500 Main Street                          
## 1595                    315 South Manning Blvd                          
## 1596                   1070 Southern Boulevard                          
## 1597                   1 Huntington Quadrangle                          
## 1598                       300 Dorrance Avenue                          
## 1599                       2445 Oceanside Road                          
## 1600                         845 Palmer Avenue                          
## 1601                     111 East 210th Street                          
## 1602                         211 Church Street                          
## 1603                          141 Dosoris Lane                          
## 1604                      70 West Burnside Ave                          
## 1605                    315 South Manning Blvd                          
## 1606                          6209 16th Avenue                          
## 1607                          270-05 76 Avenue                          
## 1608                           550 Forest Road                          
## 1609                       One Brookdale Plaza                          
## 1610                          1037 Main Street                          
## 1611                         2780 Third Avenue                          
## 1612                      345 East 24th Street                          
## 1613                  2678 Kingsbridge Terrace                          
## 1614                             650 Mcclellan                          
## 1615                      225 Rabro Drive East                          
## 1616                  One Gustave L Levy Place                          
## 1617                         211 Church Street                          
## 1618                             85 Metro Park                          
## 1619                        319 Upper Broadway                          
## 1620                     622 West 168th Street                          
## 1621                          700 Craig Street                          
## 1622                         111 Westfall Road                          
## 1623                       2300 Cropsey Avenue                          
## 1624                   107 Business Park Drive                          
## 1625                       700 Michigan Avenue                          
## 1626                                  Route 28                          
## 1627                        178-50 Linden Blvd                          
## 1628                     111 East 210th Street                          
## 1629                            1535 47 Street                          
## 1630                             650 Mcclellan                          
## 1631                           100 High Street                          
## 1632                   1070 Southern Boulevard                          
## 1633                      70 West Burnside Ave                          
## 1634                    1401 University Avenue                          
## 1635           16105 Horace Harding Expressway                          
## 1636                     2237 Linden Boulevard                          
## 1637                           37 Dietz Street                          
## 1638                         3155 Grace Avenue                          
## 1639                               115 Park St                          
## 1640                       300 Community Drive                          
## 1641                        855 Central Avenue                          
## 1642                    6702-6706 Third Avenue                          
## 1643                        601 Elmwood Avenue                          
## 1644                       16 East 16th Street                          
## 1645                                Po Box 54o                          
## 1646                           165 Main Street                          
## 1647                        4464-4474 Broadway                          
## 1648                      70 West Burnside Ave                          
## 1649                          125 Worth Street                          
## 1650                         46 Harriman Drive                          
## 1651                          22 Chapel Street                          
## 1652                         250 Church Street                          
## 1653                                  Route 97                          
## 1654                        148 Martine Avenue                          
## 1655                       2445 Oceanside Road                          
## 1656                 222-15 Northern Boulevard                          
## 1657                      1656 Champlin Avenue                          
## 1658                          1037 Main Street                          
## 1659                          270-05 76 Avenue                          
## 1660                           100 Park Street                          
## 1661           520 East 70th Street, Level J-0                          
## 1662                       New Scotland Avenue                          
## 1663                        100 Beekman Street                          
## 1664                          184 Fifth Avenue                          
## 1665                     110 West Sixth Street                          
## 1666                        601 Elmwood Avenue                          
## 1667                          280 Henry Street                          
## 1668                          6400 Powers Road                          
## 1669                        80 Fairview Avenue                          
## 1670                     622 West 168th Street                          
## 1671                    100 Southern Boulevard                          
## 1672                    315 South Manning Blvd                          
## 1673                           2209 Genesee St                          
## 1674                      196 198 North Street                          
## 1675                          61 Delano Street                          
## 1676                             650 Mcclellan                          
## 1677                                 Route 146                          
## 1678                      29-20 Newtown Avenue                          
## 1679                               Atwell Road                          
## 1680                        148 Martine Avenue                          
## 1681                               Atwell Road                          
## 1682                     622 West 168th Street                          
## 1683                          427 Guy Park Ave                          
## 1684                          1639 52nd Street                          
## 1685                1615-1617 Eastchester Road                          
## 1686                           905 Culver Road                          
## 1687                   1 Huntington Quadrangle                          
## 1688                          550 First Avenue                          
## 1689                       1555 Long Pond Road                          
## 1690                        5300 Military Road                          
## 1691            Government Plaza - Po Box 1766                          
## 1692                       835 Herkimer Street                          
## 1693                         50 Clinton Street                          
## 1694                          61 Delano Street                          
## 1695                1615-1617 Eastchester Road                          
## 1696                      1656 Champlin Avenue                          
## 1697                        285 Deyo Hill Road                          
## 1698                         101 Hospital Road                          
## 1699                               Main Street                          
## 1700                          22 Chapel Street                          
## 1701                           278 Bank Street                          
## 1702                         26 Bleeker Street                          
## 1703                     1555 Rockaway Parkway                          
## 1704                  1740-70 Eastchester Road                          
## 1705                               50 Leroy St                          
## 1706                   1070 Southern Boulevard                          
## 1707                      356 West 18th Street                          
## 1708                             3039 Avenue U                          
## 1709                        2800 Marcus Avenue                          
## 1710                              615 Avenue C                          
## 1711                         4422 Third Avenue                          
## 1712                       2215 Burdett Avenue                          
## 1713                  St Elizabeth Motherhouse                          
## 1714                         201 Kings Highway                          
## 1715                     2651 East 14th Street                          
## 1716                           68 Hager Street                          
## 1717                     110 West Sixth Street                          
## 1718                        470 Seaview Avenue                          
## 1719                           75 Rockaway Ave                          
## 1720                          125 Worth Street                          
## 1721                           1 Cisney Avenue                          
## 1722               c/o Canton-Potsdam Hospital               50 Leroy St
## 1723                      200 East 94th Street                          
## 1724                          125 Worth Street                          
## 1725                            Bradley Avenue                          
## 1726                           11 Avena Avenue                          
## 1727                        140 Burwell Street                          
## 1728                          550 First Avenue                          
## 1729                     1285 Trumansburg Road                          
## 1730       1 Huntington Quadrangle Suite 4 Co4                          
## 1731                       301 Prospect Avenue                          
## 1732                          535 East 70th St                          
## 1733                     785 Mamaroneck Avenue                          
## 1734                         101 Hospital Road                          
## 1735                       737 Delaware Avenue                          
## 1736                   111 Clara Barton Street                          
## 1737                          Rd 2 Gurney Lane                          
## 1738                     111 East 210th Street                          
## 1739                    3525 Baychester Avenue                          
## 1740                        323 Genesee Street                          
## 1741                     30 Green Manor Avenue                          
## 1742            67-10 Rockaway Beach Boulevard                          
## 1743                             650 Mcclellan                          
## 1744                        302 Laurens Street                          
## 1745                          46 East Broadway                          
## 1746                            701 N Broadway                          
## 1747                        178-50 Linden Blvd                          
## 1748                            West Street Rd                          
## 1749                          571 Mcdonald Ave                          
## 1750                          700 Craig Street                          
## 1751               South Avenue At Bellevue Dr                          
## 1752                      172 Meadow Hill Road                          
## 1753                          184 Fifth Avenue                          
## 1754                              396 Broadway                          
## 1755                      6 Medical Park Drive                          
## 1756                          61 Delano Street                          
## 1757                              1300 Roanoke                          
## 1758             1633 Church Street, Suite 500                          
## 1759                          50 Greene Avenue                          
## 1760                      Upper Tibbets Avenue                          
## 1761                     111 East 210th Street                          
## 1762            Linden Blvd At Brookdale Plaza                          
## 1763                     111 East 210th Street                          
## 1764                       159 Carleton Avenue                          
## 1765                          56 Market Street                          
## 1766                     622 West 168th Street                          
## 1767            Davis Avenue At East Post Road                          
## 1768                       2950 Elmwood Avenue                          
## 1769                               Atwell Road                          
## 1770                       2445 Oceanside Road                          
## 1771                            600 Roe Avenue                          
## 1772                     1072 Havemeyer Avenue                          
## 1773                       411 Canisteo Street                          
## 1774                               Atwell Road                          
## 1775                     225 East 126th Street                          
## 1776                              Court Street                          
## 1777                        601 Elmwood Avenue                          
## 1778                        4459 Bailey Avenue                31st Floor
## 1779                       County Civic Center                          
## 1780                       1555 Long Pond Road                          
## 1781             195 East Main Street, Suite A                          
## 1782                          1275 York Avenue                          
## 1783                       470 Tom Miller Road                          
## 1784                      756 Pre-Emption Road                          
## 1785                          125 Worth Street                          
## 1786                       100 Franklin Street                          
## 1787                        1700 Penfield Road                          
## 1788                             650 Mcclellan                          
## 1789                          1 Bethesda Drive                          
## 1790                          125 Worth Street                          
## 1791                       2215 Burdett Avenue                          
## 1792                       2445 Oceanside Road                          
## 1793                          256 Mason Avenue                          
## 1794                        178-50 Linden Blvd                          
## 1795                          270-05 76 Avenue                          
## 1796                           65 State Street                          
## 1797                         1305 Utica Avenue                          
## 1798                          550 First Avenue                          
## 1799                          741 Grant Street                          
## 1800                    179 North Broad Street                          
## 1801                      1360 Hylan Boulevard                          
## 1802                           800 Main Street                          
## 1803                         3674 Third Avenue                          
## 1804                       2215 Burdett Avenue                          
## 1805                            2 Coulter Road                          
## 1806                         26 Bleeker Street                          
## 1807                          270-05 76 Avenue                          
## 1808                        601 Elmwood Avenue                          
## 1809                        178-50 Linden Blvd                          
## 1810                         275 Moriches Road                          
## 1811                          550 First Avenue                          
## 1812                     120 West 106th Street                          
## 1813                         211 Church Street                          
## 1814                           100 High Street                          
## 1815                          550 First Avenue                          
## 1816                           128 Rutledge St                          
## 1817                     120 West 106th Street                          
## 1818                          100 Sykes Street                          
## 1819                1615-1617 Eastchester Road                          
## 1820                           100 Park Street                          
## 1821                              1300 Roanoke                          
## 1822                        666 Kappock Street                          
## 1823                               1 Bridge St                          
## 1824                          89 Baxter Street                          
## 1825                           214 King Street                          
## 1826                        350 Parrish Street                          
## 1827                             650 Mcclellan                          
## 1828                            3 Atrium Drive                          
## 1829                    315 South Manning Blvd                          
## 1830                     728 North Main Street                          
## 1831                       411 Canisteo Street                          
## 1832                           101 Main Street                          
## 1833                   10 Nathan Perlman Place                          
## 1834                        1276 Fulton Avenue                          
## 1835                       1270 Belmont Avenue                          
## 1836                         Stoneleigh Avenue                          
## 1837                     191 North Main Street                          
## 1838                        178-50 Linden Blvd                          
## 1839                                Po Box 222                          
## 1840                        1980 Crompond Road                          
## 1841                      2-8 West Main Street                          
## 1842                          125 Worth Street                          
## 1843                           Montauk Highway                          
## 1844                              260 Avenue X                          
## 1845                     1010 Underhill Avenue                          
## 1846                        100 Beekman Street                          
## 1847                          427 Guy Park Ave                          
## 1848                     421 W Columbia Street                          
## 1849               819-829 South Salina Street                          
## 1850                       301 Prospect Avenue                          
## 1851                          120 Kisco Avenue                          
## 1852                           100 High Street                          
## 1853                  2003 Coney Island Avenue                          
## 1854                              396 Broadway                          
## 1855                             650 Mcclellan                          
## 1856                        601 Elmwood Avenue                          
## 1857                              396 Broadway                          
## 1858             89-56 162nd Street, 3rd Floor                          
## 1859                     111 East 210th Street                          
## 1860                       966 Prospect Avenue                          
## 1861                            310 East 14 St                          
## 1862                      70 West Burnside Ave                          
## 1863                          550 First Avenue                          
## 1864                1615-1617 Eastchester Road                          
## 1865                                Po Box 54o                          
## 1866                           465 Brickman Rd                          
## 1867                        122 East 23 Street                          
## 1868                       3333 Elmwood Avenue                          
## 1869                       71 West 23rd Street                          
## 1870                      30 West 138th Street                          
## 1871                          1037 Main Street                          
## 1872                           905 Culver Road                          
## 1873                       2215 Burdett Avenue                          
## 1874                   51 West Burnside Avenue                          
## 1875                       2209 Genesee Street                          
## 1876                           64 Hager Street                          
## 1877                           800 Park Street                          
## 1878                         3457 Nostrand Ave                          
## 1879                          125 Worth Street                          
## 1880                           100 High Street                          
## 1881                          2157 Main Street                          
## 1882                    315 South Manning Blvd                          
## 1883                        601 Elmwood Avenue                          
## 1884                     728 North Main Street                          
## 1885               c/o Canton-Potsdam Hospital               50 Leroy St
## 1886                          550 First Avenue                          
## 1887                        175 Arsenal Street                          
## 1888                      989 Jericho Turnpike                          
## 1889            89th Ave & Van Wyck Expressway                          
## 1890                     8533 Jericho Turnpike                          
## 1891                                Po Box 54o                          
## 1892                                Po Box 54o                          
## 1893                           100 Park Street                          
## 1894                   1500 North James Street                          
## 1895                     100 New Turnpike Road                          
## 1896                         211 Church Street                          
## 1897                       16 East 16th Street                          
## 1898                          200 Bassett Road                31st Floor
## 1899                          125 Worth Street                          
## 1900                       169 Riverside Drive                          
## 1901                       301 Prospect Avenue                          
## 1902                        356 East 88 Street                          
## 1903                  231 35 Merrick Boulevard                          
## 1904             165 Main Street, P.O. Box 423                          
## 1905                               Atwell Road                          
## 1906                      356 West 18th Street                          
## 1907                              445 Park Ave                          
## 1908                        New Hempstead Road                          
## 1909                            310 East 14 St                          
## 1910                      40 Robert Pitt Drive                          
## 1911               62 William Street-9th Floor                          
## 1912                       169 Riverside Drive                          
## 1913             89-56 162nd Street, 3rd Floor                          
## 1914                  32-11 Francis Lewis Blvd                          
## 1915                          1 Hospital Drive                          
## 1916             1633 Church Street, Suite 500                          
## 1917                    315 South Manning Blvd                          
## 1918                     111 East 210th Street                          
## 1919                    315 South Manning Blvd                          
## 1920                        303 Sterling Drive                          
## 1921                   1 Huntington Quadrangle                          
## 1922                          101 Nicolls Road                          
## 1923           2004 McDonald Avenue, Suite 2-A                          
## 1924                  235 Port Richmond Avenue                          
## 1925                           100 Park Street                          
## 1926                          571 Mcdonald Ave                          
## 1927                          2157 Main Street                          
## 1928                        15-19 Maple Avenue                          
## 1929                   1911-1921 Jerome Avenue                          
## 1930                       210 Williams Street                          
## 1931                        271-11 76th Avenue                          
## 1932                      116 East 92nd Street                          
## 1933                       16 East 16th Street                          
## 1934                        119-15 27th Avenue                          
## 1935                        601 Elmwood Avenue                          
## 1936                        178-50 Linden Blvd                          
## 1937                            127 S Broadway                          
## 1938                      110 West 97th Street                          
## 1939                    2700 North Forest Road                          
## 1940                        80 Fairview Avenue                          
## 1941                       301 Nantucket Drive                          
## 1942                               Atwell Road                          
## 1943               2850 Grand Island Boulevard                31st Floor
## 1944                     191 North Main Street                          
## 1945                     725 Renaissance Drive                          
## 1946                         4422 Third Avenue                          
## 1947                       300 Community Drive                          
## 1948                          100 Baldwin Road                          
## 1949                          2157 Main Street                          
## 1950                      110 West 97th Street                          
## 1951                         211 Church Street                          
## 1952                        302 Laurens Street                          
## 1953                           565 Abbott Road                          
## 1954                          107 W 4th Street                          
## 1955                               115 Park St                          
## 1956                          535 East 70th St                          
## 1957                          2157 Main Street                          
## 1958                      240 Old Country Road                          
## 1959                            600 Roe Avenue                          
## 1960                     225 Greenfiel Parkway                          
## 1961           520 East 70th Street, Level J-0                          
## 1962                         50 E North Street                          
## 1963             89-56 162nd Street, 3rd Floor                          
## 1964                     Lark And Arbor Drives                          
## 1965                        960 South Broadway               Suite 110-A
## 1966                          2157 Main Street                          
## 1967                          550 First Avenue                          
## 1968                          1020 Mary Street                          
## 1969                       169 Riverside Drive                          
## 1970                           60 Willow Drive                          
## 1971                1615-1617 Eastchester Road                          
## 1972               104 North Washington Street                          
## 1973                            4802 Tenth Ave                          
## 1974                         5353 Merrick Road                          
## 1975                         620 Foster Avenue                          
## 1976                       2215 Burdett Avenue                          
## 1977                Washington Ave And Rapp Rd                          
## 1978                          184 Fifth Avenue                          
## 1979                       1270 Belmont Avenue                          
## 1980                       1270 Belmont Avenue                          
## 1981                       2570 U. S. Route 92                          
## 1982                979 Cross Bronx Expressway                          
## 1983                          196-198 North St                          
## 1984            360 Delaware Avenue, Suite 400                          
## 1985                            600 Roe Avenue                          
## 1986                             650 Mcclellan                          
## 1987                     111 East 210th Street                          
## 1988                        15-19 Maple Avenue                          
## 1989                          1740 84th Street                          
## 1990                          1037 Main Street                          
## 1991                                Po Box 222                          
## 1992                          1020 Mary Street                          
## 1993                            127 S Broadway                          
## 1994                            127 S Broadway                          
## 1995                     785 Mamaroneck Avenue                          
## 1996                        175 Arsenal Street                          
## 1997                        71 Prospect Avenue                          
## 1998                        271-11 76th Avenue                          
## 1999            Davis Avenue At East Post Road                          
## 2000                    3111 South Winton Road                          
## 2001                        400 Lake Ave Box E                          
## 2002                      356 West 18th Street                          
## 2003                         184 Barton Street                          
## 2004                       2570 U. S. Route 92                          
## 2005                     161 Jefferson Heights                          
## 2006                       672 Parkside Avenue                          
## 2007                      150 Lafayette Street                          
## 2008                           500 Ohio Street                          
## 2009                        178-50 Linden Blvd                          
## 2010                        475 Hempstead Road                          
## 2011                      60 Merritt Boulevard                          
## 2012                          6323 14th Avenue                          
## 2013                       585 Schenectady Ave                          
## 2014                            45 Reade Place                          
## 2015                                Po Box 54o                          
## 2016                        215 Clinton Street                          
## 2017                        102 Wawanda Avenue                          
## 2018                       2215 Burdett Avenue                          
## 2019                        601 Elmwood Avenue                          
## 2020                        1980 Crompond Road                          
## 2021                                 Route 146                          
## 2022                           355 Bard Avenue                          
## 2023                         50 E North Street                          
## 2024                        601 Elmwood Avenue                          
## 2025                       1103 Stewart Avenue                          
## 2026                   2825 Niagara Falls Blvd                 Suite 130
## 2027                       140 St. Edwards St.                          
## 2028                979 Cross Bronx Expressway                          
## 2029                    County Office Building                          
## 2030                         520 Eighth Avenue                          
## 2031                           100 Park Street                          
## 2032                         900 Intervale Ave                          
## 2033                           905 Culver Road                          
## 2034                          451 Broad Street                          
## 2035            505 East 70th Street 2nd Floor                          
## 2036                          427 Guy Park Ave                          
## 2037                        601 Elmwood Avenue                          
## 2038                            4802 Tenth Ave                          
## 2039                     520 Beach 19th Street                          
## 2040                       966 Prospect Avenue                          
## 2041                          256 Mason Avenue                          
## 2042                          101 South Street                          
## 2043                           Montauk Highway                          
## 2044                          1037 Main Street                          
## 2045                         27-11 76th Avenue                          
## 2046                       16 East 16th Street                          
## 2047                      110 West 97th Street                          
## 2048                            121 Dekalb Ave                          
## 2049                         105 Mary's Avenue                          
## 2050                        601 Elmwood Avenue                          
## 2051                        71 Prospect Avenue                          
## 2052                   1500 North James Street                          
## 2053           520 East 70th Street, Level J-0                          
## 2054                       300 Community Drive                          
## 2055                       301 Prospect Avenue                          
## 2056               South Avenue At Bellevue Dr                          
## 2057                         2968 Chili Avenue                          
## 2058                          South Wilbur Ave                          
## 2059                          125 Worth Street                          
## 2060               819-829 South Salina Street                          
## 2061                  32-11 Francis Lewis Blvd                          
## 2062                         462 Grider Street                          
## 2063                      70 West Burnside Ave                          
## 2064                        100 East 77 Street                          
## 2065                        323 Genesee Street                          
## 2066                        5300 Military Road                          
## 2067                       3117 Webster Avenue                          
## 2068                          1275 York Avenue                          
## 2069                      70 West Burnside Ave                          
## 2070                          125 Worth Street                          
## 2071                          88 Old Town Road                          
## 2072                4770 White Plains Road, #3                          
## 2073                           165 Main Street                          
## 2074                       3015 W. 29th Street                          
## 2075                    17 Narragansett Avenue                          
## 2076                       300 Community Drive                          
## 2077                    61-11 Queens Boulevard                          
## 2078                       1555 Long Pond Road                          
## 2079                           905 Culver Road                          
## 2080                          535 East 70th St                          
## 2081                        220 Sherman Street                          
## 2082                  One Gustave L Levy Place                          
## 2083                       715 Falconer Street                          
## 2084                                Po Box 222                          
## 2085                           100 High Street                          
## 2086                           515 Main Street                          
## 2087                       169 Riverside Drive                          
## 2088                           214 King Street                          
## 2089                          225 Maple Avenue                          
## 2090         865 Merrick Road - Unit 150 North                          
## 2091                                Po Box 222                          
## 2092                   1070 Southern Boulevard                          
## 2093                             650 Mcclellan                          
## 2094                   1070 Southern Boulevard                          
## 2095                          1275 York Avenue                          
## 2096      1 South Washington Street, Suite 300                          
## 2097                        1609 E Main Street                          
## 2098                    2478 Jersusalem Avenue                          
## 2099                       1555 Long Pond Road                          
## 2100                               Atwell Road                          
## 2101                               22 Green St                          
## 2102                    22-41 New Haven Avenue                          
## 2103                         112 Ski Bowl Road                          
## 2104                        140 Burwell Street                          
## 2105                       1555 Long Pond Road                          
## 2106                         640 West Broadway                          
## 2107                            121 Dekalb Ave                          
## 2108                                Po Box 54o                          
## 2109                               50 Leroy St                          
## 2110                     111 East 210th Street                          
## 2111                         87 South Route 9w                          
## 2112                      120 East 16th Street                          
## 2113                1615-1617 Eastchester Road                          
## 2114                           11 Avena Avenue                          
## 2115               819-829 South Salina Street                          
## 2116                      444 Hopkinson Avenue                          
## 2117                    179 North Broad Street                          
## 2118                         One Norton Avenue                          
## 2119                             85 Metro Park                          
## 2120                           5 Van Eck Drive                          
## 2121                          125 Worth Street                          
## 2122                            Lansing Street                          
## 2123                  St Elizabeth Motherhouse                          
## 2124                         200 Varick Street                          
## 2125                          125 Worth Street                          
## 2126                        601 Elmwood Avenue                          
## 2127                   1 Huntington Quadrangle                          
## 2128                         26 Bleeker Street                          
## 2129                          550 First Avenue                          
## 2130                       12 North 7th Avenue                          
## 2131                                Po Box 222                          
## 2132                          125 Worth Street                          
## 2133                            600 Bates Road                          
## 2134                        529 Central Avenue                          
## 2135                              396 Broadway                          
## 2136 100 Woods Road, Taylor Pavilion 2nd Floor                          
## 2137                      240 Old Country Road                          
## 2138                         2780 Third Avenue                          
## 2139                        5300 Military Road                          
## 2140                            West Street Rd                          
## 2141           619 West 54th Street, 8th Floor                          
## 2142                           40 Autumn Drive                          
## 2143                              260 Avenue X                          
## 2144                               Atwell Road                          
## 2145                     622 West 168th Street                          
## 2146                        178-50 Linden Blvd                          
## 2147                     Elm & Carlton Streets                          
## 2148                      373 East Main Street                          
## 2149                             650 Mcclellan                          
## 2150                 Wyoming County Courthouse                          
## 2151                       601 Riverside Drive                          
## 2152                       2570 U. S. Route 92                          
## 2153                          79 Bridge Street                          
## 2154                  2235 Millersport Highway                          
## 2155                           515 Main Street                          
## 2156                      99 East State Street                          
## 2157                            45 Reade Place                          
## 2158                       One Brookdale Plaza                          
## 2159                       169 Riverside Drive                          
## 2160                           2209 Genesee St                          
## 2161                          1037 Main Street                          
## 2162                            701 N Broadway                          
## 2163                        5300 Military Road                          
## 2164                     667 Stoneleigh Avenue                          
## 2165            Linden Blvd At Brookdale Plaza                          
## 2166                     1555 Rockaway Parkway                          
## 2167                    391 North Country Road                          
## 2168                         275 Guthrie Drive                          
## 2169                      99 East State Street                          
## 2170                         68 Hauppauge Road                          
## 2171                       2215 Burdett Avenue                          
## 2172                          125 Worth Street                          
## 2173                      70 West Burnside Ave                          
## 2174                           65 State Street                          
## 2175                            4802 Tenth Ave                          
## 2176                      99 East State Street                          
## 2177                         One Norton Avenue                          
## 2178                       300 Community Drive                          
## 2179                     111 East 210th Street                          
## 2180                        601 Elmwood Avenue                          
## 2181                       411 Canisteo Street                          
## 2182                           128 Rutledge St                          
## 2183                        271-11 76th Avenue                          
## 2184                          125 Worth Street                          
## 2185                                  Utica St                          
## 2186                            4802 Tenth Ave                          
## 2187                          184 Fifth Avenue                          
## 2188                     Lark And Arbor Drives                          
## 2189                       169 Riverside Drive                          
## 2190                       1555 Long Pond Road                          
## 2191                           525 Beahan Road                          
## 2192                    39-47 North Plank Road                          
## 2193                          550 First Avenue                          
## 2194               South Avenue At Bellevue Dr                          
## 2195                        601 Elmwood Avenue                          
## 2196                                23 Kiernan                          
## 2197               400 Westage Business Center                          
## 2198                        223 J B Wise Place                          
## 2199                         56-36 Main Street                          
## 2200                        140 Burwell Street                          
## 2201                          125 Worth Street                          
## 2202                  2279 Coney Island Avenue                          
## 2203                   111 Clara Barton Street                          
## 2204                                Po Box 222                          
## 2205                          125 Worth Street                          
## 2206                              396 Broadway                          
## 2207             89-56 162nd Street, 3rd Floor                          
## 2208            67-10 Rockaway Beach Boulevard                          
## 2209                   10 Nathan Perlman Place                          
## 2210                        178-50 Linden Blvd                          
## 2211                          150 Broad Street                          
## 2212                       1555 Long Pond Road                          
## 2213                       260 Vineyard Avenue                          
## 2214                       358 Tom Miller Road                          
## 2215                1615-1617 Eastchester Road                          
## 2216               75 Jones And Gifford Avenue                          
## 2217             165 Main Street, P.O. Box 423                          
## 2218                      1656 Champlin Avenue                          
## 2219                     Lark And Arbor Drives                          
## 2220                       1555 Long Pond Road                          
## 2221                         9876 Luckey Drive                          
## 2222                      444 Hopkinson Avenue                          
## 2223                         50 E North Street                          
## 2224                       260 Vineyard Avenue                          
## 2225                                NY Rt. 217                          
## 2226                        1623 Kings Highway                          
## 2227                          Lake Colby Drive                          
## 2228                        1160 Teller Avenue                          
## 2229                        4464-4474 Broadway                          
## 2230                       314 East 104 Street                          
## 2231                            127 S Broadway                          
## 2232 100 Woods Road, Taylor Pavilion 2nd Floor                          
## 2233                         374 Violet Avenue                          
## 2234                           165 Main Street                          
## 2235                        1233 Second Avenue                          
## 2236                       2445 Oceanside Road                          
## 2237                     516 West 126th Street                          
## 2238                       169 Riverside Drive                          
## 2239                    315 South Manning Blvd                          
## 2240                   120-46 Queens Boulevard                          
## 2241                    4770 White Plains Road                          
## 2242                      160 East Main Street                          
## 2243                       183rd And Third Ave                          
## 2244                           100 Park Street                          
## 2245                 64 Pomeroy Street Suite B                          
## 2246                        148 Martine Avenue                          
## 2247                           1600 7th Avenue                          
## 2248                     Elm & Carlton Streets                          
## 2249                          257 State Street                          
## 2250                            78-10 164th St                          
## 2251                    22 Robert R. Kasin Way                          
## 2252                  2323-27 Eastchester Road                          
## 2253                       1050 Central Avenue                          
## 2254                          4 Harriman Drive                          
## 2255                        178-50 Linden Blvd                          
## 2256                            127 S Broadway                          
## 2257                         1901 Utica Avenue                          
## 2258                          256 Mason Avenue                          
## 2259                          550 First Avenue                          
## 2260                        356 East 88 Street                          
## 2261                      468 Lafayette Avenue                          
## 2262                               Atwell Road                          
## 2263                        601 Elmwood Avenue                          
## 2264                           100 High Street                          
## 2265                          535 East 70th St                          
## 2266                             60 Maple Road                          
## 2267                       15 St. Paul's Place                          
## 2268                        601 Elmwood Avenue                          
## 2269                            4802 Tenth Ave                          
## 2270                     111 East 210th Street                          
## 2271                          21 Laurel Avenue                          
## 2272                               1 Bridge St                          
## 2273                        271-11 76th Avenue                          
## 2274                              396 Broadway                          
## 2275                     965 Dutchess Turnpike                          
## 2276                      159-163 Front Street                          
## 2277                      211 East 79th Street                          
## 2278                         56-36 Main Street                          
## 2279                        801 W 190th Street                          
## 2280                      70 West Burnside Ave                          
## 2281                             650 Mcclellan                          
## 2282                          150 Broad Street                          
## 2283                         One Norton Avenue                          
## 2284                         2781 Third Avenue                          
## 2285                      1650 Champlin Avenue                          
## 2286                       2570 U. S. Route 92                          
## 2287                          123 Everett Road                          
## 2288                     622 West 168th Street                          
## 2289                            127 S Broadway                          
## 2290                       51 West 51st Street                          
## 2291                  80 North Prospect Avenue                          
## 2292                       159 Carleton Avenue                          
## 2293                      356 West 18th Street                          
## 2294                          550 First Avenue                          
## 2295                           515 Main Street                          
## 2296                  32-11 Francis Lewis Blvd                          
## 2297                           100 High Street                          
## 2298                         40 Heyward Street                          
## 2299                              621 Tenth St                          
## 2300                      1780 Grand Concourse                          
## 2301                          1037 Main Street                          
## 2302                      281 Albany Post Road                          
## 2303           305 West 44th Street, 3rd Floor                          
## 2304                          125 Worth Street                          
## 2305                      240 Old Country Road                          
## 2306                            1500 Route 112                          
## 2307                         220 E 42nd Street                          
## 2308                             5500 Broadway                          
## 2309                          2157 Main Street                          
## 2310                              170 Maple Rd                          
## 2311                           155 Lawn Avenue                          
## 2312                          2157 Main Street                          
## 2313                          2157 Main Street                          
## 2314                      110 West 97th Street                          
## 2315                          270-05 76 Avenue                          
## 2316                       1919 Elmwood Avenue                          
## 2317                   1500 North James Street                          
## 2318                       2215 Burdett Avenue                          
## 2319                           100 Park Street                          
## 2320                      3907 County Rd No 46                          
## 2321                            323 Kings Road                          
## 2322                        100 Beekman Street                          
## 2323                4770 White Plains Road, #3                          
## 2324               314 South Manning Boulevard                          
## 2325                            121 Dekalb Ave                          
## 2326                     Lark And Arbor Drives                          
## 2327                             650 Mcclellan                          
## 2328      Harter Secrest@Emery 700 Midtown Tow                          
## 2329                               Atwell Road                          
## 2330                  3 Dag Hammarskjold Plaza     305 Easst 47th Street
## 2331                       16 East 16th Street                          
## 2332                      70 West Burnside Ave                          
## 2333                        1991 Marcus Avenue                          
## 2334                          184 Fifth Avenue                          
## 2335                  1 Hillcrest Center Drive                 Suite 225
## 2336             1633 Church Street, Suite 500                          
## 2337                    395 Sunken Meadow Road                          
## 2338                          270-05 76 Avenue                          
## 2339                               Court House                          
## 2340                           515 Main Street                          
## 2341                    3200 Baychester Avenue                          
## 2342              29-38 Far Rockaway Boulevard                          
## 2343               c/o Canton-Potsdam Hospital               50 Leroy St
## 2344                          19 Laurel Avenue                          
## 2345                         One Norton Avenue                          
## 2346                           905 Culver Road                          
## 2347                        15-19 Maple Avenue                          
## 2348                                  Route 28                          
## 2349                         418 North Main St                          
## 2350                    5467 Upper Mountain Rd                          
## 2351                          256 Mason Avenue                          
## 2352                      70 West Burnside Ave                          
## 2353                          270-05 76 Avenue                          
## 2354                     110 West Sixth Street                          
## 2355                         211 Church Street                          
## 2356                         Stoneleigh Avenue                          
## 2357                         Stoneleigh Avenue                          
## 2358                       2570 U. S. Route 92                          
## 2359                      1425 Portland Avenue                          
## 2360                             506 Sixth St.                          
## 2361                          2500 Main Street                          
## 2362                    620 Sleepy Hollow Road                          
## 2363                               50 Leroy St                          
## 2364                       411 Canisteo Street                          
## 2365                           905 Culver Road                          
## 2366                 560-564 Bay Ridge Parkway                          
## 2367                      240 Old Country Road                          
## 2368                       612 Allerton Avenue                          
## 2369                               Court House                          
## 2370                          256 Mason Avenue                          
## 2371                                  Route 97                          
## 2372                          427 Guy Park Ave                          
## 2373                   46 Mount Ebo Road North                          
## 2374                        400 Lake Ave Box E                          
## 2375                          125 Worth Street                          
## 2376                        350 Parrish Street                          
## 2377                           905 Culver Road                          
## 2378                           905 Culver Road                          
## 2379                        178-50 Linden Blvd                          
## 2380                        178-50 Linden Blvd                          
## 2381                       101 Creekside Drive                          
## 2382                                Po Box 54o                          
## 2383                         303 East River St                          
## 2384                          571 Mcdonald Ave                          
## 2385                        356 East 88 Street                          
## 2386             89-56 162nd Street, 3rd Floor                          
## 2387                           830 Park Avenue                          
## 2388                         980 Westfall Road                          
## 2389                               Atwell Road                          
## 2390                  990 Seventh North Street                          
## 2391                      444 Hopkinson Avenue                          
## 2392                         26 Bleeker Street                          
## 2393                          125 Worth Street                          
## 2394                          1230 York Avenue                          
## 2395                          550 First Avenue                          
## 2396                      1656 Champlin Avenue                          
## 2397                   1500 North James Street                          
## 2398                        5300 Military Road                          
## 2399               819-829 South Salina Street                          
## 2400      Utopia Center, 176-60 Union Turnpike                          
## 2401                         1410 Seagirt Blvd                          
## 2402                       2570 U. S. Route 92                          
## 2403                      29-20 Newtown Avenue                          
## 2404                           100 High Street                          
## 2405            Driving Park Avenue    Box 111                          
## 2406                        223 J B Wise Place                          
## 2407                           165 Main Street                          
## 2408                            Webster Street                          
## 2409                     111 East 210th Street                          
## 2410                          1037 Main Street                          
## 2411               South Avenue At Bellevue Dr                          
## 2412                       110-30 221st Street                          
## 2413                  29 North Hamilton Street                          
## 2414                             189 Route 100                          
## 2415                            10 Hagen Drive                          
## 2416                          101 South Street                          
## 2417                           2209 Genesee St                          
## 2418                     111 East 210th Street                          
## 2419                         3071 Perry Avenue                          
## 2420                   107 Business Park Drive                          
## 2421                          550 First Avenue                          
## 2422                        601 Elmwood Avenue                          
## 2423                    315 South Manning Blvd                          
## 2424                        601 Elmwood Avenue                          
## 2425                    179 North Broad Street                          
## 2426                          125 Worth Street                          
## 2427                     1280 Albany Post Road                          
## 2428                           292 Main Street                          
## 2429            89th Ave & Van Wyck Expressway                          
## 2430                          700 Craig Street                          
## 2431                     111 East 210th Street                          
## 2432                            5 Johnson Road                          
## 2433                          2697 Main Street                          
## 2434                        1398 Gotham Street                          
## 2435                2865 Brighton & 3rd Street                          
## 2436                        178-50 Linden Blvd                          
## 2437                          125 Worth Street                          
## 2438                          1037 Main Street                          
## 2439                   1Hillcrest Center Drive                 Suite 225
## 2440                           905 Culver Road                          
## 2441                        178-50 Linden Blvd                          
## 2442                        178-50 Linden Blvd                          
## 2443                    142-27 Franklin Avenue                          
## 2444             165 Main Street, P.O. Box 423                          
## 2445                          22 Chapel Street                          
## 2446                           231 Main Street                          
## 2447                            600 Roe Avenue                          
## 2448                     110 West Sixth Street                          
## 2449                       1555 Long Pond Road                          
## 2450                        178-50 Linden Blvd                          
## 2451                       12 Princeton Street                          
## 2452                    80-46 Kew Gardens Road                          
## 2453                      1000 Montauk Highway                          
## 2454                     1285 Trumansburg Road                          
## 2455                       2215 Burdett Avenue                          
## 2456                          374 Stockholm St                          
## 2457                       3100 Sheridan Drive                          
## 2458                    315 South Manning Blvd                          
## 2459                         101 Hospital Road                          
## 2460                   107 Business Park Drive                          
## 2461                      1656 Champlin Avenue                          
## 2462                        148 Martine Avenue                          
## 2463                     Lark And Arbor Drives                          
## 2464                1615-1617 Eastchester Road                          
## 2465                          1037 Main Street                          
## 2466                         4422 Third Avenue                          
## 2467                       871 Bushwick Avenue                          
## 2468                        601 Elmwood Avenue                          
## 2469                          1037 Main Street                          
## 2470                        967 North Broadway                          
## 2471                    100 Southern Boulevard                          
## 2472                               80 5 Avenue                          
## 2473               69-70 Grand Central Parkway                          
## 2474                       1118 Charles Street                          
## 2475                         211 Church Street                          
## 2476                           165 Main Street                          
## 2477                               50 Leroy St                          
## 2478                         1249 Fifth Avenue                          
## 2479                380 2nd Avenue, Suite 1000                          
## 2480                       762 Harrison Avenue                          
## 2481                         190 Intrepid Lane                          
## 2482                          535 East 70th St                          
## 2483                     116 North Jensen Road                          
## 2484              1 Hillcrest Center, Suite 22                          
## 2485                       2401 Laconia Avenue                          
## 2486                        1019 Wicker Street                          
## 2487                    585 Schenectady Avenue                          
## 2488                        323 Genesee Street                          
## 2489                         One Norton Avenue                          
## 2490                  1775 Broadway, Suite 608                          
## 2491                       1555 Long Pond Road                          
## 2492                             506 Sixth St.                          
## 2493                        Springbrook Avenue                          
## 2494              1720 Whitestone expy Ste 500                          
## 2495                     785 Mamaroneck Avenue                          
## 2496                          256 Mason Avenue                          
## 2497                         736 Irving Avenue                          
## 2498                          31 Thurber Drive                          
## 2499                         418 North Main St                          
## 2500                            4800 Bear Road                          
## 2501                      1656 Champlin Avenue                          
## 2502                        319 Central Avenue                          
## 2503                      1000 Montauk Highway                          
## 2504                      99 East State Street                          
## 2505               South Avenue At Bellevue Dr                          
## 2506                            600 Roe Avenue                          
## 2507                      460 West 34th Street                          
## 2508                2230 North Triphammer Road                          
## 2509                       2570 U. S. Route 92                          
## 2510                        2525 Kings Highway                          
## 2511                           231 Main Street                          
## 2512                      70 West Burnside Ave                          
## 2513                         101 Hospital Road                          
## 2514                           905 Culver Road                          
## 2515                       301 Prospect Avenue                          
## 2516                          22 Chapel Street                          
## 2517                          125 Worth Street                          
## 2518                           55 Water Street                   13 E 07
## 2519                            10 Hagen Drive                          
## 2520                        178-50 Linden Blvd                          
## 2521                          550 First Avenue                          
## 2522                       300 Broadway Avenue                          
## 2523                        9701 Church Avenue                          
## 2524                            45 Reade Place                          
## 2525                         Stoneleigh Avenue                          
## 2526                               Atwell Road                          
## 2527                       300 Community Drive                          
## 2528                           313 43rd Street                          
## 2529                          134 Homer Avenue                          
## 2530                               50 Leroy St                          
## 2531                        67 Springvale Road                          
## 2532                         250 Church Street                          
## 2533                       1555 Long Pond Road                          
## 2534                          1037 Main Street                          
## 2535                             462 Grider St                          
## 2536                        220 Sherman Street                          
## 2537                       3117 Webster Avenue                          
## 2538                   15 Mount Ebo Road South                          
## 2539                         2253 Third Avenue                          
## 2540                          125 Worth Street                          
## 2541                          270-05 76 Avenue                          
## 2542                   35-15 Parsons Boulevard                          
## 2543                          Lake Colby Drive                          
## 2544             1633 Church Street, Suite 500                          
## 2545                         One Norton Avenue                          
## 2546                             650 Mcclellan                          
## 2547                          125 Worth Street                          
## 2548                      254 Alexander Street                          
## 2549                        350 Parrish Street                          
## 2550                          374 Stockholm St                          
## 2551                     421 W Columbia Street                          
## 2552                             650 Mcclellan                          
## 2553                              115 Broadway                          
## 2554                        380 Washington Ave                          
## 2555                        178-50 Linden Blvd                          
## 2556                        223 J B Wise Place                          
## 2557                        82-12 151th Avenue                          
## 2558                     194 Washington Avenue                          
## 2559                      233 Lafayette Street                          
## 2560                      189 East Main Street                          
## 2561                        515 Audubon Avenue                          
## 2562                       2445 Oceanside Road                          
## 2563                       1815 Madison Avenue                          
## 2564                           2209 Genesee St                          
## 2565                                 Route 146                          
## 2566                1615-1617 Eastchester Road                          
## 2567                          2256 Burdett Ave                          
## 2568                              445 Park Ave                          
## 2569                       529 Beach 20 Street                          
## 2570                           27 Grand Street                          
## 2571            Linden Blvd At Brookdale Plaza                          
## 2572                           100 High Street                          
## 2573                       500 Cummings Center                Suite 6550
## 2574                539 Route 22, P.O. Box 360                          
## 2575                     505 Mount Hope Avenue                          
## 2576                     15 Spring Valley Road                          
## 2577                                Po Box 54o                          
## 2578                  1 Hillcrest Center Drive                 Suite 225
## 2579                          22 Chapel Street                          
## 2580                              621 Tenth St                          
## 2581                    187-30 Hillside Avenue                          
## 2582                          535 East 70th St                          
## 2583                       2950 Elmwood Avenue                          
## 2584                 Box 876-82 Holland Street                          
## 2585                      345 East 24th Street                          
## 2586                        223 J B Wise Place                          
## 2587                        601 Elmwood Avenue                          
## 2588                     785 Mamaroneck Avenue                          
## 2589                       2215 Burdett Avenue                          
## 2590                         3674 Third Avenue                          
## 2591                     111 East 210th Street                          
## 2592                           11 Avena Avenue                          
## 2593                           515 Main Street                          
## 2594                     111 East 210th Street                          
## 2595                      1656 Champlin Avenue                          
## 2596                        323 Genesee Street                          
## 2597                           165 Main Street                          
## 2598                           355 Bard Avenue                          
## 2599                      825 Old Country Road                          
## 2600                        967 North Broadway                          
## 2601                          125 Worth Street                          
## 2602                            45 Reade Place                          
## 2603                     785 Mamaroneck Avenue                          
## 2604                1615-1617 Eastchester Road                          
## 2605                       1270 Belmont Avenue                          
## 2606                              3 Upton Park                          
## 2607                       2215 Burdett Avenue                          
## 2608                  20 West Fairmount Avenue                          
## 2609                         830 Washington St                          
## 2610 100 Woods Road, Taylor Pavilion 2nd Floor                          
## 2611                       3117 Webster Avenue                          
## 2612                       50 Sheffield Avenue                          
## 2613                     111 East 210th Street                          
## 2614                         101 Hospital Road                          
## 2615                          393 Front Street                          
## 2616      1 South Washington Street, Suite 300                          
## 2617                        91-31 175th Street                          
## 2618                        178-50 Linden Blvd                          
## 2619                     711 West State Street                          
## 2620                     1146 Woodcrest Avenue                          
## 2621                      99 East State Street                          
## 2622                          550 First Avenue                          
## 2623                           905 Culver Road                          
## 2624                        41 Mcmaster Street                          
## 2625                        555 Prospect Place                          
## 2626                             Highland Road                          
## 2627                           740 East Avenue                          
## 2628                            8 Bushey Blvd.                          
## 2629                           2316 Bruner Ave                          
## 2630            89th Ave & Van Wyck Expressway                          
## 2631                           155 Lawn Avenue                          
## 2632                          427 Guy Park Ave                          
## 2633             89-56 162nd Street, 3rd Floor                          
## 2634                      210 West Madison Ave                          
## 2635                       169 Riverside Drive                          
## 2636                   1070 Southern Boulevard                          
## 2637                        601 Elmwood Avenue                          
## 2638                                Po Box 54o                          
## 2639                      196 198 North Street                          
## 2640                     728 North Main Street                          
## 2641                       300 Community Drive                          
## 2642                         3400 Cannon Place                          
## 2643                     1285 Trumansburg Road                          
## 2644                        601 Elmwood Avenue                          
## 2645             165 Main Street, P.O. Box 423                          
## 2646                       13996 Route 31 West                          
## 2647                     622 Washington Street                          
## 2648                          550 First Avenue                          
## 2649                         101 Louden Avenue                          
## 2650                         26 Bleeker Street                          
## 2651                          550 First Avenue                          
## 2652                             650 Mcclellan                          
## 2653                          550 First Avenue                          
## 2654                        323 Genesee Street                          
## 2655                        178-50 Linden Blvd                          
## 2656                          5606 15th Avenue                          
## 2657                           65 State Street                          
## 2658                              127 North St                          
## 2659                            21 Hayes Stret                          
## 2660                       2570 U. S. Route 92                          
## 2661                       159 Carleton Avenue                          
## 2662                 1000 Pelham Parkway South                          
## 2663                          214 State Street                          
## 2664                        601 Elmwood Avenue                          
## 2665                       300 Community Drive                          
## 2666                      99 East State Street                          
## 2667                1615-1617 Eastchester Road                          
## 2668                                Po Box 54o                          
## 2669                            3 Summit Court                          
## 2670                1615-1617 Eastchester Road                          
## 2671                      70 West Burnside Ave                          
## 2672                          1020 Mary Street                          
## 2673                       159 Carleton Avenue                          
## 2674                       80 West Main Street                          
## 2675       1 Huntington Quadrangle Suite 4 Co4                          
## 2676                          225 Maple Avenue                          
## 2677                       80 West Main Street                          
## 2678                                Po Box 54o                          
## 2679                           905 Culver Road                          
## 2680                           500 Main Street                          
## 2681                         108 Steele Avenue                          
## 2682                             25 Elm Street                          
## 2683                        127 South Broadway                          
## 2684          Court House 355 West Main Street                          
## 2685                          550 First Avenue                          
## 2686                         105 Mary's Avenue                          
## 2687                         56-36 Main Street                          
## 2688                        2640 Pitkin Avenue                          
## 2689                           100 High Street                          
## 2690                      1516 LexingtonAvenue                          
## 2691                     1060 Amsterdam Avenue                          
## 2692                       37 West 26th Street                          
## 2693                           905 Culver Road                          
## 2694                       612 Allerton Avenue                          
## 2695                          571 Mcdonald Ave                          
## 2696                  801 Co-Op City Boulevard                          
## 2697                               Atwell Road                          
## 2698                       3117 Webster Avenue                          
## 2699                        178-50 Linden Blvd                          
## 2700                         101 Hospital Road                          
## 2701                         17 Madison Street                          
## 2702                          374 Stockholm St                          
## 2703                               Court House                          
## 2704                        Empire State Plaza  Corning Tower  Room 1683
## 2705                  One Gustave L Levy Place                          
## 2706                          550 First Avenue                          
## 2707                    315 South Manning Blvd                          
## 2708                           255 Main Street                          
## 2709                       New Scotland Avenue                          
## 2710                           St Andrews Lane                          
## 2711                         53 Brentwood Road                          
## 2712                     622 West 168th Street                          
## 2713                        356 East 88 Street                          
## 2714             89-56 162nd Street, 3rd Floor                          
## 2715                                Po Box 222                          
## 2716                               Atwell Road                          
## 2717                     360 Mamaroneck Avenue                          
## 2718            4499 Manhattan College Parkway                          
## 2719           619 West 54th Street, Suite 602                          
## 2720                          1000 Elmwood Ave                          
## 2721                            6 Frowein Road                          
## 2722                       2215 Burdett Avenue                          
## 2723                             198 Route 308                          
## 2724             89-56 162nd Street, 3rd Floor                          
## 2725                         26 Bleeker Street                          
## 2726                            28 Cass Street                          
## 2727                          1275 York Avenue                          
## 2728                               50 Leroy St                          
## 2729                1615-1617 Eastchester Road                          
## 2730                            45 Reade Place                          
## 2731       1 Huntington Quadrangle Suite 4 Co4                          
## 2732                           St Andrews Lane                          
## 2733                           226 Main Street                          
## 2734                        178-50 Linden Blvd                          
## 2735             165 Main Street, P.O. Box 423                          
## 2736                   1070 Southern Boulevard                          
## 2737                          270-05 76 Avenue                          
## 2738                           700 Collamer Rd                          
## 2739                       New Scotland Avenue                          
## 2740                         26 Bleeker Street                          
## 2741                         1603 Court Street                          
## 2742                          2157 Main Street                          
## 2743                               Atwell Road                          
## 2744                           355 Bard Avenue                          
## 2745                 123-125 West 124th Street                          
## 2746                                 Route 146                          
## 2747                         800 Second Avenue                 7th Floor
## 2748                          550 First Avenue                          
## 2749           305 West 44th Street, 3rd Floor                          
## 2750                            4802 Tenth Ave                          
## 2751                       3117 Webster Avenue                          
## 2752                            127 S Broadway                          
## 2753                     785 Mamaroneck Avenue                          
## 2754                            310 East 14 St                          
## 2755                     222 West Pearl Street                          
## 2756                          1037 Main Street                          
## 2757                 5 Dakota Drive, Suite 200                          
## 2758                           21 Wilkins Road                          
## 2759                     700 White Plains Road                          
## 2760                      1656 Champlin Avenue                          
## 2761                       119-19 Graham Court                          
## 2762                  111-26 Park Nursing Home                          
## 2763                         2100 Wehrle Drive                          
## 2764                  1740-70 Eastchester Road                          
## 2765                 6131 Big Tree Road, Box F                          
## 2766                       169 Riverside Drive                          
## 2767                          2157 Main Street                          
## 2768                  206 South Elmwood Avenue                          
## 2769                          1020 Mary Street                          
## 2770                          107 W 4th Street                          
## 2771                      240 Old Country Road                          
## 2772                         200 Varick Street                          
## 2773                         4422 Third Avenue                          
## 2774                1500 William Floyd Parkway                          
## 2775                      756 Pre-Emption Road                          
## 2776                         26 Bleeker Street                          
## 2777                        33-23 Union Street                          
##               Operator.City Operator.State Operator.Zip.Code
## 1                Binghamton       New York             13905
## 2              New Hartford       New York             13413
## 3                  Syracuse       New York             13205
## 4                    Warsaw       New York             14569
## 5                Wellsville       New York             14897
## 6                   Buffalo       New York             14202
## 7               Garden City       New York             11530
## 8                   Buffalo       New York             14202
## 9               Farmingdale       New York             11735
## 10                 New York       New York             10016
## 11              Garden City       New York             11530
## 12                   Oneida       New York             13421
## 13                 New York       New York             10016
## 14               Binghamton       New York             13905
## 15               Lackawanna       New York             14218
## 16                  Jamaica       New York             11434
## 17                  Buffalo       New York             14215
## 18                 New York       New York             10019
## 19            Mercer Island       New York             98040
## 20             Saranac Lake       New York             12983
## 21                     Rome       New York             13441
## 22                    Olean       New York             14760
## 23                Rochester       New York             14620
## 24              Plattsburgh       New York             12901
## 25                 Brooklyn       New York             11201
## 26                  Yonkers       New York             10701
## 27                 New York       New York             10017
## 28               East Islip       New York             11730
## 29               East Hills       New York             11548
## 30                   Latham       New York             12110
## 31                   Albany       New York             12207
## 32               Germantown       New York             12526
## 33                 Brooklyn       New York             11235
## 34              East Aurora       New York             14052
## 35                 New York       New York             10013
## 36                     Rome       New York             13440
## 37              Cooperstown       New York             13326
## 38               Middletown       New York             10941
## 39             Poughkeepsie       New York             12601
## 40         Long Island City       New York             11101
## 41                 New York       New York             10013
## 42              Schenectady       New York             12304
## 43                    Bronx       New York             10461
## 44                 New York       New York             10013
## 45                 Elmsford       New York             10523
## 46                Watertown       New York             13601
## 47                  Mineola       New York             11501
## 48                     Troy       New York             12180
## 49                 Brooklyn       New York             11237
## 50             White Plains       New York             10601
## 51                 New York       New York             10016
## 52                    Bronx       New York             10467
## 53                    Bronx       New York             10461
## 54                 New York       New York             10016
## 55            Staten Island       New York             10305
## 56                    Bronx       New York             10467
## 57                    Bronx       New York             10470
## 58                    Bronx       New York             10453
## 59              Schenectady       New York             12304
## 60            Williamsville       New York             14221
## 61                Rochester       New York             14614
## 62             New Hartford       New York             13503
## 63          North Tarrytown       New York             10591
## 64                 New York       New York             10013
## 65               West Islip       New York             11795
## 66                 Lockport       New York             14094
## 67          Clifton Springs       New York             14432
## 68                Manhasset       New York             11030
## 69                 New York       New York             10025
## 70                   Hudson       New York             12534
## 71             Poughkeepsie       New York             12601
## 72                   Carmel       New York             10512
## 73                   Oswego       New York             13126
## 74                    Olean       New York             14760
## 75                 Valhalla       New York             10595
## 76            Staten Island       New York             10305
## 77                    Bronx       New York             10461
## 78                Elizabeth       New York             12932
## 79                Hempstead       New York             11550
## 80                Rochester       New York             14620
## 81                 Brooklyn       New York             11223
## 82                 New York       New York             10003
## 83                    Bronx       New York             10467
## 84            New Hyde Park       New York             11040
## 85                Rochester       New York             14620
## 86                    Bronx       New York             10461
## 87                Peekskill       New York             10566
## 88           Port Jefferson       New York             11777
## 89                 New York       New York             10013
## 90                 New York       New York             10021
## 91                 Brooklyn       New York             11210
## 92                 Syracuse       New York             13214
## 93               Ogdensburg       New York             13669
## 94                 New City       New York             10956
## 95                    Bronx       New York             10461
## 96              North Creek       New York             12853
## 97                  Potsdam       New York             13676
## 98           Middle Village       New York             11379
## 99                    Utica       New York             13502
## 100               Rochester       New York             14619
## 101                   Utica       New York             13502
## 102                New York       New York             10013
## 103                New York       New York             10025
## 104           Spring Valley       New York             10977
## 105               Peekskill       New York             10566
## 106               Amsterdam       New York             12010
## 107          Port Jefferson       New York             11777
## 108                   Bronx       New York             10458
## 109                New York       New York             10036
## 110                Valhalla       New York             10595
## 111             Morrisville       New York             13408
## 112                New York       New York             10016
## 113                New York       New York             10028
## 114                New York       New York             10021
## 115                   Bronx       New York             10461
## 116                Cornwall       New York             12550
## 117               Rochester       New York             14609
## 118               Callicoon       New York             12723
## 119                   Bronx       New York             10453
## 120                 Jamaica       New York             11434
## 121                New York       New York             10013
## 122                Syracuse       New York             13203
## 123             Schenectady       New York             12308
## 124                   Bronx       New York             10456
## 125                New York       New York             10012
## 126                Brooklyn       New York             11207
## 127                    Bath       New York             14810
## 128                  Latham       New York             12110
## 129                   Bronx       New York             10461
## 130                New York       New York             10002
## 131           East Elmhurst       New York             11369
## 132           New Hyde Park       New York             11040
## 133                  Albany       New York             12208
## 134                Valhalla       New York             10595
## 135             North Creek       New York             12853
## 136                  Oswego       New York             13126
## 137                New York       New York             10016
## 138               Manhasset       New York             11030
## 139                   Lyons       New York             14489
## 140                   Bronx       New York             10466
## 141                New York       New York             10012
## 142                Syracuse       New York             13203
## 143                  Albany       New York             12206
## 144            New Hartford       New York             13503
## 145                  Skokie       New York             60076
## 146                Westbury       New York        11590-6694
## 147             Cooperstown       New York             13326
## 148               Rochester       New York             14692
## 149               Rochester       New York             14609
## 150            New Hartford       New York             13503
## 151               Watertown       New York             13601
## 152          Port Jefferson       New York             11777
## 153                Syracuse       New York             13219
## 154                New York       New York             10021
## 155                Brooklyn       New York             11208
## 156                Cornwall       New York             12518
## 157                New York       New York             10023
## 158                   Bronx       New York             10469
## 159                Brooklyn       New York             11210
## 160                   Bronx       New York             10461
## 161                Syracuse       New York             13203
## 162               Rochester       New York             14620
## 163                    Troy       New York             12180
## 164                New York       New York             10010
## 165                 Batavia       New York             14020
## 166                New York       New York             10023
## 167                Syracuse       New York             13210
## 168                  Ithaca       New York             14850
## 169                   Bronx       New York             10457
## 170             Cooperstown       New York             13326
## 171                New York       New York             10014
## 172        Englewood Cliffs       New York         076322512
## 173                New York       New York             10021
## 174                New York       New York             10013
## 175                Syracuse       New York             13206
## 176                New York       New York             10013
## 177                New York       New York             10035
## 178             Glens Falls       New York             12801
## 179                Brooklyn       New York             11211
## 180               Manhasset       New York             11030
## 181      Huntington Station       New York             11746
## 182                 Jamaica       New York             11434
## 183              Staatsburg       New York             12580
## 184                   Utica       New York             13501
## 185               Getzville       New York             14068
## 186                Brooklyn       New York             11201
## 187                Brooklyn       New York             11219
## 188                    Bath       New York             14810
## 189               Rochester       New York             14609
## 190               Rochester       New York             14621
## 191               Oceanside       New York             11572
## 192                   Bronx       New York             10453
## 193                 Buffalo       New York             14207
## 194                    Troy       New York             12180
## 195           New Hyde Park       New York             11040
## 196                Ossining       New York             10562
## 197          Alexandria Bay       New York             13607
## 198               Watertown       New York             13601
## 199                New York       New York             10013
## 200                  Hudson       New York             12534
## 201                   Bronx       New York             10461
## 202                Kingston       New York             12401
## 203                   Bronx       New York             10462
## 204        Saratoga Springs       New York             12866
## 205              Wellsville       New York             14895
## 206                Hamilton       New York             13346
## 207                Brooklyn       New York             11237
## 208               Rochester       New York             14609
## 209                   Bronx       New York             10457
## 210               Peekskill       New York             10566
## 211                   Bronx       New York             10457
## 212                  Albany       New York             12203
## 213                 Buffalo       New York             14214
## 214                New York       New York             10029
## 215             Glens Falls       New York             12801
## 216                   Bronx       New York             10467
## 217                New York       New York             10003
## 218                 Jamaica       New York             11434
## 219                   Bronx       New York             10453
## 220               Amsterdam       New York             12010
## 221                New York       New York             10010
## 222                New York       New York             10021
## 223           New Hyde Park       New York             11040
## 224                New York       New York             10032
## 225                New York       New York             10029
## 226                 Buffalo       New York             14214
## 227                   Plano       New York             75093
## 228                New York       New York             10016
## 229                 Jamaica       New York             11434
## 230             Canandaigua       New York             14424
## 231                New York       New York             10025
## 232                  Vestal       New York             13850
## 233               Manhasset       New York             11030
## 234                New York       New York             10013
## 235            West Babylon       New York             11704
## 236            Orchard Park       New York             14127
## 237           Central Islip       New York             11722
## 238            Gloversville       New York             12078
## 239               Nashville       New York             37203
## 240                 Jamaica       New York             11418
## 241                  Albany       New York             12208
## 242               Hempstead       New York             11550
## 243                Brooklyn       New York             11210
## 244           Staten Island       New York             10301
## 245              Ogdensburg       New York             13669
## 246                 Dunkirk       New York             14048
## 247             Schenectady       New York             12303
## 248                 Buffalo       New York             14220
## 249                Areverne       New York             11692
## 250                      Ny       New York             10010
## 251               Amsterdam       New York             12010
## 252                New York       New York             10013
## 253                   Bronx       New York             10469
## 254               New Paltz       New York             12561
## 255                Elmsford       New York             10523
## 256                  Albion       New York             14411
## 257               Hempstead       New York             11550
## 258                  Albany       New York             12206
## 259            Ballston Spa       New York             12020
## 260                   Bronx       New York             10469
## 261                Cornwall       New York             12518
## 262                New York       New York             10012
## 263                New York       New York             10013
## 264               Nashville       New York             37203
## 265                    Troy       New York             12180
## 266                New York       New York             10016
## 267                   Bronx       New York             10467
## 268                New York       New York             10021
## 269                   Bronx       New York             10457
## 270                  Geneva       New York             14456
## 271        Rockville Center       New York             11570
## 272              Horseheads       New York             14845
## 273                   Bronx       New York             10461
## 274               Rochester       New York             14642
## 275             Dobbs Ferry       New York             10522
## 276                   Bronx       New York             10467
## 277                Cortland       New York             13045
## 278           Rockaway Park       New York             11694
## 279                 Beverly       New York             01915
## 280                 Dunkirk       New York             14048
## 281                New York       New York             10029
## 282                 Buffalo       New York             14212
## 283                   Bronx       New York             10467
## 284                  Oswego       New York             13126
## 285             Cooperstown       New York             13326
## 286                 Sanborn       New York             14132
## 287                Syracuse       New York             13212
## 288               Watertown       New York             13601
## 289                    Troy       New York             12180
## 290                New York       New York             10025
## 291             Schenectady       New York             12304
## 292               Rhinebeck       New York             12572
## 293              Wheatfield       New York             14304
## 294                New York       New York             10013
## 295                Brooklyn       New York             11203
## 296           Staten Island       New York             10303
## 297                  Oswego       New York             13126
## 298                  Fulton       New York             13069
## 299               Jamestown       New York             14701
## 300                  Albany       New York             12237
## 301                Cornwall       New York             12518
## 302                  Hudson       New York             12534
## 303               Glen Cove       New York             11542
## 304              Binghamton       New York             13905
## 305            New Hartford       New York             13413
## 306                Brooklyn       New York             11215
## 307                Flushing       New York             11354
## 308             Garden City       New York             11530
## 309                   Bronx       New York             10467
## 310                Kingston       New York             12401
## 311                Brooklyn       New York             11238
## 312                  Albany       New York             12208
## 313                  Vestal       New York             13850
## 314                   Olean       New York             14760
## 315          Port Jefferson       New York             11777
## 316                   Bronx       New York             10453
## 317                New York       New York             10027
## 318        Saratoga Springs       New York             12866
## 319                   Bronx       New York             10470
## 320             Schenectady       New York             12304
## 321            Poughkeepsie       New York             12601
## 322             Springville       New York             14141
## 323                New York       New York             10029
## 324                  Elmira       New York             14905
## 325               Rochester       New York             14609
## 326                 Buffalo       New York             14214
## 327               Brentwood       New York             11717
## 328                Brooklyn       New York             11224
## 329               Rochester       New York             14620
## 330                 Buffalo       New York             14215
## 331                New York       New York             10016
## 332                New York       New York             10013
## 333                 Jamaica       New York             11434
## 334             Canandaigua       New York             14424
## 335                New York       New York             11238
## 336                    Troy       New York             12180
## 337                Brooklyn       New York             11211
## 338                   Utica       New York             13502
## 339               Rochester       New York             14626
## 340                  Geneva       New York             14456
## 341               Watertown       New York             13601
## 342                New York       New York             10013
## 343                  Albany       New York             12208
## 344               Peekskill       New York             10566
## 345                   Bronx       New York             10461
## 346            Lake Success       New York             11021
## 347                 Jamaica       New York             11434
## 348                 Bayside       New York             11360
## 349               Hempstead       New York             11550
## 350                New York       New York             10036
## 351           Staten Island       New York             10310
## 352                Brooklyn       New York             11219
## 353                   Bronx       New York             10453
## 354                  Medina       New York             14103
## 355             North Creek       New York             12853
## 356               Peekskill       New York             10566
## 357                 Massena       New York             13662
## 358                   Bronx       New York             10453
## 359                 Hornell       New York             14843
## 360                   Bronx       New York             10467
## 361              Binghamton       New York             13905
## 362                   Utica       New York             13503
## 363                New York       New York             10029
## 364                Cornwall       New York             12518
## 365                New York       New York             10021
## 366              Middletown       New York             10940
## 367                New York       New York             10010
## 368             Schenectady       New York             12304
## 369                 Dunkirk       New York             14048
## 370                New York       New York             10001
## 371        Saratoga Springs       New York             12866
## 372                New York       New York             10003
## 373                   Bronx       New York             10467
## 374                  Hollis       New York             11423
## 375             Glens Falls       New York             12801
## 376                Herkimer       New York             13350
## 377                New York       New York             10032
## 378                   Bronx       New York             10470
## 379               Rochester       New York             14626
## 380            Saranac Lake       New York             12983
## 381               Rochester       New York             14620
## 382                    Troy       New York             12180
## 383                   Bronx       New York             10453
## 384           Rockaway Park       New York             11694
## 385                New York       New York             10032
## 386                New York       New York             10032
## 387                   Bronx       New York             10461
## 388        Saratoga Springs       New York             12866
## 389                New York       New York             10016
## 390            Forest Hills       New York             11375
## 391                 Mineola       New York             11501
## 392                 Batavia       New York             14020
## 393             North Creek       New York             12853
## 394                    Troy       New York             12180
## 395                New York       New York             10021
## 396                New City       New York             10956
## 397                New York       New York             10021
## 398             Schenectady       New York             12308
## 399                 Suffern       New York             10901
## 400          Alexandria Bay       New York             13607
## 401                New York       New York             10021
## 402        Yorktown Heights       New York             10598
## 403               Manhasset       New York             11030
## 404                 Buffalo       New York             14215
## 405                Cornwall       New York             12518
## 406               Rochester       New York             14620
## 407               Riverdale       New York             10471
## 408                Cortland       New York             13045
## 409                Cortland       New York             13045
## 410                New York       New York             10012
## 411          North Syracuse       New York             13212
## 412                Ossining       New York             10562
## 413                 Buffalo       New York             14214
## 414                New York       New York             10027
## 415                 Buffalo       New York             14203
## 416                New York       New York             10016
## 417               Rochester       New York             14626
## 418                New York       New York             10032
## 419                Ossining       New York             10562
## 420              West Islip       New York             11795
## 421                Brooklyn       New York             11211
## 422             Schenectady       New York             12308
## 423             Canandaigua       New York             14424
## 424                 Buffalo       New York             14214
## 425           Staten Island       New York             10303
## 426               Nashville       New York             37203
## 427                Brooklyn       New York             11217
## 428                New York       New York             10016
## 429                Brooklyn       New York             11226
## 430                New York       New York             10032
## 431                Brooklyn       New York             11226
## 432               Rochester       New York             14609
## 433           College Point       New York             11354
## 434                Harriman       New York             10926
## 435                 Suffern       New York             10901
## 436                    Cuba       New York             14727
## 437               Brockport       New York             14420
## 438               Rochester       New York             14623
## 439           Niagara Falls       New York             14302
## 440                New York       New York             10016
## 441                Syracuse       New York             13219
## 442         Port Washington       New York             11050
## 443                 Warwick       New York             10990
## 444                 Kenmore       New York             14217
## 445                Brooklyn       New York             11212
## 446               Riverhead       New York             11901
## 447                New York       New York             10016
## 448                Flushing       New York             11355
## 449                Brooklyn       New York             11237
## 450                 Jamaica       New York             11434
## 451               Brentwood       New York             11717
## 452                New York       New York             10016
## 453                    Troy       New York             12180
## 454                   Bronx       New York             10456
## 455               Rochester       New York             14620
## 456             Carle Place       New York             11514
## 457                   Bronx       New York             10461
## 458                   Bronx       New York             10467
## 459             Island Park       New York             11558
## 460            White Plains       New York             10601
## 461                Flushing       New York             11365
## 462               Rochester       New York             14603
## 463                   Bronx       New York             10467
## 464             Guilderland       New York             12084
## 465                    Rome       New York             13440
## 466                Carthage       New York             13619
## 467             Schenectady       New York             12308
## 468                Elmsford       New York             10523
## 469          Port Jefferson       New York             11777
## 470                New York       New York             10032
## 471            Johnson City       New York             13790
## 472                 Buffalo       New York             14203
## 473                 Jamaica       New York             11432
## 474               Watertown       New York             13601
## 475                New York       New York             10002
## 476           New Hyde Park       New York             11040
## 477                   Bronx       New York             10461
## 478               Star Lake       New York             13690
## 479                  Malone       New York             12953
## 480               Rochester       New York             14603
## 481                New York       New York             10010
## 482                   Bronx       New York             10452
## 483            Johnson City       New York             13790
## 484                  Goshen       New York             10924
## 485                    Troy       New York             12182
## 486               Rochester       New York             14609
## 487                Brooklyn       New York         112070000
## 488                New York       New York             10016
## 489                New York       New York             10032
## 490                Westbury       New York        11590-6694
## 491          Port Jefferson       New York             11777
## 492           Spring Valley       New York             10977
## 493             Plattsburgh       New York             12901
## 494              Wellsville       New York             14895
## 495                  Albany       New York             12208
## 496                New York       New York             10011
## 497                 Jamaica       New York             11434
## 498           New Hyde Park       New York             11040
## 499                   Bronx       New York             10463
## 500                   Bronx       New York             10459
## 501               Glen Cove       New York             11542
## 502             Schenectady       New York             12304
## 503                Brooklyn       New York             11211
## 504               Rochester       New York             14621
## 505                New York       New York             10021
## 506                 Pulaski       New York             13142
## 507                   Bronx       New York             10467
## 508                New York       New York             10016
## 509                 Moravia       New York             13118
## 510                  Albany       New York             12208
## 511                 Yonkers       New York             10701
## 512                Brooklyn       New York             11230
## 513                Brooklyn       New York             11219
## 514                 Buffalo       New York             14203
## 515           Niagara Falls       New York             14304
## 516        Long Island City       New York             11103
## 517                   Bronx       New York             10459
## 518                Allegany       New York             14706
## 519                New York       New York             10003
## 520                   Bronx       New York             10459
## 521           Staten Island       New York             10305
## 522                Brooklyn       New York             11214
## 523                New York       New York             10003
## 524               Riverdale       New York             10471
## 525               Rochester       New York             14620
## 526              Long Beach       New York             11561
## 527                Brooklyn       New York             11211
## 528             Schenectady       New York             12308
## 529                New York       New York             10012
## 530                 Jamaica       New York             11432
## 531               Patchogue       New York             11772
## 532                New York       New York             10013
## 533                 Oakdale       New York             11769
## 534                  Albany       New York             12208
## 535                    Troy       New York             12180
## 536               Watertown       New York             13601
## 537                 Buffalo       New York             14214
## 538             Glens Falls       New York             12801
## 539        Saratoga Springs       New York             12866
## 540                 Jamaica       New York             11434
## 541           New Hyde Park       New York             11040
## 542                Ossining       New York             10562
## 543                  Albany       New York             12208
## 544                 Jamaica       New York             11432
## 545            Gloversville       New York             12078
## 546                 Buffalo       New York             14202
## 547                New York       New York             10003
## 548                New York       New York             10013
## 549                   Bronx       New York             10459
## 550               Rochester       New York             14614
## 551                   Bronx       New York             10467
## 552                Cornwall       New York             12518
## 553                New York       New York             10011
## 554               Peekskill       New York             10566
## 555                  Beacon       New York             12508
## 556             Schenectady       New York             12304
## 557            Johnson City       New York             13790
## 558               Rhinebeck       New York             12572
## 559                Flushing       New York             11355
## 560                Brooklyn       New York             11209
## 561                 Jamaica       New York             11418
## 562            Poughkeepsie       New York             12603
## 563                 Buffalo       New York             14215
## 564               Tarrytown       New York             10591
## 565               Jamestown       New York             14701
## 566                   Bronx       New York             10467
## 567                  Ithaca       New York             14850
## 568               Manhasset       New York             11030
## 569                New York       New York             10021
## 570                 Yonkers       New York             10701
## 571                New York       New York             11210
## 572                New York       New York             10038
## 573                New York       New York             10016
## 574                Penn Yan       New York             14527
## 575               Glen Oaks       New York             11004
## 576                 Oneonta       New York             13820
## 577                Brooklyn       New York             11218
## 578               Rochester       New York             14609
## 579             North Creek       New York             12853
## 580                New York       New York             10010
## 581                New City       New York             10956
## 582                New York       New York             10013
## 583                 Buffalo       New York             14214
## 584                 Buffalo       New York             14214
## 585                New York       New York             10016
## 586               Liverpool       New York             13088
## 587             Cooperstown       New York             13326
## 588             Schenectady       New York             12304
## 589               Peekskill       New York             10566
## 590               Rochester       New York             14620
## 591               Rochester       New York             14642
## 592                New York       New York             10010
## 593                   Bronx       New York             10467
## 594                New York       New York             10016
## 595           Staten Island       New York             10305
## 596                New York       New York             10003
## 597               Nashville       New York             37203
## 598        Saratoga Springs       New York             12866
## 599                New York       New York             10016
## 600                    Troy       New York             12180
## 601        Saratoga Springs       New York             12866
## 602             Cooperstown       New York             13326
## 603                   Bronx       New York             10467
## 604                  Albany       New York             12208
## 605                  Geneva       New York             14456
## 606                  Albany       New York             12208
## 607                 Jamaica       New York             11434
## 608               Rochester       New York             14620
## 609                  Albany       New York             12207
## 610               Watertown       New York             13601
## 611              Brookville       New York             11545
## 612               Dansville       New York             14437
## 613               Rhinebeck       New York             12572
## 614               Nesconset       New York             11767
## 615                  Ithaca       New York             14850
## 616                New York       New York             10003
## 617                   Bronx       New York             10453
## 618                   Bronx       New York             10466
## 619                Brewster       New York             10509
## 620                 Potsdam       New York             13676
## 621              Queensbury       New York             12804
## 622           Montour Falls       New York             14865
## 623                   Bronx       New York             10467
## 624                 Buffalo       New York             14203
## 625            White Plains       New York             10601
## 626            New Hartford       New York             13503
## 627               Sayre, Pa       New York             18840
## 628                Woodbury       New York             11797
## 629                   Corry       New York             16407
## 630                   Olean       New York             14760
## 631               Peekskill       New York             10566
## 632               Manhasset       New York             11030
## 633                    Troy       New York             12180
## 634                  Albany       New York             12208
## 635                Brooklyn       New York             11229
## 636                   Bronx       New York             10457
## 637                  Queens       New York             11432
## 638             Garden City       New York             11530
## 639           New Hyde Park       New York             11040
## 640             Glens Falls       New York             12801
## 641                New York       New York             10003
## 642               Rochester       New York             14609
## 643             Schenectady       New York             12304
## 644               Peekskill       New York             10566
## 645               Peekskill       New York             10566
## 646                 Buffalo       New York             14203
## 647                New York       New York             10028
## 648           Staten Island       New York             10304
## 649                Lowville       New York             13367
## 650                  Albany       New York             12207
## 651                 Buffalo       New York             14214
## 652           Williamsville       New York             14221
## 653             Schenectady       New York             12308
## 654                Melville       New York             11747
## 655           Baldwinsville       New York             13027
## 656                 Jamaica       New York             11418
## 657          Valley Cottage       New York             10989
## 658                New York       New York             10013
## 659               Rochester       New York             14609
## 660                Syracuse       New York             13203
## 661               Jamestown       New York             14701
## 662                  Auburn       New York             13021
## 663             Cheektowaga       New York             14227
## 664                 Jamaica       New York             11434
## 665               Hauppauge       New York             11788
## 666               Rochester       New York             14623
## 667                Melville       New York             11747
## 668               Hawthorne       New York             10532
## 669             Canandaigua       New York             14424
## 670      Huntington Station       New York             11746
## 671            Saranac Lake       New York             12983
## 672                   Bronx       New York             10467
## 673                   Bronx       New York             10467
## 674         Franklin Square       New York             11010
## 675                New York       New York             10001
## 676                    Rome       New York             13440
## 677                New York       New York             10019
## 678                  Malone       New York             12953
## 679               Rochester       New York             14620
## 680                  Monsey       New York             10952
## 681                 Yonkers       New York             10701
## 682                 Bayside       New York             11361
## 683            Johnson City       New York             13790
## 684                New York       New York             10012
## 685                New York       New York             10027
## 686               Oceanside       New York             11572
## 687                 Buffalo       New York             14203
## 688                New York       New York             10016
## 689                 Pulaski       New York             13142
## 690                   Essex       New York             12932
## 691             Schenectady       New York             12304
## 692                New York       New York             10002
## 693                Fairport       New York             14450
## 694             Cooperstown       New York             13326
## 695           Staten Island       New York             10305
## 696                Fairport       New York             14450
## 697               Rochester       New York             14620
## 698             Glens Falls       New York             12801
## 699                 Potsdam       New York             13676
## 700                 Astoria       New York             11105
## 701                   Delhi       New York             13753
## 702              Great Neck       New York             11021
## 703                    Troy       New York             12180
## 704                  Albany       New York             12208
## 705                New York       New York             10012
## 706           Staten Island       New York             10305
## 707                  Monsey       New York             10952
## 708               Jamestown       New York             14701
## 709             North Creek       New York             12853
## 710                    Rome       New York             13440
## 711                   Bronx       New York             10459
## 712        Saratoga Springs       New York             12866
## 713                   Utica       New York             13501
## 714                Valhalla       New York             10595
## 715             Plattsburgh       New York             12901
## 716        Croton-On-Hudson       New York             10520
## 717                  Goshen       New York             10924
## 718                 Jamaica       New York             11434
## 719                   Bronx       New York             10453
## 720                 Buffalo       New York             14214
## 721             Schenectady       New York             12304
## 722               Rochester       New York             14607
## 723             Schenectady       New York             12304
## 724              Long Beach       New York             11561
## 725                New York       New York             10021
## 726             Canandaigua       New York             14424
## 727                   Bronx       New York             10453
## 728                   Bronx       New York             10467
## 729              Binghamton       New York             13902
## 730                New York       New York             10016
## 731               Peekskill       New York             10566
## 732               Rochester       New York             14620
## 733                Lewiston       New York             14092
## 734             Cooperstown       New York             13326
## 735                 Congers       New York             10920
## 736                Fairport       New York             14450
## 737                New York       New York             10013
## 738                New York       New York             10016
## 739                Syracuse       New York             13202
## 740                New York       New York             10016
## 741               Patchogue       New York             11772
## 742                   Gerry       New York             14760
## 743             Schenectady       New York             12308
## 744                 Jamaica       New York             11434
## 745                Syracuse       New York             13205
## 746              Huntington       New York             11743
## 747            Gloversville       New York             12078
## 748                Brooklyn       New York             11223
## 749                  Albany       New York             12207
## 750                Hamilton       New York             13346
## 751               Peekskill       New York             10566
## 752                New York       New York             10016
## 753                Syracuse       New York             13203
## 754                    Troy       New York             12180
## 755                 Yonkers       New York             10701
## 756            Little Falls       New York             13365
## 757                Brooklyn       New York             11212
## 758                 Buffalo       New York             14220
## 759                Flushing       New York             11355
## 760                 Pulaski       New York             13142
## 761           New Hyde Park       New York             11040
## 762               Rochester       New York             14620
## 763                   Bronx       New York             10458
## 764                New York       New York             10012
## 765                  Albany       New York             12208
## 766                Herkimer       New York             13350
## 767           Niagara Falls       New York             14302
## 768                 Bayside       New York             11361
## 769                Brooklyn       New York             11204
## 770            New Rochelle       New York             10805
## 771                 Buffalo       New York             14220
## 772                Brooklyn       New York             11204
## 773             Schenectady       New York             12308
## 774                 Buffalo       New York             14203
## 775                Cornwall       New York             12518
## 776                 Norwich       New York             13815
## 777           Staten Island       New York             10305
## 778                  Ithaca       New York             14850
## 779                Brooklyn       New York             11211
## 780                   Bronx       New York             10467
## 781                New York       New York             10021
## 782                   Bronx       New York             10467
## 783                    Rome       New York             13440
## 784                Brooklyn       New York             11237
## 785                   Bronx       New York             10467
## 786             Port Jervis       New York             12771
## 787                New York       New York             10013
## 788                  Vestal       New York             13850
## 789               Rochester       New York             14620
## 790                New York       New York             10016
## 791               Hempstead       New York             11550
## 792                New York       New York             10016
## 793                  Canton       New York             13617
## 794                   Bronx       New York             10467
## 795           New Hyde Park       New York             11040
## 796               Rochester       New York             14603
## 797                  Hudson       New York             12534
## 798                   Bronx       New York             10470
## 799             Schenectady       New York             12308
## 800                Southold       New York             11971
## 801               Glen Head       New York             11545
## 802                 Potsdam       New York             13676
## 803                   Bronx       New York             10467
## 804  Port Jefferson Station       New York             11776
## 805                  Ithaca       New York             14850
## 806           Rockaway Park       New York             11694
## 807                New York       New York             10031
## 808               Rochester       New York             14620
## 809               Peekskill       New York             10566
## 810                   Bronx       New York             10461
## 811               Rochester       New York             14620
## 812                 Pawling       New York             12564
## 813               Rochester       New York             14607
## 814               Scarsdale       New York             10583
## 815               Peekskill       New York             10566
## 816                New York       New York             10021
## 817             Glens Falls       New York             12801
## 818                 Oneonta       New York             13820
## 819                 Buffalo       New York             14220
## 820              Monticello       New York             12754
## 821               Nashville       New York             37203
## 822           New Hyde Park       New York             11040
## 823                Brooklyn       New York             11226
## 824           New Hyde Park       New York             11040
## 825                Syracuse       New York             13205
## 826                Brooklyn       New York             11201
## 827            New Rochelle       New York             10805
## 828                New York       New York             10036
## 829               Peekskill       New York             10566
## 830                Brooklyn       New York             11220
## 831                 Jamaica       New York             11434
## 832                  Albany       New York             12208
## 833                   Bronx       New York             10467
## 834                New York       New York             10035
## 835                   Bronx       New York             10457
## 836             Fort Edward       New York             12828
## 837           New Hyde Park       New York             11040
## 838                  Hudson       New York             12534
## 839             Schenectady       New York             12308
## 840                 Dunkirk       New York             14048
## 841                 Jamaica       New York             11434
## 842               Hempstead       New York             11550
## 843             Cooperstown       New York             13326
## 844             Schenectady       New York             12308
## 845               Rochester       New York             14609
## 846                Syracuse       New York             13202
## 847            Poughkeepsie       New York             12601
## 848             Cooperstown       New York             13326
## 849                New York       New York             10019
## 850                   Bronx       New York             10457
## 851                  Irving       New York             14081
## 852              Whitestone       New York             11357
## 853                  Albany       New York             12208
## 854               Greenport       New York             11944
## 855               Rochester       New York             14609
## 856                Melville       New York             11747
## 857             Schenectady       New York             12304
## 858                     Rye       New York             10580
## 859            New Hartford       New York             13503
## 860                 Yonkers       New York             10701
## 861                New York       New York             10002
## 862                   Bronx       New York             10467
## 863                Clarence       New York             14031
## 864                   Bronx       New York             10461
## 865                   Bronx       New York             10461
## 866                 Aedsley       New York             10502
## 867                   Bronx       New York             10459
## 868             Cooperstown       New York             13326
## 869                New York       New York             10013
## 870                  Oneida       New York             13421
## 871                Syracuse       New York             13205
## 872                New York       New York             10025
## 873                Syracuse       New York             13202
## 874             Schenectady       New York             12308
## 875                  Warsaw       New York             14569
## 876                New York       New York             10012
## 877                New York       New York             10016
## 878            Mount Vernon       New York             10552
## 879        Saratoga Springs       New York             12866
## 880              Middletown       New York             10941
## 881                  Warsaw       New York             14569
## 882             Glens Falls       New York             12801
## 883               Westfield       New York             14787
## 884                   Bronx       New York             10467
## 885                   Bronx       New York             10461
## 886           Staten Island       New York             10314
## 887                Brooklyn       New York             11238
## 888                   Bronx       New York             10467
## 889        Saratoga Springs       New York             12866
## 890                Brooklyn       New York             11213
## 891                New York       New York             10002
## 892               Rochester       New York             14620
## 893                New York       New York             10013
## 894                 Buffalo       New York             14214
## 895                 Bethage       New York             11714
## 896                New York       New York             10012
## 897                 Buffalo       New York             14215
## 898                Brooklyn       New York             11224
## 899           Staten Island       New York             10305
## 900                Camillus       New York             13031
## 901                 Buffalo       New York             14215
## 902                 Buffalo       New York             14214
## 903                 Aedsley       New York             10502
## 904                   Olean       New York             14760
## 905               Johnstown       New York        12095-2308
## 906                 Amherst       New York             14228
## 907                New York       New York             10016
## 908                Brooklyn       New York             11211
## 909               Manhasset       New York             11030
## 910                   Bronx       New York             10462
## 911            Poughkeepsie       New York             12601
## 912                New York       New York             10013
## 913                New York       New York             10013
## 914                   Bronx       New York             10467
## 915                 Jamaica       New York             11432
## 916             North Creek       New York             12853
## 917                   Bronx       New York             10459
## 918                Brooklyn       New York             11212
## 919             Cooperstown       New York             13326
## 920                  Hudson       New York             12534
## 921                New York       New York             10003
## 922               Mt Vernon       New York             10550
## 923                Cortland       New York             13045
## 924                New York       New York             10013
## 925               Tonawanda       New York             14150
## 926                Brooklyn       New York             11204
## 927                New York       New York             10016
## 928                  Le Roy       New York             14482
## 929                 Buffalo       New York             14213
## 930               Dansville       New York             11437
## 931                New York       New York             10016
## 932                 Yonkers       New York             10701
## 933             Cooperstown       New York             13326
## 934                Elmsford       New York             10523
## 935                    Troy       New York             12180
## 936                New York       New York             10013
## 937           East Syracuse       New York             13057
## 938                Flushing       New York             11365
## 939              Huntington       New York             11745
## 940                Lynbrook       New York             11563
## 941              Binghamton       New York             13905
## 942             Burnt Hills       New York             12027
## 943                  Ithaca       New York             14850
## 944               Rochester       New York             14621
## 945                New York       New York             10029
## 946             Canandaigua       New York             14424
## 947                Valhalla       New York             10595
## 948              Ogdensburg       New York             13669
## 949                New York       New York             10023
## 950                New York       New York             10021
## 951             Plattsburgh       New York             12901
## 952                Lockport       New York             14094
## 953                  Albany       New York             12208
## 954                   Bronx       New York             10456
## 955             Floral Park       New York             11001
## 956                Brooklyn       New York             11230
## 957                Melville       New York             11747
## 958                  Albany       New York             12208
## 959                   Bronx       New York             10463
## 960                New York       New York             10031
## 961           Spring Valley       New York             10977
## 962                Flushing       New York             11354
## 963                Brooklyn       New York             11204
## 964                New York       New York             10003
## 965               Watertown       New York             13601
## 966                Syracuse       New York             13210
## 967            White Plains       New York             10601
## 968               Smithtown       New York             11787
## 969                  Ithaca       New York             14850
## 970                 Buffalo       New York             14203
## 971                 Norwich       New York             13815
## 972                 Batavia       New York             14020
## 973                   Olean       New York             14760
## 974             Schenectady       New York             12304
## 975                Brooklyn       New York             11238
## 976                 Jamaica       New York             11434
## 977                  Canton       New York             13617
## 978               Rochester       New York             14692
## 979                Valhalla       New York             10595
## 980                Brooklyn       New York             11201
## 981                Mt Kisco       New York             10549
## 982                New York       New York             10016
## 983                Brooklyn       New York             11224
## 984                Cortland       New York             13045
## 985              Huntington       New York             11743
## 986             Port Jervis       New York             12771
## 987                 Massena       New York             13662
## 988                Brooklyn       New York             11210
## 989            Johnson City       New York             13790
## 990                  Elmira       New York             14904
## 991                New York       New York             10003
## 992                   Bronx       New York             10460
## 993                New York       New York             10025
## 994            Saranac Lake       New York             12983
## 995                Harrison       New York             10528
## 996                Syracuse       New York             13202
## 997             White Plans       New York             10605
## 998               Amsterdam       New York             12010
## 999                New York       New York             10016
## 1000               New York       New York             10016
## 1001              Manhasset       New York             11030
## 1002               Brooklyn       New York             11204
## 1003             Binghamton       New York             13905
## 1004                   Eden       New York             14057
## 1005              Rochester       New York             14618
## 1006                 Scotia       New York             12302
## 1007                 Albany       New York             12207
## 1008               New York       New York             10012
## 1009              Amsterdam       New York             12010
## 1010            White Plans       New York             10605
## 1011               Mayville       New York             14757
## 1012                 Medina       New York             14103
## 1013                  Bronx       New York             10461
## 1014        North Tarrytown       New York             10591
## 1015              Rochester       New York             14609
## 1016                Buffalo       New York             14203
## 1017             Monticello       New York             12754
## 1018          New Hyde Park       New York             11040
## 1019       Saratoga Springs       New York             12866
## 1020                Dunkirk       New York             14048
## 1021                 Albany       New York             12208
## 1022              Patchogue       New York             11772
## 1023               Brooklyn       New York             11219
## 1024             West Islip       New York             11795
## 1025               Brooklyn       New York             11204
## 1026                  Bronx       New York             10461
## 1027       Rockville Centre       New York             11570
## 1028                 Ithaca       New York             14850
## 1029             Wellsville       New York             14895
## 1030                 Geneva       New York             14456
## 1031               Brooklyn       New York             11216
## 1032                  Bronx       New York             10461
## 1033              Oceanside       New York             11572
## 1034              Riverdale       New York             10471
## 1035            Glens Falls       New York             12801
## 1036               New York       New York             10025
## 1037               New York       New York             10003
## 1038            Schenectady       New York             12308
## 1039                  Bronx       New York             10459
## 1040             Hogansburg       New York             13655
## 1041           New Rochelle       New York             10805
## 1042                 Albany       New York             12208
## 1043                 Hudson       New York             12534
## 1044           Mount Vernon       New York             10552
## 1045            Chittenango       New York             13037
## 1046               New York       New York             10040
## 1047            Schenectady       New York             12304
## 1048               New York       New York             10016
## 1049              Manhasset       New York             11030
## 1050               New York       New York             10032
## 1051             Monticello       New York             12754
## 1052          Staten Island       New York             10310
## 1053                Buffalo       New York             14213
## 1054               Carthage       New York             13619
## 1055               New York       New York             10013
## 1056               New York       New York             10021
## 1057                 Medina       New York             14103
## 1058                 Monroe       New York             10950
## 1059           Poughkeepsie       New York             12601
## 1060               Westbury       New York        11590-6694
## 1061               Brooklyn       New York             11211
## 1062                 Oswego       New York             13126
## 1063               New York       New York             10016
## 1064             Jamesville       New York             13078
## 1065              Rochester       New York             14692
## 1066                 Goshen       New York             10924
## 1067               Brooklyn       New York             11228
## 1068               Kingston       New York             12401
## 1069              Rochester       New York             14609
## 1070                   Troy       New York             12180
## 1071             West Islip       New York             11795
## 1072               New York       New York             10032
## 1073           Johnson City       New York             13790
## 1074            Cooperstown       New York             13326
## 1075           Poughkeepsie       New York             12601
## 1076                Jamaica       New York             11434
## 1077               Syracuse       New York             13205
## 1078              Rochester       New York             14623
## 1079                Buffalo       New York             14203
## 1080                 Hudson       New York             12534
## 1081             Lackawanna       New York             14218
## 1082                Jamaica       New York             11432
## 1083                 Albany       New York             12208
## 1084          Williamsville       New York             14221
## 1085             Whitestone       New York             11357
## 1086            Cooperstown       New York             13326
## 1087                Yonkers       New York             10701
## 1088               New York       New York             10022
## 1089               New York       New York             10026
## 1090              Watertown       New York             13601
## 1091                 Auburn       New York             13021
## 1092              Rochester       New York             14626
## 1093               New York       New York             10013
## 1094               Herkimer       New York             13350
## 1095               Flushing       New York             11355
## 1096               New York       New York             10003
## 1097            Schenectady       New York             12304
## 1098               New York       New York             10023
## 1099               Areverne       New York             11692
## 1100            Cooperstown       New York             13326
## 1101               Brooklyn       New York             11219
## 1102               New York       New York             10021
## 1103               New York       New York             10021
## 1104           New Hartford       New York             13413
## 1105               New York       New York             10021
## 1106                Hornell       New York             14843
## 1107            Cooperstown       New York             13326
## 1108               Flushing       New York             11354
## 1109              Rochester       New York             14642
## 1110               Brooklyn       New York             11205
## 1111                 Hudson       New York             12534
## 1112               Syracuse       New York             13204
## 1113               Ossining       New York             10562
## 1114              Watertown       New York             13601
## 1115                Jamaica       New York             11418
## 1116              Hauppauge       New York             11788
## 1117               New York       New York             10010
## 1118               New York       New York             10013
## 1119               Garrison       New York             10524
## 1120               Brooklyn       New York             11230
## 1121               New York       New York             10013
## 1122                  Bronx       New York             10458
## 1123                 Cohoes       New York             12047
## 1124           Forest Hills       New York             11375
## 1125            Glens Falls       New York             12801
## 1126               Brooklyn       New York             11229
## 1127              Rochester       New York             14620
## 1128              Peekskill       New York             10566
## 1129               Flushing       New York             11355
## 1130          New Hyde Park       New York             11040
## 1131               New York       New York             10029
## 1132                Buffalo       New York             14203
## 1133                  Bronx       New York             10470
## 1134               New York       New York             10003
## 1135              Nashville       New York             37203
## 1136            Schenectady       New York             12304
## 1137              Rochester       New York             14609
## 1138           Gloversville       New York             12078
## 1139              Rochester       New York             14626
## 1140               New York       New York             10029
## 1141                Waltham       New York             02451
## 1142          New Hyde Park       New York             11040
## 1143               Lockport       New York             14094
## 1144             Long Beach       New York             11561
## 1145          Staten Island       New York             10305
## 1146          Staten Island       New York             10305
## 1147          Spring Valley       New York             10977
## 1148              Amsterdam       New York             12010
## 1149              Mt Vernon       New York             10550
## 1150             Binghamton       New York             13905
## 1151               Syracuse       New York             13202
## 1152               Valhalla       New York             10595
## 1153             Binghamton       New York             13902
## 1154                Buffalo       New York             14202
## 1155     Hastings-On-Hudson       New York             10706
## 1156          Sleepy Hollow       New York             10591
## 1157                 Malone       New York             12953
## 1158                  Olean       New York             14760
## 1159              Rochester       New York             14612
## 1160               Syracuse       New York             13203
## 1161               Brooklyn       New York             11211
## 1162               Brooklyn       New York             11210
## 1163               New York       New York             10013
## 1164            Cooperstown       New York             13326
## 1165              Hauppauge       New York             11788
## 1166            Plattsburgh       New York             12901
## 1167               Woodbury       New York             11797
## 1168             New Berlin       New York             13411
## 1169                Mineola       New York             11501
## 1170               Carthage       New York             13619
## 1171                  Bronx       New York             10467
## 1172               Elmsford       New York             10523
## 1173              Rochester       New York             14620
## 1174                 Newark       New York             14513
## 1175              Nashville       New York             37219
## 1176           Mount Morris       New York             14510
## 1177                   Troy       New York             12180
## 1178               Brooklyn       New York             11203
## 1179               New York       New York             10016
## 1180           White Plains       New York             10601
## 1181               New York       New York             10013
## 1182             West Islip       New York             11795
## 1183              Rochester       New York             14609
## 1184               Cornwall       New York             12518
## 1185             Ogdensburg       New York             13669
## 1186              Brockport       New York             14420
## 1187            Canandaigua       New York             14424
## 1188                  Bronx       New York             10459
## 1189            Farmingdale       New York             11735
## 1190          New Hyde Park       New York             11040
## 1191               Altamont       New York             12009
## 1192            Schenectady       New York             12308
## 1193               Kingston       New York             12401
## 1194                  Bronx       New York             10453
## 1195            Morrisville       New York             13408
## 1196              Lancaster       New York             14086
## 1197               New York       New York             10013
## 1198               New York       New York             10012
## 1199               New York       New York             10010
## 1200             Ogdensburg       New York             13669
## 1201               Edgemere       New York             11692
## 1202            Plattsburgh       New York             12901
## 1203           Slingerlands       New York             12159
## 1204           New Hartford       New York             13413
## 1205               New York       New York             10016
## 1206               New York       New York             10010
## 1207             Great Neck       New York             11010
## 1208               New York       New York             10016
## 1209               New York       New York             10026
## 1210               Mt Kisco       New York             10549
## 1211             Binghamton       New York             13905
## 1212               New York       New York             10029
## 1213               New York       New York             10023
## 1214                  Bronx       New York             10456
## 1215               New York       New York             10016
## 1216                  Bronx       New York             10457
## 1217               New York       New York             10003
## 1218                Beverly       New York             01915
## 1219                 Oneida       New York             13421
## 1220                 Hollis       New York             11432
## 1221               Brooklyn       New York             11212
## 1222                 Auburn       New York             13021
## 1223               New York       New York             10021
## 1224               New York       New York             10016
## 1225               New York       New York             10032
## 1226          Spring Valley       New York             10977
## 1227               New York       New York             10029
## 1228               New York       New York             10016
## 1229               Brooklyn       New York             11207
## 1230               Brooklyn       New York             11212
## 1231              Rochester       New York             14609
## 1232                Hornell       New York             14843
## 1233                 Wilton       New York             12831
## 1234              Nashville       New York             37203
## 1235                Jamaica       New York             11434
## 1236              Rochester       New York             14619
## 1237               Flushing       New York             11355
## 1238                Jamaica       New York             11434
## 1239                Webster       New York             14580
## 1240                Arverne       New York             11692
## 1241             Wellsville       New York             14895
## 1242           Far Rockaway       New York             11691
## 1243              Peekskill       New York             10566
## 1244              Rochester       New York             14626
## 1245            Glens Falls       New York             12801
## 1246                 Albany       New York             12208
## 1247          Spring Valley       New York             10977
## 1248              Rochester       New York             14626
## 1249                  Bronx       New York             10453
## 1250                 Inwood       New York             11096
## 1251                  Bronx       New York             10461
## 1252                 Oneida       New York             13421
## 1253               Lockport       New York             14094
## 1254               Cornwall       New York             12518
## 1255                 Elmira       New York             14905
## 1256                Oneonta       New York             13820
## 1257                Dunkirk       New York             14048
## 1258               Mt Kisco       New York             10549
## 1259                  Bronx       New York             10461
## 1260                Buffalo       New York             14203
## 1261          Staten Island       New York             10305
## 1262                  Bronx       New York             10467
## 1263          New Hyde Park       New York             11040
## 1264               Kingston       New York             12401
## 1265           Johnson City       New York             13790
## 1266                Pulaski       New York             13142
## 1267              Rochester       New York             14623
## 1268                 Geneva       New York             14456
## 1269               New York       New York             10025
## 1270               Cortland       New York             13045
## 1271                  Bronx       New York             10456
## 1272               New York       New York             10016
## 1273                Potsdam       New York             13676
## 1274         Port Jefferson       New York             11776
## 1275           White Plains       New York             10605
## 1276               New York       New York             10025
## 1277                  Bronx       New York             10457
## 1278                Batavia       New York             14020
## 1279                 Carmel       New York             10512
## 1280           New Hartford       New York             13503
## 1281               Ossining       New York             10562
## 1282            Schenectady       New York             12304
## 1283          Margaretville       New York             12455
## 1284               New York       New York             10016
## 1285                  Utica       New York             13501
## 1286                Buffalo       New York             14207
## 1287              Rochester       New York             14692
## 1288           New Hartford       New York             13503
## 1289                  Bronx       New York             10460
## 1290              Rochester       New York             14620
## 1291               New York       New York             10016
## 1292                  Bronx       New York             10469
## 1293            Canandaigua       New York             14424
## 1294               New York       New York             10010
## 1295               Woodside       New York             11377
## 1296               New York       New York             10032
## 1297                 Oneida       New York             13421
## 1298                Jamaica       New York             11434
## 1299                 Albany       New York             12237
## 1300              Nashville       New York             37203
## 1301                Yonkers       New York             10701
## 1302          New York City       New York             10010
## 1303               Brooklyn       New York             11218
## 1304                  Owego       New York             13827
## 1305               Flushing       New York             11354
## 1306               Brooklyn       New York             11220
## 1307                 Hudson       New York             12534
## 1308                Buffalo       New York             14203
## 1309              Watertown       New York             13601
## 1310          New Hyde Park       New York             11040
## 1311          Montour Falls       New York             14865
## 1312                  Bronx       New York             10461
## 1313                Oneonta       New York             13820
## 1314                   Troy       New York             12180
## 1315              Brockport       New York             14420
## 1316     Huntington Station       New York             11746
## 1317              Scarsdale       New York             10583
## 1318                  Bronx       New York             10467
## 1319            Schenectady       New York             12304
## 1320              Oceanside       New York             11572
## 1321          Staten Island       New York             10305
## 1322               Brooklyn       New York             11219
## 1323               New York       New York             10032
## 1324              Rochester       New York             14620
## 1325                 Canton       New York             13617
## 1326                  Bronx       New York             10467
## 1327            North Creek       New York             12853
## 1328               Brooklyn       New York             11212
## 1329           White Plains       New York             10604
## 1330                Buffalo       New York             14214
## 1331                Jamaica       New York             11434
## 1332              Hyde Park       New York             12601
## 1333               Hamilton       New York             13346
## 1334                  Bronx       New York             10467
## 1335            Hurleyville       New York             12747
## 1336               New York       New York             10013
## 1337                 Newark       New York             14513
## 1338              Watertown       New York             13601
## 1339        Clifton Springs       New York             14432
## 1340               New York       New York             10010
## 1341                  Bronx       New York             10453
## 1342               New York       New York             10021
## 1343        North Tarrytown       New York             10591
## 1344                   Troy       New York             12180
## 1345           Gloversville       New York             12078
## 1346                Suffern       New York             10901
## 1347              Elizabeth       New York             12932
## 1348                  Owego       New York             13827
## 1349                 Oswego       New York             13126
## 1350               New York       New York             10024
## 1351               New York       New York             10012
## 1352               New York       New York             10011
## 1353               Syracuse       New York             13210
## 1354               New York       New York             10065
## 1355                   Rome       New York             13440
## 1356               Brooklyn       New York             11203
## 1357            Little Neck       New York             11362
## 1358           New Hartford       New York             13503
## 1359                Yonkers       New York             10701
## 1360               New York       New York             10013
## 1361                 Fulton       New York             13069
## 1362               Brooklyn       New York             11218
## 1363               Syracuse       New York             13203
## 1364               New York       New York             10012
## 1365                 Albany       New York             12206
## 1366               New York       New York             10021
## 1367               Woodmere       New York             11598
## 1368              Rochester       New York             14610
## 1369                 Walton       New York             13856
## 1370          New Hyde Park       New York             11040
## 1371                  Bronx       New York             10453
## 1372           Little Falls       New York             13365
## 1373                   Troy       New York             12180
## 1374                     Ny       New York             10010
## 1375           Gloversville       New York             12078
## 1376               New York       New York             10021
## 1377                Waverly       New York             14892
## 1378               Lowville       New York             13367
## 1379               New York       New York             10010
## 1380             Binghamton       New York             13905
## 1381               New York       New York             10013
## 1382               New York       New York             10003
## 1383          New Hyde Park       New York             11040
## 1384               Brooklyn       New York             11210
## 1385               Ossining       New York             10562
## 1386               New York       New York             10003
## 1387              Manhasset       New York             11030
## 1388                Mineola       New York             11501
## 1389                Jamaica       New York             11418
## 1390       Saratoga Springs       New York             12866
## 1391                   Troy       New York             12180
## 1392          New Hyde Park       New York             11040
## 1393               Lowville       New York             13367
## 1394               Lynbrook       New York             11563
## 1395               New York       New York             10065
## 1396                  Bronx       New York             10461
## 1397          Staten Island       New York             10301
## 1398              Rochester       New York             14620
## 1399             Binghamton       New York             13905
## 1400               Elmsford       New York             10523
## 1401               Penn Yan       New York             14527
## 1402       Saratoga Springs       New York             12866
## 1403            Cooperstown       New York             13326
## 1404                  Bronx       New York             10467
## 1405               New York       New York             10016
## 1406            Schenectady       New York             12308
## 1407          Staten Island       New York             10305
## 1408            Cooperstown       New York             13326
## 1409                  Bronx       New York             10453
## 1410                   Troy       New York             12180
## 1411          New York City       New York             10010
## 1412                 Hudson       New York             12534
## 1413               Brooklyn       New York             11211
## 1414                  Bronx       New York             10467
## 1415                   Rome       New York             13440
## 1416            North Creek       New York             12853
## 1417                  Bronx       New York             10462
## 1418               New York       New York             10003
## 1419                  Bronx       New York             10467
## 1420               Cortland       New York             13045
## 1421                   Troy       New York             12180
## 1422               New York       New York             10016
## 1423           New Hartford       New York             13503
## 1424               Penn Yan       New York             14527
## 1425               New York       New York             10016
## 1426            Lake Placid       New York             12946
## 1427               Penn Yan       New York             14527
## 1428               New York       New York             10006
## 1429                 Carmel       New York             10512
## 1430                Jamaica       New York             11434
## 1431               Highland       New York             12528
## 1432              Rochester       New York             14609
## 1433              Rochester       New York             14620
## 1434                  Bronx       New York             10467
## 1435               Cornwall       New York             12518
## 1436            Schenectady       New York             12304
## 1437              Rochester       New York             14620
## 1438                  Bronx       New York             10467
## 1439                Buffalo       New York             14214
## 1440              Rochester       New York             14609
## 1441              Riverhead       New York             11901
## 1442              Watertown       New York             13601
## 1443               New York       New York             10028
## 1444                 Albany       New York             12206
## 1445               Brooklyn       New York             11235
## 1446                Yonkers       New York             10701
## 1447                   Troy       New York             12180
## 1448             Binghamton       New York             13905
## 1449               Elmsford       New York             10523
## 1450                 Albany       New York             12207
## 1451               New York       New York             10013
## 1452               New York       New York             10040
## 1453                  Bronx       New York             10467
## 1454           Far Rockaway       New York             11691
## 1455               Lowville       New York             13367
## 1456              Rochester       New York             14609
## 1457                 Albany       New York             12208
## 1458            Schenectady       New York             12304
## 1459               Lockport       New York             14094
## 1460               Lowville       New York             13367
## 1461                Jamaica       New York             11432
## 1462        North Tarrytown       New York             10591
## 1463                 Elmira       New York             14905
## 1464                 Oswego       New York             13126
## 1465               Brooklyn       New York             11204
## 1466           Mount Vernon       New York             10550
## 1467                Buffalo       New York             14214
## 1468              Watertown       New York             13601
## 1469            Floral Park       New York             11001
## 1470               Ossining       New York             10562
## 1471               Brooklyn       New York             11210
## 1472                   Troy       New York             12180
## 1473              Jamestown       New York             14701
## 1474                 Oswego       New York             13126
## 1475                Buffalo       New York             14207
## 1476                  Bronx       New York             10462
## 1477               New York       New York             10025
## 1478                  Bronx       New York             10459
## 1479              Peekskill       New York             10566
## 1480               Mt Kisco       New York             10549
## 1481                Yonkers       New York             10701
## 1482            Springville       New York             14141
## 1483          Staten Island       New York             10306
## 1484             Binghamton       New York             13905
## 1485                 Newark       New York             14513
## 1486           Mohegan Lake       New York             10547
## 1487               New York       New York             10019
## 1488               Brooklyn       New York             11230
## 1489               New York       New York             10002
## 1490                  Bronx       New York             10467
## 1491                  Monse       New York             10952
## 1492              Manhasset       New York             11030
## 1493              Brockport       New York             14420
## 1494          Niagara Falls       New York             14302
## 1495                Jamaica       New York             11434
## 1496              Bay Shore       New York             11706
## 1497              Peekskill       New York             10566
## 1498              Hauppauge       New York             11788
## 1499                 Oswego       New York             13126
## 1500              Rochester       New York             14620
## 1501                Buffalo       New York             14215
## 1502                  Bronx       New York             10467
## 1503              Mt Vernon       New York             10550
## 1504             Jamesville       New York             13078
## 1505              Rhinebeck       New York             12572
## 1506              Tarrytown       New York             10591
## 1507                  Delhi       New York             13753
## 1508           West Babylon       New York             11704
## 1509              Glen Cove       New York             11542
## 1510              Nashville       New York             37203
## 1511              Rochester       New York             14626
## 1512                  Bronx       New York             10453
## 1513               New York       New York             10028
## 1514              Rochester       New York             14620
## 1515            Schenectady       New York             12308
## 1516                  Bronx       New York             10467
## 1517                 Walton       New York             13856
## 1518               New York       New York             10016
## 1519               Brooklyn       New York             11238
## 1520                  Bronx       New York             10461
## 1521                  Bronx       New York             10456
## 1522               Valhalla       New York             10595
## 1523              Ridgewood       New York             11237
## 1524               Brighton       New York             14618
## 1525                  Bronx       New York             10461
## 1526           Poughkeepsie       New York             12601
## 1527                  Bronx       New York             10467
## 1528          Middle Island       New York             11953
## 1529                Merrick       New York             11566
## 1530                Buffalo       New York             14202
## 1531                  Bronx       New York             10459
## 1532               Valhalla       New York             10595
## 1533              Rochester       New York             14621
## 1534                  Bronx       New York             10467
## 1535               New York       New York             10003
## 1536               Mt Kisco       New York             10549
## 1537                  Bronx       New York             10461
## 1538              Rochester       New York             14609
## 1539                Buffalo       New York             14209
## 1540              Rochester       New York             14642
## 1541              Brentwood       New York             11717
## 1542                 Albany       New York             12208
## 1543            Plattsburgh       New York             12901
## 1544            Floral Park       New York             11001
## 1545             Ozone Park       New York             11416
## 1546                Gowanda       New York             14070
## 1547               New York       New York             10032
## 1548              Amsterdam       New York             12010
## 1549               New York       New York             10003
## 1550            Schenectady       New York             12304
## 1551              Riverhead       New York             11901
## 1552              Amsterdam       New York             12010
## 1553              Elizabeth       New York             12932
## 1554           Mount Morris       New York             14510
## 1555               New York       New York             10016
## 1556                 Roslyn       New York             11576
## 1557           Forest Hills       New York             11375
## 1558                  Bronx       New York             10467
## 1559                Yonkers       New York             10701
## 1560               New York       New York             10029
## 1561            Cheektowaga       New York             14225
## 1562              Scarsdale       New York             10583
## 1563               New York       New York             10013
## 1564               Brooklyn       New York             11208
## 1565                Buffalo       New York             14202
## 1566                Jamaica       New York             11434
## 1567               New York       New York             10029
## 1568           West Babylon       New York             11704
## 1569              Watertown       New York             13601
## 1570            Cooperstown       New York             13326
## 1571              Rochester       New York             14620
## 1572               New York       New York             10016
## 1573              Riverdale       New York             10471
## 1574               New York       New York             10016
## 1575           White Plains       New York             10601
## 1576               Flushing       New York             11354
## 1577             West Islip       New York             11795
## 1578               New York       New York             10012
## 1579            Foret Hills       New York             11375
## 1580                  Bronx       New York             10459
## 1581              Rochester       New York             14609
## 1582            North Creek       New York             12853
## 1583             Huntington       New York             11743
## 1584        Jackson Heights       New York             11732
## 1585              Rochester       New York             14626
## 1586                Jamaica       New York             11434
## 1587                 Geneva       New York             14456
## 1588            Schenectady       New York             12308
## 1589           Johnson City       New York             13790
## 1590          Niagara Falls       New York             14302
## 1591                Amherst       New York             14221
## 1592                 Canton       New York             13617
## 1593               New York       New York             10001
## 1594                  Olean       New York             14760
## 1595                 Albany       New York             12208
## 1596                  Bronx       New York             10459
## 1597               Melville       New York             11747
## 1598                Buffalo       New York             14220
## 1599              Oceanside       New York             11572
## 1600             Mamaroneck       New York             10543
## 1601                  Bronx       New York             10467
## 1602       Saratoga Springs       New York             12866
## 1603              Glen Cove       New York             11542
## 1604                  Bronx       New York             10453
## 1605                 Albany       New York             12208
## 1606               Brooklyn       New York             11204
## 1607          New Hyde Park       New York             11040
## 1608                 Monroe       New York             10950
## 1609               Brooklyn       New York             11212
## 1610              Peekskill       New York             10566
## 1611                  Bronx       New York             10455
## 1612                     Ny       New York             10010
## 1613                  Bronx       New York             10463
## 1614            Schenectady       New York             12304
## 1615              Hauppauge       New York             11788
## 1616               New York       New York             10029
## 1617       Saratoga Springs       New York             12866
## 1618              Rochester       New York             14623
## 1619            Fort Edward       New York             12828
## 1620               New York       New York             10032
## 1621            Schenectady       New York             12307
## 1622              Rochester       New York             14692
## 1623               Brooklyn       New York             11214
## 1624                  Utica       New York             13502
## 1625                Buffalo       New York             14203
## 1626          Margaretville       New York             12455
## 1627                Jamaica       New York             11434
## 1628                  Bronx       New York             10467
## 1629               Brooklyn       New York             11210
## 1630            Schenectady       New York             12304
## 1631                Buffalo       New York             14203
## 1632                  Bronx       New York             10459
## 1633                  Bronx       New York             10453
## 1634                  Bronx       New York             10452
## 1635               Flushing       New York             11365
## 1636               Brooklyn       New York             11207
## 1637                Oneonta       New York             13820
## 1638                  Bronx       New York             10469
## 1639                 Malone       New York             12953
## 1640              Manhasset       New York             11030
## 1641                 Albany       New York             12210
## 1642                  Bronx       New York             11220
## 1643              Rochester       New York             14642
## 1644               New York       New York             10003
## 1645           Johnson City       New York             13790
## 1646               Ossining       New York             10562
## 1647               New York       New York             10040
## 1648                  Bronx       New York             10453
## 1649               New York       New York             10013
## 1650                 Goshen       New York             10924
## 1651               Brooklyn       New York             11201
## 1652               New York       New York             10013
## 1653              Callicoon       New York             12723
## 1654           White Plains       New York             10601
## 1655              Oceanside       New York             11572
## 1656                Bayside       New York             11361
## 1657           New Hartford       New York             13503
## 1658              Peekskill       New York             10566
## 1659          New Hyde Park       New York             11040
## 1660            Glens Falls       New York             12801
## 1661               New York       New York             10021
## 1662                 Albany       New York             12208
## 1663            Plattsburgh       New York             12901
## 1664               New York       New York             10010
## 1665                 Oswego       New York             13126
## 1666              Rochester       New York             14620
## 1667               New York       New York             10002
## 1668           Orchard Park       New York             14127
## 1669             Binghamton       New York             13904
## 1670               New York       New York             10032
## 1671              Nesconset       New York             11767
## 1672                 Albany       New York             12208
## 1673                  Utica       New York             13501
## 1674                 Geneva       New York             14456
## 1675                Pulaski       New York             13142
## 1676            Schenectady       New York             12304
## 1677            Schenectady       New York             12308
## 1678                Astoria       New York             11102
## 1679            Cooperstown       New York             13326
## 1680           White Plains       New York             10601
## 1681            Cooperstown       New York             13326
## 1682               New York       New York             10032
## 1683              Amsterdam       New York             12010
## 1684               Brooklyn       New York             11204
## 1685                  Bronx       New York             10461
## 1686              Rochester       New York             14609
## 1687               Melville       New York             11747
## 1688               New York       New York             10016
## 1689              Rochester       New York             14626
## 1690               Lewiston       New York             14092
## 1691             Binghamton       New York             13902
## 1692               Brooklyn       New York             11233
## 1693              Hempstead       New York             11550
## 1694                Pulaski       New York             13142
## 1695                  Bronx       New York             10461
## 1696           New Hartford       New York             13503
## 1697           Johnson City       New York             13790
## 1698              Patchogue       New York             11772
## 1699              Schoharie       New York             12157
## 1700               Brooklyn       New York             11201
## 1701                Batavia       New York             14020
## 1702               New York       New York             10012
## 1703               Brooklyn       New York             11236
## 1704                  Bronx       New York             10461
## 1705                Potsdam       New York             13676
## 1706                  Bronx       New York             10459
## 1707               New York       New York             10011
## 1708               Brooklyn       New York             11229
## 1709           Lake Success       New York             11042
## 1710               Brooklyn       New York             11218
## 1711                  Bronx       New York             10457
## 1712                   Troy       New York             12180
## 1713               Allegany       New York             14706
## 1714               Brooklyn       New York             11223
## 1715               Brooklyn       New York             11235
## 1716                Buffalo       New York             14208
## 1717                 Oswego       New York             13126
## 1718          Staten Island       New York             10305
## 1719          Valley Stream       New York             11580
## 1720               New York       New York             10013
## 1721            Floral Park       New York             11001
## 1722                Potsdam       New York             13676
## 1723               New York       New York             10128
## 1724               New York       New York             10013
## 1725           Mount Vernon       New York             10552
## 1726               Cortland       New York             13045
## 1727           Little Falls       New York             13365
## 1728               New York       New York             10016
## 1729                 Ithaca       New York             14850
## 1730               Melville       New York             11747
## 1731               Syracuse       New York             13203
## 1732               New York       New York             10021
## 1733            White Plans       New York             10605
## 1734              Patchogue       New York             11772
## 1735                Buffalo       New York             14209
## 1736              Dansville       New York             11437
## 1737            Glens Falls       New York             12801
## 1738                  Bronx       New York             10467
## 1739                  Bronx       New York             10466
## 1740                 Oneida       New York             13421
## 1741                  Ghent       New York             12075
## 1742               Areverne       New York             11692
## 1743            Schenectady       New York             12304
## 1744                  Olean       New York             14760
## 1745               New York       New York             10002
## 1746        North Tarrytown       New York             10591
## 1747                Jamaica       New York             11434
## 1748               Carthage       New York             13619
## 1749               Brooklyn       New York             11218
## 1750            Schenectady       New York             12307
## 1751              Rochester       New York             14620
## 1752               Newburgh       New York             12550
## 1753               New York       New York             10010
## 1754               Kingston       New York             12401
## 1755               Saratoga       New York             12020
## 1756                Pulaski       New York             13142
## 1757              Riverhead       New York             11901
## 1758              Nashville       New York             37203
## 1759               Brooklyn       New York             11238
## 1760                   Troy       New York             12180
## 1761                  Bronx       New York             10467
## 1762               Brooklyn       New York             11208
## 1763                  Bronx       New York             10467
## 1764          Central Islip       New York             11722
## 1765                Potsdam       New York             13676
## 1766               New York       New York             10032
## 1767           White Plains       New York             10601
## 1768                Kenmore       New York             14217
## 1769            Cooperstown       New York             13326
## 1770              Oceanside       New York             11572
## 1771                 Elmira       New York             14905
## 1772                  Bronx       New York             10462
## 1773                Hornell       New York             14843
## 1774            Cooperstown       New York             13326
## 1775               New York       New York             10035
## 1776                Norwich       New York             13815
## 1777              Rochester       New York             14620
## 1778                Amherst       New York             14226
## 1779               Syracuse       New York             13202
## 1780              Rochester       New York             14626
## 1781             Huntington       New York             11743
## 1782               New York       New York             10021
## 1783            Plattsburgh       New York             12901
## 1784                 Geneva       New York             14456
## 1785               New York       New York             10013
## 1786           Poughkeepsie       New York             12601
## 1787               Penfield       New York             14526
## 1788            Schenectady       New York             12304
## 1789                Hornell       New York             14843
## 1790               New York       New York             10013
## 1791                   Troy       New York             12180
## 1792              Oceanside       New York             11572
## 1793          Staten Island       New York             10305
## 1794                Jamaica       New York             11434
## 1795          New Hyde Park       New York             11040
## 1796                 Auburn       New York             13021
## 1797               Brooklyn       New York             11203
## 1798               New York       New York             10016
## 1799           Lake Katrine       New York             12449
## 1800                Norwich       New York             13815
## 1801          Staten Island       New York             10305
## 1802          Niagara Falls       New York             14301
## 1803                  Bronx       New York             10456
## 1804                   Troy       New York             12180
## 1805        Clifton Springs       New York             14432
## 1806               New York       New York             10012
## 1807          New Hyde Park       New York             11040
## 1808              Rochester       New York             14620
## 1809                Jamaica       New York             11434
## 1810              St. James       New York             11780
## 1811               New York       New York             10016
## 1812               New York       New York             10025
## 1813       Saratoga Springs       New York             12866
## 1814                Buffalo       New York             14203
## 1815               New York       New York             10016
## 1816               Brooklyn       New York             11211
## 1817               New York       New York             10025
## 1818                 Groton       New York             13073
## 1819                  Bronx       New York             10461
## 1820            Glens Falls       New York             12801
## 1821              Riverhead       New York             11901
## 1822                  Bronx       New York             10463
## 1823                Aedsley       New York             10502
## 1824               New York       New York             10013
## 1825             Ogdensburg       New York             13669
## 1826            Canandaigua       New York             14424
## 1827            Schenectady       New York             12304
## 1828                 Albany       New York             12205
## 1829                 Albany       New York             12208
## 1830          Spring Valley       New York             10977
## 1831                Hornell       New York             14843
## 1832                 Canton       New York             13617
## 1833               New York       New York             10003
## 1834                  Bronx       New York             10456
## 1835            Schenectady       New York             12308
## 1836                 Carmel       New York             10512
## 1837             Wellsville       New York             14895
## 1838                Jamaica       New York             11434
## 1839            North Creek       New York             12853
## 1840              Peekskill       New York             10566
## 1841              Johnstown       New York        12095-2308
## 1842               New York       New York             10013
## 1843               Bayshore       New York             11706
## 1844               Brooklyn       New York             11223
## 1845                  Bronx       New York             10472
## 1846            Plattsburgh       New York             12901
## 1847              Amsterdam       New York             12010
## 1848                 Cohoes       New York             12047
## 1849               Syracuse       New York             13202
## 1850               Syracuse       New York             13203
## 1851              Mt. Kisco       New York             10549
## 1852                Buffalo       New York             14203
## 1853               Brooklyn       New York             11223
## 1854               Kingston       New York             12401
## 1855            Schenectady       New York             12304
## 1856              Rochester       New York             14620
## 1857               Kingston       New York             12401
## 1858                Jamaica       New York             11432
## 1859                  Bronx       New York             10467
## 1860                  Bronx       New York             10459
## 1861               New York       New York             10003
## 1862                  Bronx       New York             10453
## 1863               New York       New York             10016
## 1864                  Bronx       New York             10461
## 1865           Johnson City       New York             13790
## 1866            Hurleyville       New York             12747
## 1867          New York City       New York             10010
## 1868                Kenmore       New York             14217
## 1869               New York       New York             10010
## 1870               New York       New York             10037
## 1871              Peekskill       New York             10566
## 1872              Rochester       New York             14609
## 1873                   Troy       New York             12180
## 1874                  Bronx       New York             10453
## 1875                  Utica       New York             13501
## 1876                Buffalo       New York             14208
## 1877                  Utica       New York             13501
## 1878               Brooklyn       New York             11229
## 1879               New York       New York             10013
## 1880                Buffalo       New York             14203
## 1881                Buffalo       New York             14214
## 1882                 Albany       New York             12208
## 1883              Rochester       New York             14620
## 1884          Spring Valley       New York             10977
## 1885                Potsdam       New York             13676
## 1886               New York       New York             10016
## 1887              Watertown       New York             13601
## 1888              Smithtown       New York             11787
## 1889                Jamaica       New York             11418
## 1890               Woodbury       New York             11797
## 1891           Johnson City       New York             13790
## 1892           Johnson City       New York             13790
## 1893            Glens Falls       New York             12801
## 1894                   Rome       New York             13440
## 1895                   Troy       New York             12182
## 1896       Saratoga Springs       New York             12866
## 1897               New York       New York             10003
## 1898          Williamsville       New York             14221
## 1899               New York       New York             10013
## 1900             Binghamton       New York             13905
## 1901               Syracuse       New York             13203
## 1902               New York       New York             10028
## 1903              Laurelton       New York             11413
## 1904               Penn Yan       New York             14527
## 1905            Cooperstown       New York             13326
## 1906               New York       New York             10011
## 1907               Brooklyn       New York             11205
## 1908               New City       New York             10956
## 1909               New York       New York             10003
## 1910                 Monsey       New York             10952
## 1911               New York       New York             10005
## 1912             Binghamton       New York             13905
## 1913                Jamaica       New York             11432
## 1914                Bayside       New York             11361
## 1915                Massena       New York             13662
## 1916              Nashville       New York             37203
## 1917                 Albany       New York             12208
## 1918                  Bronx       New York             10467
## 1919                 Albany       New York             12208
## 1920           Orchard Park       New York             14127
## 1921               Melville       New York             11747
## 1922            Stony Brook       New York             11794
## 1923               Brooklyn       New York             11223
## 1924          Staten Island       New York             10302
## 1925            Glens Falls       New York             12801
## 1926               Brooklyn       New York             11218
## 1927                Buffalo       New York             14214
## 1928                Warwick       New York             10990
## 1929                  Bronx       New York             10453
## 1930                 Elmira       New York             14901
## 1931          New Hyde Park       New York             11040
## 1932               New York       New York             10010
## 1933               New York       New York             10003
## 1934               Flushing       New York             11354
## 1935              Rochester       New York             14620
## 1936                Jamaica       New York             11434
## 1937                Yonkers       New York             10701
## 1938               New York       New York             10025
## 1939              Getzville       New York             14068
## 1940             Binghamton       New York             13904
## 1941               Endicott       New York             13760
## 1942            Cooperstown       New York             13326
## 1943           Grand Island       New York             14072
## 1944             Wellsville       New York             14895
## 1945          Williamsville       New York             14221
## 1946                  Bronx       New York             10457
## 1947              Manhasset       New York             11030
## 1948              Hempstead       New York             11550
## 1949                Buffalo       New York             14214
## 1950               New York       New York             10025
## 1951       Saratoga Springs       New York             12866
## 1952                  Olean       New York             14760
## 1953                Buffalo       New York             14220
## 1954              Mt Vernon       New York             10550
## 1955                 Malone       New York             12953
## 1956               New York       New York             10021
## 1957                Buffalo       New York             14214
## 1958                Mineola       New York             11501
## 1959                 Elmira       New York             14905
## 1960              Liverpool       New York             13088
## 1961               New York       New York             10021
## 1962                Buffalo       New York             14203
## 1963                Jamaica       New York             11432
## 1964                 Albany       New York             12207
## 1965             Hicksville       New York             11801
## 1966                Buffalo       New York             14214
## 1967               New York       New York             10016
## 1968                  Utica       New York             13501
## 1969             Binghamton       New York             13905
## 1970           New Rochelle       New York             10805
## 1971                  Bronx       New York             10461
## 1972               Herkimer       New York             13350
## 1973               Brooklyn       New York             11219
## 1974             Massapequa       New York             11758
## 1975               Brooklyn       New York             11230
## 1976                   Troy       New York             12180
## 1977                 Albany       New York             12203
## 1978               New York       New York             10010
## 1979            Schenectady       New York             12308
## 1980            Schenectady       New York             12308
## 1981               Cornwall       New York             12518
## 1982                  Bronx       New York             10460
## 1983                 Geneva       New York             14456
## 1984                Buffalo       New York             14202
## 1985                 Elmira       New York             14905
## 1986            Schenectady       New York             12304
## 1987                  Bronx       New York             10467
## 1988                Warwick       New York             10990
## 1989               Brooklyn       New York             11214
## 1990              Peekskill       New York             10566
## 1991            North Creek       New York             12853
## 1992                  Utica       New York             13501
## 1993                Yonkers       New York             10701
## 1994                Yonkers       New York             10701
## 1995            White Plans       New York             10605
## 1996              Watertown       New York             13601
## 1997                 Hudson       New York             12534
## 1998          New Hyde Park       New York             11040
## 1999           White Plains       New York             10601
## 2000              Rochester       New York             14623
## 2001          Staten Island       New York             10303
## 2002               New York       New York             10011
## 2003                Buffalo       New York             14213
## 2004               Cornwall       New York             12518
## 2005               Catskill       New York             12414
## 2006               Brooklyn       New York             11226
## 2007               New York       New York             10012
## 2008                 Medina       New York             14103
## 2009                Jamaica       New York             11434
## 2010               New City       New York             10956
## 2011               Fishkill       New York             12524
## 2012               Brooklyn       New York             11219
## 2013               Brooklyn       New York             11203
## 2014           Poughkeepsie       New York             12601
## 2015           Johnson City       New York             13790
## 2016                   Avon       New York             14414
## 2017                Liberty       New York             12754
## 2018                   Troy       New York             12180
## 2019              Rochester       New York             14620
## 2020              Peekskill       New York             10566
## 2021            Schenectady       New York             12308
## 2022          Staten Island       New York             10310
## 2023                Buffalo       New York             14203
## 2024              Rochester       New York             14620
## 2025            Garden City       New York             11530
## 2026                Amherst       New York             14228
## 2027               Brooklyn       New York             11201
## 2028                  Bronx       New York             10460
## 2029                Belmont       New York             14813
## 2030               New York       New York             10018
## 2031            Glens Falls       New York             12801
## 2032                  Bronx       New York             10459
## 2033              Rochester       New York             14609
## 2034              Salamanca       New York             14779
## 2035               New York       New York             10021
## 2036              Amsterdam       New York             12010
## 2037              Rochester       New York             14620
## 2038               Brooklyn       New York             11219
## 2039           Far Rockaway       New York             11691
## 2040                  Bronx       New York             10459
## 2041          Staten Island       New York             10305
## 2042            Morrisville       New York             13408
## 2043               Bayshore       New York             11706
## 2044              Peekskill       New York             10566
## 2045          New Hyde Park       New York             11040
## 2046               New York       New York             10003
## 2047               New York       New York             10025
## 2048               Brooklyn       New York             11201
## 2049               Kingston       New York             12401
## 2050              Rochester       New York             14620
## 2051                 Hudson       New York             12534
## 2052                   Rome       New York             13440
## 2053               New York       New York             10021
## 2054              Manhasset       New York             11030
## 2055               Syracuse       New York             13203
## 2056              Rochester       New York             14620
## 2057                  Chili       New York             14624
## 2058              Sayre, Pa       New York             18840
## 2059               New York       New York             10013
## 2060               Syracuse       New York             13202
## 2061                Bayside       New York             11361
## 2062                Buffalo       New York             14215
## 2063                  Bronx       New York             10453
## 2064               New York       New York             10021
## 2065                 Oneida       New York             13421
## 2066               Lewiston       New York             14092
## 2067                  Bronx       New York             10467
## 2068               New York       New York             10021
## 2069                  Bronx       New York             10453
## 2070               New York       New York             10013
## 2071          Staten Island       New York             10304
## 2072                  Bronx       New York             10470
## 2073               Ossining       New York             10562
## 2074               Brooklyn       New York             11224
## 2075               Ossining       New York             10562
## 2076              Manhasset       New York             11030
## 2077               Woodside       New York             11377
## 2078              Rochester       New York             14626
## 2079              Rochester       New York             14609
## 2080               New York       New York             10021
## 2081              Watertown       New York             13601
## 2082               New York       New York             10029
## 2083              Jamestown       New York             14701
## 2084            North Creek       New York             12853
## 2085                Buffalo       New York             14203
## 2086                  Olean       New York             14760
## 2087             Binghamton       New York             13905
## 2088             Ogdensburg       New York             13669
## 2089                  Monse       New York             10952
## 2090               Westbury       New York             11590
## 2091            North Creek       New York             12853
## 2092                  Bronx       New York             10459
## 2093            Schenectady       New York             12304
## 2094                  Bronx       New York             10459
## 2095               New York       New York             10021
## 2096              Rochester       New York             14614
## 2097              Rochester       New York             14609
## 2098         North Bellmore       New York             11710
## 2099              Rochester       New York             14626
## 2100            Cooperstown       New York             13326
## 2101           Poughkeepsie       New York             12601
## 2102           Far Rockaway       New York             11691
## 2103            North Creek       New York             12853
## 2104           Little Falls       New York             13365
## 2105              Rochester       New York             14626
## 2106             Long Beach       New York             11561
## 2107               Brooklyn       New York             11201
## 2108           Johnson City       New York             13790
## 2109                Potsdam       New York             13676
## 2110                  Bronx       New York             10467
## 2111             Haverstraw       New York             10927
## 2112               New York       New York             10003
## 2113                  Bronx       New York             10461
## 2114               Cortland       New York             13045
## 2115               Syracuse       New York             13202
## 2116               Brooklyn       New York             11212
## 2117                Norwich       New York             13815
## 2118                Oneonta       New York             13820
## 2119              Rochester       New York             14623
## 2120           New Rochelle       New York             10804
## 2121               New York       New York             10013
## 2122                 Auburn       New York             13021
## 2123               Allegany       New York             14706
## 2124               New York       New York             10014
## 2125               New York       New York             10013
## 2126              Rochester       New York             14620
## 2127               Melville       New York             11747
## 2128               New York       New York             10012
## 2129               New York       New York             10016
## 2130           Mount Vernon       New York             10550
## 2131            North Creek       New York             12853
## 2132               New York       New York             10013
## 2133                 Medina       New York             14103
## 2134                Dunkirk       New York             14048
## 2135               Kingston       New York             12401
## 2136               Valhalla       New York             10595
## 2137                Mineola       New York             11501
## 2138                  Bronx       New York             10455
## 2139               Lewiston       New York             14092
## 2140               Carthage       New York             13619
## 2141               New York       New York             10019
## 2142           Slingerlands       New York             12159
## 2143               Brooklyn       New York             11223
## 2144            Cooperstown       New York             13326
## 2145               New York       New York             10032
## 2146                Jamaica       New York             11434
## 2147                Buffalo       New York             14263
## 2148               Waterloo       New York             13165
## 2149            Schenectady       New York             12304
## 2150                 Warsaw       New York             14569
## 2151           Johnson City       New York             13790
## 2152               Cornwall       New York             12518
## 2153               Brooklyn       New York             11201
## 2154              Getzville       New York             14068
## 2155                  Olean       New York             14760
## 2156           Gloversville       New York             12078
## 2157           Poughkeepsie       New York             12601
## 2158               Brooklyn       New York             11212
## 2159             Binghamton       New York             13905
## 2160                  Utica       New York             13501
## 2161              Peekskill       New York             10566
## 2162        North Tarrytown       New York             10591
## 2163               Lewiston       New York             14092
## 2164                 Carmel       New York             10512
## 2165               Brooklyn       New York             11208
## 2166               Brooklyn       New York             11236
## 2167              Smithtown       New York             11787
## 2168                   Troy       New York             16947
## 2169           Gloversville       New York             12078
## 2170                Commack       New York             11725
## 2171                   Troy       New York             12180
## 2172               New York       New York             10013
## 2173                  Bronx       New York             10453
## 2174                 Auburn       New York             13021
## 2175               Brooklyn       New York             11219
## 2176           Gloversville       New York             12078
## 2177                Oneonta       New York             13820
## 2178              Manhasset       New York             11030
## 2179                  Bronx       New York             10467
## 2180              Rochester       New York             14620
## 2181                Hornell       New York             14843
## 2182               Brooklyn       New York             11211
## 2183          New Hyde Park       New York             11040
## 2184               New York       New York             10013
## 2185               Oriskany       New York             13424
## 2186               Brooklyn       New York             11219
## 2187               New York       New York             10010
## 2188                 Albany       New York             12207
## 2189             Binghamton       New York             13905
## 2190              Rochester       New York             14626
## 2191              Rochester       New York             14624
## 2192               Newburgh       New York             12550
## 2193               New York       New York             10016
## 2194              Rochester       New York             14620
## 2195              Rochester       New York             14620
## 2196          Campbell Hall       New York             10910
## 2197               Fishkill       New York             12524
## 2198              Watertown       New York             13601
## 2199               Flushing       New York             11355
## 2200           Little Falls       New York             13365
## 2201               New York       New York             10013
## 2202               Brooklyn       New York             11223
## 2203              Dansville       New York             11437
## 2204            North Creek       New York             12853
## 2205               New York       New York             10013
## 2206               Kingston       New York             12401
## 2207                Jamaica       New York             11432
## 2208               Areverne       New York             11692
## 2209               New York       New York             10003
## 2210                Jamaica       New York             11434
## 2211               Hamilton       New York             13346
## 2212              Rochester       New York             14626
## 2213               Highland       New York             12528
## 2214            Plattsburgh       New York             12901
## 2215                  Bronx       New York             10461
## 2216              Jamestown       New York             14701
## 2217               Penn Yan       New York             14527
## 2218           New Hartford       New York             13503
## 2219                 Albany       New York             12207
## 2220              Rochester       New York             14626
## 2221               Houghton       New York             14744
## 2222               Brooklyn       New York             11212
## 2223                Buffalo       New York             14203
## 2224               Highland       New York             12528
## 2225               Philmont       New York             12565
## 2226               Brooklyn       New York             11229
## 2227           Saranac Lake       New York             12983
## 2228                  Bronx       New York             10456
## 2229               New York       New York             10040
## 2230               New York       New York             10029
## 2231                Yonkers       New York             10701
## 2232               Valhalla       New York             10595
## 2233           Poughkeepsie       New York             12601
## 2234               Ossining       New York             10562
## 2235               New York       New York             10065
## 2236              Oceanside       New York             11572
## 2237                     Ny       New York             10027
## 2238             Binghamton       New York             13905
## 2239                 Albany       New York             12208
## 2240            Kew Gardens       New York             11415
## 2241                  Bronx       New York             10470
## 2242            Port Jervis       New York             12771
## 2243                  Bronx       New York             10457
## 2244            Glens Falls       New York             12801
## 2245               Cortland       New York             13045
## 2246           White Plains       New York             10601
## 2247                   Troy       New York             12180
## 2248                Buffalo       New York             14263
## 2249                Batavia       New York             14020
## 2250               Flushing       New York             11516
## 2251                 Beacon       New York             12508
## 2252                  Bronx       New York             10469
## 2253               Woodmere       New York             11598
## 2254                 Goshen       New York             10924
## 2255                Jamaica       New York             11434
## 2256                Yonkers       New York             10701
## 2257               Brooklyn       New York             11234
## 2258          Staten Island       New York             10305
## 2259               New York       New York             10016
## 2260               New York       New York             10028
## 2261               Brooklyn       New York             11205
## 2262            Cooperstown       New York             13326
## 2263              Rochester       New York             14642
## 2264                Buffalo       New York             14203
## 2265               New York       New York             10021
## 2266          Williamsville       New York             14221
## 2267             Great Neck       New York             11021
## 2268              Rochester       New York             14620
## 2269               Brooklyn       New York             11219
## 2270                  Bronx       New York             10467
## 2271               Cornwall       New York             12518
## 2272                Aedsley       New York             10502
## 2273          New Hyde Park       New York             11040
## 2274               Kingston       New York             12401
## 2275           Poughkeepsie       New York             12603
## 2276             Binghamton       New York             13902
## 2277               New York       New York             10021
## 2278               Flushing       New York             11355
## 2279               New York       New York             10040
## 2280                  Bronx       New York             10453
## 2281            Schenectady       New York             12304
## 2282               Hamilton       New York             13346
## 2283                Oneonta       New York             13820
## 2284                  Bronx       New York             10455
## 2285                  Utica       New York             13502
## 2286               Cornwall       New York             12518
## 2287                 Albany       New York             12205
## 2288               New York       New York             10032
## 2289                Yonkers       New York             10701
## 2290               New York       New York             10019
## 2291            Plattsburgh       New York             12901
## 2292          Central Islip       New York             11722
## 2293               New York       New York             10011
## 2294               New York       New York             10016
## 2295                  Olean       New York             14760
## 2296                Bayside       New York             11361
## 2297                Buffalo       New York             14203
## 2298               Brooklyn       New York             11249
## 2299          Niagara Falls       New York             14302
## 2300                  Bronx       New York             10457
## 2301              Peekskill       New York             10566
## 2302             Montgomery       New York             12540
## 2303               New York       New York             10036
## 2304               New York       New York             10013
## 2305                Mineola       New York             11501
## 2306 Port Jefferson Station       New York             11776
## 2307               New York       New York             10017
## 2308                  Bronx       New York             10463
## 2309                Buffalo       New York             14214
## 2310          Williamsville       New York             14221
## 2311                Buffalo       New York             14207
## 2312                Buffalo       New York             14214
## 2313                Buffalo       New York             14214
## 2314               New York       New York             10025
## 2315          New Hyde Park       New York             11040
## 2316              Rochester       New York             14620
## 2317                   Rome       New York             13440
## 2318                   Troy       New York             12180
## 2319            Glens Falls       New York             12801
## 2320            Canandaigua       New York             14424
## 2321            Schenectady       New York             12304
## 2322            Plattsburgh       New York             12901
## 2323                  Bronx       New York             10470
## 2324                 Albany       New York             12208
## 2325               Brooklyn       New York             11201
## 2326                 Albany       New York             12207
## 2327            Schenectady       New York             12304
## 2328              Rochester       New York             14604
## 2329            Cooperstown       New York             13326
## 2330               New York       New York             10017
## 2331               New York       New York             10003
## 2332                  Bronx       New York             10453
## 2333           Lake Success       New York             11042
## 2334               New York       New York             10010
## 2335          Spring Valley       New York             10977
## 2336              Nashville       New York             37203
## 2337             Kings Park       New York             11754
## 2338          New Hyde Park       New York             11040
## 2339          Elizabethtown       New York             12932
## 2340                  Olean       New York             14760
## 2341                  Bronx       New York             10475
## 2342           Far Rockaway       New York             11691
## 2343                Potsdam       New York             13676
## 2344               Cornwall       New York             12518
## 2345                Oneonta       New York             13820
## 2346              Rochester       New York             14609
## 2347                Warwick       New York             10990
## 2348          Margaretville       New York             12455
## 2349               Penn Yan       New York             14527
## 2350               Lockport       New York             14094
## 2351          Staten Island       New York             10305
## 2352                  Bronx       New York             10453
## 2353          New Hyde Park       New York             11040
## 2354                 Oswego       New York             13126
## 2355       Saratoga Springs       New York             12866
## 2356                 Carmel       New York             10512
## 2357                 Carmel       New York             10512
## 2358               Cornwall       New York             12518
## 2359              Rochester       New York             14621
## 2360               Brooklyn       New York             11215
## 2361                Buffalo       New York             14214
## 2362       Briarcliff Manor       New York             10510
## 2363                Potsdam       New York             13676
## 2364                Hornell       New York             14843
## 2365              Rochester       New York             14609
## 2366               Brooklyn       New York             11209
## 2367                Mineola       New York             11501
## 2368                  Bronx       New York             10467
## 2369               Lowville       New York             13367
## 2370          Staten Island       New York             10305
## 2371              Callicoon       New York             12723
## 2372              Amsterdam       New York             12010
## 2373               Brewster       New York             10509
## 2374          Staten Island       New York             10303
## 2375               New York       New York             10013
## 2376            Canandaigua       New York             14424
## 2377              Rochester       New York             14609
## 2378              Rochester       New York             14609
## 2379                Jamaica       New York             11434
## 2380                Jamaica       New York             11434
## 2381           Painted Post       New York             14870
## 2382           Johnson City       New York             13790
## 2383                 Oswego       New York             13126
## 2384               Brooklyn       New York             11218
## 2385               New York       New York             10028
## 2386                Jamaica       New York             11432
## 2387             Huntington       New York             11743
## 2388              Rochester       New York             14618
## 2389            Cooperstown       New York             13326
## 2390              Liverpool       New York             13088
## 2391               Brooklyn       New York             11212
## 2392               New York       New York             10012
## 2393               New York       New York             10013
## 2394               New York       New York             10021
## 2395               New York       New York             10016
## 2396           New Hartford       New York             13503
## 2397                   Rome       New York             13440
## 2398               Lewiston       New York             14092
## 2399               Syracuse       New York             13202
## 2400               Flushing       New York             11366
## 2401           Far Rockaway       New York             11691
## 2402               Cornwall       New York             12518
## 2403                Astoria       New York             11102
## 2404                Buffalo       New York             14203
## 2405                 Newark       New York             14513
## 2406              Watertown       New York             13601
## 2407               Ossining       New York             10562
## 2408               Kingston       New York             12401
## 2409                  Bronx       New York             10467
## 2410              Peekskill       New York             10566
## 2411              Rochester       New York             14620
## 2412         Queens Village       New York             11429
## 2413           Poughkeepsie       New York             12601
## 2414                 Somers       New York             10589
## 2415              Rochester       New York             14625
## 2416            Morrisville       New York             13408
## 2417                  Utica       New York             13501
## 2418                  Bronx       New York             10467
## 2419                  Bronx       New York             10467
## 2420                  Utica       New York             13502
## 2421               New York       New York             10016
## 2422              Rochester       New York             14620
## 2423                 Albany       New York             12208
## 2424              Rochester       New York             14642
## 2425                Norwich       New York             13815
## 2426               New York       New York             10013
## 2427       Croton-On-Hudson       New York             10520
## 2428            East Aurora       New York             14052
## 2429                Jamaica       New York             11418
## 2430            Schenectady       New York             12307
## 2431                  Bronx       New York             10467
## 2432                 Latham       New York             12110
## 2433                Buffalo       New York             14214
## 2434              Watertown       New York        13601-3735
## 2435               Brooklyn       New York             11235
## 2436                Jamaica       New York             11434
## 2437               New York       New York             10013
## 2438              Peekskill       New York             10566
## 2439          Spring Valley       New York             10977
## 2440              Rochester       New York             14609
## 2441                Jamaica       New York             11434
## 2442                Jamaica       New York             11434
## 2443               Flushing       New York             11355
## 2444               Penn Yan       New York             14527
## 2445               Brooklyn       New York             11201
## 2446                  Owego       New York             13827
## 2447                 Elmira       New York             14905
## 2448                 Oswego       New York             13126
## 2449              Rochester       New York             14626
## 2450                Jamaica       New York             11434
## 2451              Amsterdam       New York             12010
## 2452             Kew Garden       New York             11415
## 2453             West Islip       New York             11795
## 2454                 Ithaca       New York             14850
## 2455                   Troy       New York             12180
## 2456               Brooklyn       New York             11237
## 2457                Amherst       New York             14226
## 2458                 Albany       New York             12208
## 2459              Patchogue       New York             11772
## 2460                  Utica       New York             13502
## 2461           New Hartford       New York             13503
## 2462           White Plains       New York             10601
## 2463                 Albany       New York             12207
## 2464                  Bronx       New York             10461
## 2465              Peekskill       New York             10566
## 2466                  Bronx       New York             10457
## 2467               Brooklyn       New York             11221
## 2468              Rochester       New York             14620
## 2469              Peekskill       New York             10566
## 2470                Yonkers       New York             10701
## 2471              Nesconset       New York             11767
## 2472               New York       New York             10011
## 2473           Forest Hills       New York             11375
## 2474                 Elmira       New York             14904
## 2475       Saratoga Springs       New York             12866
## 2476               Ossining       New York             10562
## 2477                Potsdam       New York             13676
## 2478               New York       New York             10029
## 2479               New York       New York             10010
## 2480              Riverhead       New York             11901
## 2481               Syracuse       New York             13205
## 2482               New York       New York             10021
## 2483                 Vestal       New York             13850
## 2484          Spring Valley       New York             10977
## 2485                  Bronx       New York             10469
## 2486            Ticonderoga       New York             12883
## 2487               Brooklyn       New York             11203
## 2488                 Oneida       New York             13421
## 2489                Oneonta       New York             13820
## 2490               New York       New York             10019
## 2491              Rochester       New York             14626
## 2492               Brooklyn       New York             11215
## 2493              Rhinebeck       New York             12572
## 2494             Whitestone       New York             11357
## 2495            White Plans       New York             10605
## 2496          Staten Island       New York             10305
## 2497               Syracuse       New York             13210
## 2498               Waterloo       New York             13165
## 2499               Penn Yan       New York             14527
## 2500              Liverpool       New York             13088
## 2501           New Hartford       New York             13503
## 2502                Dunkirk       New York             14048
## 2503             West Islip       New York             11795
## 2504           Gloversville       New York             12078
## 2505              Rochester       New York             14620
## 2506                 Elmira       New York             14905
## 2507               New York       New York             10001
## 2508                 Ithaca       New York             14850
## 2509               Cornwall       New York             12518
## 2510               Brooklyn       New York             11229
## 2511                  Owego       New York             13827
## 2512                  Bronx       New York             10453
## 2513              Patchogue       New York             11772
## 2514              Rochester       New York             14609
## 2515               Syracuse       New York             13203
## 2516               Brooklyn       New York             11201
## 2517               New York       New York             10013
## 2518               New York       New York             10041
## 2519              Rochester       New York             14625
## 2520                Jamaica       New York             11434
## 2521               New York       New York             10016
## 2522               Sayville       New York             11782
## 2523               Brooklyn       New York             11212
## 2524           Poughkeepsie       New York             12601
## 2525                 Carmel       New York             10512
## 2526            Cooperstown       New York             13326
## 2527              Manhasset       New York             11030
## 2528               Brooklyn       New York             11232
## 2529               Cortland       New York             13045
## 2530                Potsdam       New York             13676
## 2531       Croton-On-Hudson       New York             10520
## 2532               New York       New York             10013
## 2533              Rochester       New York             14626
## 2534              Peekskill       New York             10566
## 2535                Buffalo       New York             14215
## 2536              Watertown       New York             13601
## 2537                  Bronx       New York             10467
## 2538               Brewster       New York             10509
## 2539               New York       New York             10035
## 2540               New York       New York             10013
## 2541          New Hyde Park       New York             11040
## 2542               Flushing       New York             11354
## 2543           Saranac Lake       New York             12983
## 2544              Nashville       New York             37203
## 2545                Oneonta       New York             13820
## 2546            Schenectady       New York             12304
## 2547               New York       New York             10013
## 2548              Rochester       New York             14607
## 2549            Canandaigua       New York             14424
## 2550               Brooklyn       New York             11237
## 2551                 Cohoes       New York             12047
## 2552            Schenectady       New York             12304
## 2553            Dobbs Ferry       New York             10522
## 2554              Roosevelt       New York             11575
## 2555                Jamaica       New York             11434
## 2556              Watertown       New York             13601
## 2557           Howard Beach       New York             11414
## 2558                 Albany       New York             12210
## 2559               New York       New York             10012
## 2560              Westfield       New York             14787
## 2561               New York       New York             10040
## 2562              Oceanside       New York             11572
## 2563               New York       New York             10035
## 2564                  Utica       New York             13501
## 2565            Schenectady       New York             12308
## 2566                  Bronx       New York             10461
## 2567                   Troy       New York             12180
## 2568               Brooklyn       New York             11205
## 2569           Far Rockaway       New York             11691
## 2570               Kingston       New York             12401
## 2571               Brooklyn       New York             11208
## 2572                Buffalo       New York             14203
## 2573                Beverly       New York             01915
## 2574                 Purdys       New York             10578
## 2575              Rochester       New York             14620
## 2576               Ossining       New York             10562
## 2577           Johnson City       New York             13790
## 2578          Spring Valley       New York             10977
## 2579               Brooklyn       New York             11201
## 2580          Niagara Falls       New York             14302
## 2581                Jamaica       New York             11432
## 2582               New York       New York             10021
## 2583                Kenmore       New York             14217
## 2584              Rochester       New York             14603
## 2585                     Ny       New York             10010
## 2586              Watertown       New York             13601
## 2587              Rochester       New York             14620
## 2588            White Plans       New York             10605
## 2589                   Troy       New York             12180
## 2590                  Bronx       New York             10456
## 2591                  Bronx       New York             10467
## 2592               Cortland       New York             13045
## 2593                  Olean       New York             14760
## 2594                  Bronx       New York             10467
## 2595           New Hartford       New York             13503
## 2596                 Oneida       New York             13421
## 2597               Ossining       New York             10562
## 2598          Staten Island       New York             10310
## 2599              Plainview       New York             11803
## 2600                Yonkers       New York             10701
## 2601               New York       New York             10013
## 2602           Poughkeepsie       New York             12601
## 2603            White Plans       New York             10605
## 2604                  Bronx       New York             10461
## 2605            Schenectady       New York             12308
## 2606              Rochester       New York             14607
## 2607                   Troy       New York             12180
## 2608               Lakewood       New York             14750
## 2609              Watertown       New York             13601
## 2610               Valhalla       New York             10595
## 2611                  Bronx       New York             10467
## 2612               Brooklyn       New York         112070000
## 2613                  Bronx       New York             10467
## 2614              Patchogue       New York             11772
## 2615              Hempstead       New York             11530
## 2616              Rochester       New York             14614
## 2617                Jamaica       New York             11432
## 2618                Jamaica       New York             11434
## 2619                  Olean       New York             14760
## 2620              Riverhead       New York             11901
## 2621           Gloversville       New York             12078
## 2622               New York       New York             10016
## 2623              Rochester       New York             14609
## 2624           Ballston Spa       New York             12020
## 2625               Brooklyn       New York             11238
## 2626                Massena       New York             13662
## 2627              Rochester       New York             14607
## 2628            Plattsburgh       New York             12901
## 2629                  Bronx       New York             10469
## 2630                Jamaica       New York             11418
## 2631                Buffalo       New York             14207
## 2632              Amsterdam       New York             12010
## 2633                Jamaica       New York             11432
## 2634              Johnstown       New York             12095
## 2635             Binghamton       New York             13905
## 2636                  Bronx       New York             10459
## 2637              Rochester       New York             14620
## 2638           Johnson City       New York             13790
## 2639                 Geneva       New York             14456
## 2640          Spring Valley       New York             10977
## 2641              Manhasset       New York             11030
## 2642                  Bronx       New York             10463
## 2643                 Ithaca       New York             14850
## 2644              Rochester       New York             14620
## 2645               Penn Yan       New York             14527
## 2646                 Albion       New York             14411
## 2647              Watertown       New York             13601
## 2648               New York       New York             10016
## 2649             Amityville       New York             11701
## 2650               New York       New York             10012
## 2651               New York       New York             10016
## 2652            Schenectady       New York             12304
## 2653               New York       New York             10016
## 2654                 Oneida       New York             13421
## 2655                Jamaica       New York             11434
## 2656               Brooklyn       New York             11219
## 2657                 Auburn       New York             13021
## 2658                Batavia       New York             14020
## 2659                Norwich       New York             13815
## 2660               Cornwall       New York             12518
## 2661          Central Islip       New York             11722
## 2662                  Bronx       New York             10461
## 2663            Schenectady       New York             12305
## 2664              Rochester       New York             14620
## 2665              Manhasset       New York             11030
## 2666           Gloversville       New York             12078
## 2667                  Bronx       New York             10461
## 2668           Johnson City       New York             13790
## 2669               Fishkill       New York             12524
## 2670                  Bronx       New York             10461
## 2671                  Bronx       New York             10453
## 2672                  Utica       New York             13501
## 2673          Central Islip       New York             11722
## 2674              Brockport       New York             14420
## 2675               Melville       New York             11747
## 2676                 Monsey       New York             10952
## 2677              Brockport       New York             14420
## 2678           Johnson City       New York             13790
## 2679              Rochester       New York             14609
## 2680                  Olean       New York             14760
## 2681           Gloversville       New York             12078
## 2682                Oneonta       New York             13820
## 2683                Yonkers       New York             10701
## 2684                 Malone       New York             12953
## 2685               New York       New York             10016
## 2686               Kingston       New York             12401
## 2687               Flushing       New York             11355
## 2688               Brooklyn       New York             11208
## 2689                Buffalo       New York             14203
## 2690               New York       New York             10029
## 2691               New York       New York             10025
## 2692               New York       New York             10010
## 2693              Rochester       New York             14609
## 2694                  Bronx       New York             10467
## 2695               Brooklyn       New York             11218
## 2696                  Bronx       New York             10475
## 2697            Cooperstown       New York             13326
## 2698                  Bronx       New York             10467
## 2699                Jamaica       New York             11434
## 2700              Patchogue       New York             11772
## 2701              Granville       New York             12832
## 2702               Brooklyn       New York             11237
## 2703               Lowville       New York             13367
## 2704                 Albany       New York             12237
## 2705               New York       New York             10029
## 2706               New York       New York             10016
## 2707                 Albany       New York             12208
## 2708                 Goshen       New York             10924
## 2709                 Albany       New York             12208
## 2710              Glen Cove       New York             11542
## 2711              Bay Shore       New York             11706
## 2712               New York       New York             10032
## 2713               New York       New York             10028
## 2714                Jamaica       New York             11432
## 2715            North Creek       New York             12853
## 2716            Cooperstown       New York             13326
## 2717           White Plains       New York             10605
## 2718                  Bronx       New York             10471
## 2719               New York       New York             10019
## 2720              Rochester       New York             14620
## 2721        Center Moriches       New York             11934
## 2722                   Troy       New York             12180
## 2723              Rhinebeck       New York             12572
## 2724                Jamaica       New York             11432
## 2725               New York       New York             10012
## 2726              Westfield       New York             14744
## 2727               New York       New York             10021
## 2728                Potsdam       New York             13676
## 2729                  Bronx       New York             10461
## 2730           Poughkeepsie       New York             12601
## 2731               Melville       New York             11747
## 2732              Glen Cove       New York             11542
## 2733               Penn Yan       New York             14527
## 2734                Jamaica       New York             11434
## 2735               Penn Yan       New York             14527
## 2736                  Bronx       New York             10459
## 2737          New Hyde Park       New York             11040
## 2738          East Syracuse       New York             13057
## 2739                 Albany       New York             12208
## 2740               New York       New York             10012
## 2741               Syracuse       New York             13208
## 2742                Buffalo       New York             14214
## 2743            Cooperstown       New York             13326
## 2744          Staten Island       New York             10310
## 2745               New York       New York             10027
## 2746            Schenectady       New York             12308
## 2747               New York       New York             10017
## 2748               New York       New York             10016
## 2749               New York       New York             10036
## 2750               Brooklyn       New York             11219
## 2751                  Bronx       New York             10467
## 2752                Yonkers       New York             10701
## 2753            White Plans       New York             10605
## 2754               New York       New York             10003
## 2755                 Newark       New York             14513
## 2756              Peekskill       New York             10566
## 2757          New Hyde Park       New York        11042-1109
## 2758                 Ithaca       New York             14850
## 2759                  Bronx       New York             10473
## 2760           New Hartford       New York             13503
## 2761               Flushing       New York             11354
## 2762               Flushing       New York             11368
## 2763          Williamsville       New York             14221
## 2764                  Bronx       New York             10461
## 2765                Livonia       New York             14487
## 2766             Binghamton       New York             13905
## 2767                Buffalo       New York             14214
## 2768                Buffalo       New York             14212
## 2769                  Utica       New York             13501
## 2770              Mt Vernon       New York             10550
## 2771                Mineola       New York             11501
## 2772               New York       New York             10014
## 2773                  Bronx       New York             10457
## 2774                Shirley       New York             11967
## 2775                 Geneva       New York             14456
## 2776               New York       New York             10012
## 2777               Flushing       New York             11354
##                                     Cooperator.Name
## 1                                                  
## 2                                                  
## 3                                                  
## 4                                                  
## 5                                                  
## 6                                                  
## 7                                                  
## 8                                                  
## 9                                                  
## 10                                                 
## 11                                                 
## 12                                                 
## 13                                                 
## 14                                                 
## 15                                                 
## 16                                                 
## 17                                                 
## 18                                                 
## 19                                                 
## 20                                                 
## 21                                                 
## 22                                   Kaleida Health
## 23                                                 
## 24                                                 
## 25                                                 
## 26                                                 
## 27                                                 
## 28                                                 
## 29                                                 
## 30                                                 
## 31                                                 
## 32                                                 
## 33                                                 
## 34                                                 
## 35                         Gotham Health FQHC, Inc.
## 36                                                 
## 37                       Bassett Healthcare Network
## 38                                                 
## 39                                   Nuvance Health
## 40                                                 
## 41                         Gotham Health FQHC, Inc.
## 42                                                 
## 43                                                 
## 44                                                 
## 45                                                 
## 46                                                 
## 47                           Long Island FQHC, Inc.
## 48                      St. Peter's Health Partners
## 49                                                 
## 50                                                 
## 51                                                 
## 52                    Montefiore Health System, Inc
## 53                                                 
## 54                                                 
## 55      Northwell Quality and Medical Affairs, Inc.
## 56                                                 
## 57                                                 
## 58                                                 
## 59                                                 
## 60                                                 
## 61                                                 
## 62                      Mohawk Valley Health System
## 63                       Northwell Healthcare, Inc.
## 64                         Gotham Health FQHC, Inc.
## 65      Catholic Health System of Long Island, Inc.
## 66                                                 
## 67                        Rochester Regional Health
## 68                       Northwell Healthcare, Inc.
## 69                Mount Sinai Hospitals Group, Inc.
## 70                            Albany Medical Center
## 71                                   Nuvance Health
## 72                           Putnam Hospital Center
## 73                                                 
## 74                                                 
## 75                                                 
## 76      Northwell Quality and Medical Affairs, Inc.
## 77                                                 
## 78   The University of Vermont Health Network, Inc.
## 79                                                 
## 80                                                 
## 81                                                 
## 82                                                 
## 83                    Montefiore Health System, Inc
## 84      Northwell Quality and Medical Affairs, Inc.
## 85                                                 
## 86                                                 
## 87                                                 
## 88                       Northwell Healthcare, Inc.
## 89                         Gotham Health FQHC, Inc.
## 90                       Northwell Healthcare, Inc.
## 91                                                 
## 92                                                 
## 93                                                 
## 94                                                 
## 95                                                 
## 96                                                 
## 97                                                 
## 98                                                 
## 99                      Mohawk Valley Health System
## 100                                                
## 101                                                
## 102                        Gotham Health FQHC, Inc.
## 103               Mount Sinai Hospitals Group, Inc.
## 104                                                
## 105                    NYP Community Programs, Inc.
## 106                                                
## 107                      Northwell Healthcare, Inc.
## 108                                                
## 109                                                
## 110                                                
## 111                                                
## 112                                                
## 113                                                
## 114                                                
## 115                                                
## 116                                                
## 117                       Rochester Regional Health
## 118                                   Garnet Health
## 119                                                
## 120                                                
## 121                        Gotham Health FQHC, Inc.
## 122                      Trinity Health Corporation
## 123                      Trinity Health Corporation
## 124                                                
## 125                                                
## 126                                                
## 127                      Arnot Ogden Medical Center
## 128                                                
## 129                                                
## 130                                                
## 131                                                
## 132     Northwell Quality and Medical Affairs, Inc.
## 133                           Albany Medical Center
## 134                                                
## 135                                                
## 136                                                
## 137                                                
## 138     Northwell Quality and Medical Affairs, Inc.
## 139                                                
## 140                                                
## 141                                                
## 142                       St. Joseph's Health, Inc.
## 143                                                
## 144                     Mohawk Valley Health System
## 145                                                
## 146                                                
## 147                      Bassett Healthcare Network
## 148                                                
## 149                       Rochester Regional Health
## 150                     Mohawk Valley Health System
## 151                                                
## 152                                                
## 153                                                
## 154                                                
## 155                                                
## 156                                                
## 157                                                
## 158                                                
## 159                                                
## 160                                                
## 161                      Trinity Health Corporation
## 162                                                
## 163                                                
## 164                                                
## 165                       Rochester Regional Health
## 166                                                
## 167                      Crouse Health Hospital Inc
## 168                      Cayuga Health System, Inc.
## 169                                                
## 170                      Bassett Healthcare Network
## 171                                                
## 172                                                
## 173                                                
## 174                                                
## 175                                                
## 176                                                
## 177                                                
## 178                                                
## 179                                                
## 180     Northwell Quality and Medical Affairs, Inc.
## 181                                                
## 182                                                
## 183                                                
## 184                                                
## 185                                                
## 186                                                
## 187                                                
## 188                      Arnot Ogden Medical Center
## 189                       Rochester Regional Health
## 190                                                
## 191               Mount Sinai Hospitals Group, Inc.
## 192                                                
## 193                                                
## 194                      Trinity Health Corporation
## 195     Northwell Quality and Medical Affairs, Inc.
## 196                                                
## 197                                                
## 198                                                
## 199                        Gotham Health FQHC, Inc.
## 200                           Albany Medical Center
## 201                                                
## 202                            Health Alliance, Inc
## 203                                                
## 204                           Albany Medical Center
## 205                                                
## 206                                                
## 207                                                
## 208                       Rochester Regional Health
## 209                                                
## 210                                                
## 211                                                
## 212                                                
## 213                    Catholic Health System, Inc.
## 214               Mount Sinai Hospitals Group, Inc.
## 215                                                
## 216                       Montefiore Medical Center
## 217                                                
## 218                                                
## 219                                                
## 220                                                
## 221                                                
## 222                                                
## 223                      Northwell Healthcare, Inc.
## 224                                                
## 225               Mount Sinai Hospitals Group, Inc.
## 226                                                
## 227                                                
## 228                                                
## 229                                                
## 230                                                
## 231                                                
## 232                                                
## 233                      Northwell Healthcare, Inc.
## 234                                                
## 235                                                
## 236                                                
## 237                                                
## 238                                                
## 239                                                
## 240                                                
## 241                     St. Peter's Health Partners
## 242                                                
## 243                                                
## 244                                                
## 245                                                
## 246                                                
## 247                                                
## 248                    Catholic Health System, Inc.
## 249                                                
## 250                                                
## 251                                                
## 252                        Gotham Health FQHC, Inc.
## 253                                                
## 254                                                
## 255                                                
## 256                                                
## 257                                                
## 258                                                
## 259                                                
## 260                                                
## 261                                                
## 262                                                
## 263                                                
## 264                                                
## 265                      Trinity Health Corporation
## 266                                                
## 267                   Montefiore Health System, Inc
## 268                                                
## 269                                                
## 270                                                
## 271                                                
## 272                                                
## 273                                                
## 274              Highland Hospital of Rochester Inc
## 275                                                
## 276                   Montefiore Health System, Inc
## 277                              The Guthrie Clinic
## 278                                                
## 279                                                
## 280                                                
## 281               Mount Sinai Hospitals Group, Inc.
## 282                                                
## 283                   Montefiore Health System, Inc
## 284                                                
## 285                      Bassett Healthcare Network
## 286                                                
## 287                                                
## 288                                                
## 289                     St. Peter's Health Partners
## 290                                                
## 291                                                
## 292                                  Nuvance Health
## 293                                                
## 294                        Gotham Health FQHC, Inc.
## 295                                                
## 296                                                
## 297                                                
## 298                                                
## 299                  UPMC Chautauqua Services, Inc.
## 300                                                
## 301                                                
## 302                           Albany Medical Center
## 303                      Northwell Healthcare, Inc.
## 304                                                
## 305                                                
## 306                    NYP Community Programs, Inc.
## 307                                                
## 308                                                
## 309                   Montefiore Health System, Inc
## 310                            Health Alliance, Inc
## 311                                                
## 312                     St. Peter's Health Partners
## 313                                                
## 314                                                
## 315                      Northwell Healthcare, Inc.
## 316                                                
## 317                                                
## 318                           Albany Medical Center
## 319                                                
## 320                                                
## 321                                  Nuvance Health
## 322                                                
## 323               Mount Sinai Hospitals Group, Inc.
## 324                               Arnot Health Inc.
## 325                       Rochester Regional Health
## 326                                                
## 327                                                
## 328                                                
## 329                                                
## 330                                                
## 331                                                
## 332                                                
## 333                                                
## 334                                                
## 335                                                
## 336                     St. Peter's Health Partners
## 337                                                
## 338                                                
## 339                       Rochester Regional Health
## 340                                                
## 341                                                
## 342                                                
## 343                     St. Peter's Health Partners
## 344                                                
## 345                                                
## 346                                                
## 347                                                
## 348                  St Marys Hosp for Children Inc
## 349                                                
## 350                                                
## 351              Richmond University Medical Center
## 352                                                
## 353                                                
## 354                                                
## 355                                                
## 356                                                
## 357                St. Lawrence Health System, Inc.
## 358                                                
## 359                                                
## 360                   Montefiore Health System, Inc
## 361                                                
## 362                     Mohawk Valley Health System
## 363               Mount Sinai Hospitals Group, Inc.
## 364                                                
## 365                      Northwell Healthcare, Inc.
## 366                                                
## 367                                                
## 368                                                
## 369                                                
## 370                                                
## 371                           Albany Medical Center
## 372               Mount Sinai Hospitals Group, Inc.
## 373                                                
## 374                                                
## 375                                                
## 376                      Bassett Healthcare Network
## 377                                                
## 378                                                
## 379                       Rochester Regional Health
## 380                                                
## 381                                                
## 382                     St. Peter's Health Partners
## 383                                                
## 384                                                
## 385                                                
## 386                                                
## 387                                                
## 388                           Albany Medical Center
## 389                                                
## 390                                                
## 391                                                
## 392                                                
## 393                                                
## 394                      Trinity Health Corporation
## 395                                                
## 396                                                
## 397                                                
## 398                     St. Peter's Health Partners
## 399                  Good Samaritan Hosp of Suffern
## 400                                                
## 401                                                
## 402                                                
## 403                      Northwell Healthcare, Inc.
## 404                                                
## 405                   Montefiore Health System, Inc
## 406             Strong Partners Health System, Inc.
## 407                                                
## 408                                                
## 409                                                
## 410                                                
## 411                                                
## 412                                                
## 413                                                
## 414                                                
## 415                                                
## 416                                                
## 417                       Rochester Regional Health
## 418                                                
## 419                                                
## 420     Catholic Health System of Long Island, Inc.
## 421                                                
## 422                      Trinity Health Corporation
## 423                                                
## 424                    Catholic Health System, Inc.
## 425                                                
## 426                                                
## 427                                                
## 428                                                
## 429                                                
## 430                                                
## 431                                                
## 432                       Rochester Regional Health
## 433                                                
## 434                                                
## 435          Bon Secours Charity Health System Inc.
## 436                                                
## 437                                                
## 438                                                
## 439                                                
## 440                                                
## 441                                                
## 442                                                
## 443                                                
## 444                                                
## 445                                                
## 446                                                
## 447                                                
## 448                    NYP Community Programs, Inc.
## 449                                                
## 450                                                
## 451                                                
## 452                                                
## 453                     St. Peter's Health Partners
## 454                                                
## 455                                                
## 456                                                
## 457                                                
## 458                   Montefiore Health System, Inc
## 459                                                
## 460                   Montefiore Health System, Inc
## 461                                                
## 462                                                
## 463                                                
## 464                     St. Peter's Health Partners
## 465                                                
## 466                                                
## 467                                                
## 468                                                
## 469                      Northwell Healthcare, Inc.
## 470                                                
## 471                                                
## 472                                                
## 473                                                
## 474                                                
## 475                                                
## 476                      Northwell Healthcare, Inc.
## 477                                                
## 478                                                
## 479  The University of Vermont Health Network, Inc.
## 480                                                
## 481                                                
## 482                                                
## 483                                                
## 484                                   Garnet Health
## 485                     St. Peter's Health Partners
## 486                       Rochester Regional Health
## 487                                                
## 488                                                
## 489                                                
## 490                                                
## 491                      Northwell Healthcare, Inc.
## 492                                                
## 493  The University of Vermont Health Network, Inc.
## 494                                                
## 495                                                
## 496                                                
## 497                                                
## 498                                                
## 499                                                
## 500                                                
## 501                                                
## 502                                                
## 503                                                
## 504                                                
## 505                                                
## 506                                                
## 507                   Montefiore Health System, Inc
## 508                                                
## 509                                                
## 510                     St. Peter's Health Partners
## 511                                                
## 512                                                
## 513                                                
## 514                                                
## 515                                                
## 516                                                
## 517                                                
## 518                          St Peters Hospital Inc
## 519                                                
## 520                                                
## 521     Northwell Quality and Medical Affairs, Inc.
## 522                                                
## 523                                                
## 524                                                
## 525                                                
## 526                                                
## 527                                                
## 528                                                
## 529                                                
## 530                                                
## 531                                                
## 532                                                
## 533                                                
## 534                     St. Peter's Health Partners
## 535                      Trinity Health Corporation
## 536                        Samaritan Medical Center
## 537                    Catholic Health System, Inc.
## 538                                                
## 539                           Albany Medical Center
## 540                                                
## 541                      Northwell Healthcare, Inc.
## 542                                                
## 543                      Trinity Health Corporation
## 544                                                
## 545                                                
## 546                                                
## 547                                                
## 548                        Gotham Health FQHC, Inc.
## 549                                                
## 550                                                
## 551                                                
## 552                   Montefiore Health System, Inc
## 553                                                
## 554                                                
## 555                                                
## 556                                                
## 557                                                
## 558                                  Nuvance Health
## 559                    NYP Community Programs, Inc.
## 560                                                
## 561                                                
## 562                                                
## 563                                                
## 564                                                
## 565                  UPMC Chautauqua Services, Inc.
## 566                   Montefiore Health System, Inc
## 567                                                
## 568                      Northwell Healthcare, Inc.
## 569                                                
## 570                                                
## 571                                                
## 572                                                
## 573                                                
## 574                                                
## 575                                                
## 576                      Bassett Healthcare Network
## 577                                                
## 578                       Rochester Regional Health
## 579                                                
## 580                                                
## 581                                                
## 582                                                
## 583                                                
## 584                                                
## 585                                                
## 586                                                
## 587                      Bassett Healthcare Network
## 588                                                
## 589                                                
## 590                       Rochester Regional Health
## 591              Highland Hospital of Rochester Inc
## 592                                                
## 593                                                
## 594                                                
## 595                      Northwell Healthcare, Inc.
## 596                                                
## 597                                                
## 598                                                
## 599                                                
## 600                     St. Peter's Health Partners
## 601                           Albany Medical Center
## 602                      Bassett Healthcare Network
## 603                                                
## 604                      Trinity Health Corporation
## 605                                                
## 606                                                
## 607                                                
## 608                                                
## 609                                                
## 610                                                
## 611                                                
## 612                                                
## 613                                  Nuvance Health
## 614                                                
## 615                                                
## 616               Mount Sinai Hospitals Group, Inc.
## 617                                                
## 618                                                
## 619                                                
## 620                St. Lawrence Health System, Inc.
## 621                                                
## 622                      Cayuga Health System, Inc.
## 623                   Montefiore Health System, Inc
## 624                                                
## 625                                                
## 626                     Mohawk Valley Health System
## 627                              The Guthrie Clinic
## 628                                                
## 629                                                
## 630                                                
## 631                                                
## 632     Northwell Quality and Medical Affairs, Inc.
## 633                      Trinity Health Corporation
## 634                      Trinity Health Corporation
## 635                                                
## 636                                                
## 637                                                
## 638                                                
## 639     Northwell Quality and Medical Affairs, Inc.
## 640                                                
## 641                                                
## 642                       Rochester Regional Health
## 643                                                
## 644                                                
## 645                                                
## 646                                                
## 647                                                
## 648                                                
## 649                                                
## 650                                                
## 651                                                
## 652                                                
## 653                      Trinity Health Corporation
## 654               St Charles Hosp and Rehab Ctr Inc
## 655                                                
## 656                                                
## 657                                                
## 658                                                
## 659                       Rochester Regional Health
## 660                                                
## 661                                                
## 662                                                
## 663                                                
## 664                                                
## 665                                                
## 666                                                
## 667               St Charles Hosp and Rehab Ctr Inc
## 668                                                
## 669                                                
## 670                                                
## 671                                                
## 672                   Montefiore Health System, Inc
## 673                   Montefiore Health System, Inc
## 674                                                
## 675                                                
## 676                                                
## 677                                                
## 678                                                
## 679                                                
## 680                                                
## 681              Riverside Health Care System, Inc.
## 682                                                
## 683                                                
## 684                                                
## 685                                                
## 686               Mount Sinai Hospitals Group, Inc.
## 687                                                
## 688                                                
## 689                                                
## 690                                                
## 691                                                
## 692                                                
## 693                St Johns Health Care Corporation
## 694                      Bassett Healthcare Network
## 695                                                
## 696                                                
## 697                                                
## 698                                                
## 699                St. Lawrence Health System, Inc.
## 700                                                
## 701                                                
## 702                                                
## 703                     St. Peter's Health Partners
## 704                                                
## 705                                                
## 706     Northwell Quality and Medical Affairs, Inc.
## 707                                                
## 708                  UPMC Chautauqua Services, Inc.
## 709                                                
## 710                                                
## 711                                                
## 712                           Albany Medical Center
## 713                                                
## 714                                                
## 715                                                
## 716                                                
## 717                                   Garnet Health
## 718                                                
## 719                                                
## 720                                                
## 721                                                
## 722                                                
## 723                                                
## 724                                                
## 725                                                
## 726                                                
## 727                                                
## 728                                                
## 729                                                
## 730                                                
## 731                                                
## 732             Strong Partners Health System, Inc.
## 733                    Catholic Health System, Inc.
## 734                      Bassett Healthcare Network
## 735                                                
## 736                                                
## 737                        Gotham Health FQHC, Inc.
## 738                                                
## 739                                                
## 740                                                
## 741                                                
## 742                                                
## 743                      Trinity Health Corporation
## 744                                                
## 745                                                
## 746                                                
## 747                                                
## 748                                                
## 749                                                
## 750                                                
## 751                                                
## 752                                                
## 753                       St. Joseph's Health, Inc.
## 754                     St. Peter's Health Partners
## 755                                                
## 756                      Bassett Healthcare Network
## 757                One Brooklyn Health System, Inc.
## 758                    Catholic Health System, Inc.
## 759                                                
## 760                                                
## 761     Northwell Quality and Medical Affairs, Inc.
## 762                                                
## 763                                                
## 764                                                
## 765                      Trinity Health Corporation
## 766                                                
## 767                                                
## 768                                                
## 769                                                
## 770                                                
## 771                    Catholic Health System, Inc.
## 772                                                
## 773                      Trinity Health Corporation
## 774                                                
## 775                                                
## 776                                                
## 777                      Northwell Healthcare, Inc.
## 778                      Cayuga Health System, Inc.
## 779                                                
## 780                   Montefiore Health System, Inc
## 781                                                
## 782                   Montefiore Health System, Inc
## 783                                                
## 784                                                
## 785                   Montefiore Health System, Inc
## 786          Bon Secours Charity Health System Inc.
## 787                        Gotham Health FQHC, Inc.
## 788                                                
## 789                                                
## 790                                                
## 791                                                
## 792                                                
## 793                                                
## 794                   Montefiore Health System, Inc
## 795     Northwell Quality and Medical Affairs, Inc.
## 796                                                
## 797                           Albany Medical Center
## 798                                                
## 799                                                
## 800                                                
## 801                                                
## 802                St. Lawrence Health System, Inc.
## 803                   Montefiore Health System, Inc
## 804                                                
## 805                                                
## 806                                                
## 807                                                
## 808                                                
## 809                                                
## 810                                                
## 811                                                
## 812                                                
## 813                                                
## 814                                                
## 815                                                
## 816                                                
## 817                                                
## 818                      Bassett Healthcare Network
## 819                    Catholic Health System, Inc.
## 820                                                
## 821                                                
## 822                      Northwell Healthcare, Inc.
## 823                                                
## 824     Northwell Quality and Medical Affairs, Inc.
## 825                                                
## 826                                                
## 827                                                
## 828                                                
## 829                                                
## 830                                                
## 831                                                
## 832                      Trinity Health Corporation
## 833                   Montefiore Health System, Inc
## 834                                                
## 835                                                
## 836                                                
## 837     Northwell Quality and Medical Affairs, Inc.
## 838                                                
## 839                                                
## 840                                                
## 841                                                
## 842                                                
## 843                      Bassett Healthcare Network
## 844                                                
## 845                       Rochester Regional Health
## 846                                                
## 847                                                
## 848                      Bassett Healthcare Network
## 849                                                
## 850                                                
## 851                                                
## 852                                                
## 853                           Albany Medical Center
## 854                                                
## 855                                                
## 856               St Charles Hosp and Rehab Ctr Inc
## 857                                                
## 858                                                
## 859                     Mohawk Valley Health System
## 860                                                
## 861                                                
## 862                   Montefiore Health System, Inc
## 863                                                
## 864                                                
## 865                                                
## 866                                                
## 867                                                
## 868                                                
## 869                                                
## 870                                                
## 871                                                
## 872                                                
## 873                                                
## 874                                                
## 875                                                
## 876                                                
## 877                                                
## 878                                                
## 879                           Albany Medical Center
## 880                                                
## 881                                                
## 882                                                
## 883                     St. Vincent's Health System
## 884                   Montefiore Health System, Inc
## 885                                                
## 886                                                
## 887                One Brooklyn Health System, Inc.
## 888                                                
## 889                           Albany Medical Center
## 890                                                
## 891                                                
## 892                                                
## 893                        Gotham Health FQHC, Inc.
## 894                    Catholic Health System, Inc.
## 895     Catholic Health System of Long Island, Inc.
## 896                                                
## 897                                                
## 898                                                
## 899     Northwell Quality and Medical Affairs, Inc.
## 900                                                
## 901                                                
## 902                                                
## 903                                                
## 904                                  Kaleida Health
## 905                                                
## 906                                                
## 907                                                
## 908                                                
## 909     Northwell Quality and Medical Affairs, Inc.
## 910                                                
## 911                    Vassar Brothers Hospital Inc
## 912                        Gotham Health FQHC, Inc.
## 913                                                
## 914                                                
## 915                                                
## 916                                                
## 917                                                
## 918                                                
## 919                      Bassett Healthcare Network
## 920                           Albany Medical Center
## 921               Mount Sinai Hospitals Group, Inc.
## 922                                                
## 923                              The Guthrie Clinic
## 924                                                
## 925                                                
## 926                                                
## 927                                                
## 928                                                
## 929                                                
## 930                                                
## 931                                                
## 932                                                
## 933                      Bassett Healthcare Network
## 934                                                
## 935                      Trinity Health Corporation
## 936                        Gotham Health FQHC, Inc.
## 937                                                
## 938                                                
## 939                                                
## 940                                                
## 941                                                
## 942                                                
## 943                      Cayuga Health System, Inc.
## 944                                                
## 945               Mount Sinai Hospitals Group, Inc.
## 946                                                
## 947                                                
## 948                                                
## 949                                                
## 950                                                
## 951  The University of Vermont Health Network, Inc.
## 952                                                
## 953                           Albany Medical Center
## 954                                                
## 955                                                
## 956                                                
## 957                      St Catherine Siena Med Ctr
## 958                      Trinity Health Corporation
## 959                                                
## 960                                                
## 961                                                
## 962                                                
## 963                                                
## 964                                                
## 965                                                
## 966                                                
## 967                   Montefiore Health System, Inc
## 968                                                
## 969                                                
## 970                                                
## 971                                                
## 972                       Rochester Regional Health
## 973                   Upper Allegheny Health System
## 974                                                
## 975                One Brooklyn Health System, Inc.
## 976                                                
## 977                                                
## 978                                                
## 979                                                
## 980                                                
## 981                      Northwell Healthcare, Inc.
## 982                                                
## 983                                                
## 984                                                
## 985                                                
## 986          Bon Secours Charity Health System Inc.
## 987                                                
## 988                                                
## 989                                                
## 990                                                
## 991                                                
## 992                                                
## 993                                                
## 994                                                
## 995                                                
## 996                                                
## 997                   Montefiore Health System, Inc
## 998                                                
## 999                                                
## 1000                                               
## 1001                     Northwell Healthcare, Inc.
## 1002                                               
## 1003                                               
## 1004                                               
## 1005                                               
## 1006                                               
## 1007                                               
## 1008                                               
## 1009                                               
## 1010                  Montefiore Health System, Inc
## 1011                                               
## 1012                                               
## 1013                                               
## 1014                     Northwell Healthcare, Inc.
## 1015                      Rochester Regional Health
## 1016                                               
## 1017                                               
## 1018                     Northwell Healthcare, Inc.
## 1019                                               
## 1020                                               
## 1021                    St. Peter's Health Partners
## 1022                                               
## 1023                                               
## 1024                                               
## 1025                                               
## 1026                                               
## 1027                                               
## 1028                                               
## 1029                                               
## 1030                                               
## 1031                                               
## 1032                                               
## 1033              Mount Sinai Hospitals Group, Inc.
## 1034                                               
## 1035                                               
## 1036                                               
## 1037                                               
## 1038                                               
## 1039                                               
## 1040                                               
## 1041                                               
## 1042                          Albany Medical Center
## 1043                                               
## 1044                                               
## 1045                                               
## 1046                                               
## 1047                                               
## 1048                                               
## 1049    Northwell Quality and Medical Affairs, Inc.
## 1050                                               
## 1051                                               
## 1052                  Bridge Regional Health System
## 1053                                               
## 1054                                               
## 1055                                               
## 1056                                               
## 1057                                               
## 1058                                               
## 1059                                 Nuvance Health
## 1060                                               
## 1061                                               
## 1062                                               
## 1063                                               
## 1064                                               
## 1065                                               
## 1066                                               
## 1067                                               
## 1068     Westchester County Health Care Corporation
## 1069                      Rochester Regional Health
## 1070                     Trinity Health Corporation
## 1071    Catholic Health System of Long Island, Inc.
## 1072                                               
## 1073                                               
## 1074                     Bassett Healthcare Network
## 1075                   Vassar Brothers Hospital Inc
## 1076                                               
## 1077                                               
## 1078                                               
## 1079                                               
## 1080                          Albany Medical Center
## 1081                                               
## 1082                                               
## 1083                     Trinity Health Corporation
## 1084                                               
## 1085                                               
## 1086                     Bassett Healthcare Network
## 1087             Riverside Health Care System, Inc.
## 1088                                               
## 1089                                               
## 1090                                               
## 1091                                               
## 1092                      Rochester Regional Health
## 1093                       Gotham Health FQHC, Inc.
## 1094                     Bassett Healthcare Network
## 1095                                               
## 1096                                               
## 1097                                               
## 1098                                               
## 1099                                               
## 1100                     Bassett Healthcare Network
## 1101                                               
## 1102                     Northwell Healthcare, Inc.
## 1103                                               
## 1104                                               
## 1105                                               
## 1106                                               
## 1107                     Bassett Healthcare Network
## 1108                                               
## 1109             Highland Hospital of Rochester Inc
## 1110                                               
## 1111                          Albany Medical Center
## 1112                                               
## 1113                                               
## 1114                                               
## 1115                                               
## 1116                                               
## 1117                                               
## 1118                                               
## 1119                                               
## 1120                                               
## 1121                       Gotham Health FQHC, Inc.
## 1122                                               
## 1123                     Trinity Health Corporation
## 1124                                               
## 1125                                               
## 1126                                               
## 1127            Strong Partners Health System, Inc.
## 1128                                               
## 1129                   NYP Community Programs, Inc.
## 1130                     Northwell Healthcare, Inc.
## 1131              Mount Sinai Hospitals Group, Inc.
## 1132                                               
## 1133                                               
## 1134              Mount Sinai Hospitals Group, Inc.
## 1135                                               
## 1136                                               
## 1137                      Rochester Regional Health
## 1138                                               
## 1139                      Rochester Regional Health
## 1140              Mount Sinai Hospitals Group, Inc.
## 1141                                               
## 1142                     Northwell Healthcare, Inc.
## 1143                                               
## 1144                                               
## 1145    Northwell Quality and Medical Affairs, Inc.
## 1146                     Northwell Healthcare, Inc.
## 1147                                               
## 1148                                               
## 1149                                               
## 1150                                               
## 1151                                               
## 1152                                               
## 1153                                               
## 1154                                               
## 1155                                               
## 1156                                               
## 1157 The University of Vermont Health Network, Inc.
## 1158                  Upper Allegheny Health System
## 1159                      Rochester Regional Health
## 1160                      St. Joseph's Health, Inc.
## 1161                                               
## 1162                                               
## 1163                       Gotham Health FQHC, Inc.
## 1164                                               
## 1165                                               
## 1166 The University of Vermont Health Network, Inc.
## 1167                                               
## 1168                                               
## 1169                         Long Island FQHC, Inc.
## 1170                                               
## 1171                  Montefiore Health System, Inc
## 1172                                               
## 1173                                               
## 1174                      Rochester Regional Health
## 1175                                               
## 1176                                               
## 1177                                               
## 1178               One Brooklyn Health System, Inc.
## 1179                                               
## 1180                  Montefiore Health System, Inc
## 1181                                               
## 1182    Catholic Health System of Long Island, Inc.
## 1183                      Rochester Regional Health
## 1184                                               
## 1185                                               
## 1186                                               
## 1187                                               
## 1188                                               
## 1189                                               
## 1190                     Northwell Healthcare, Inc.
## 1191                                               
## 1192                                               
## 1193                           Health Alliance, Inc
## 1194                                               
## 1195                                               
## 1196                                               
## 1197                                               
## 1198                                               
## 1199                                               
## 1200                                               
## 1201                                               
## 1202 The University of Vermont Health Network, Inc.
## 1203                    St. Peter's Health Partners
## 1204                                               
## 1205                                               
## 1206                                               
## 1207                                               
## 1208                                               
## 1209                                               
## 1210                                               
## 1211                                               
## 1212                                               
## 1213                                               
## 1214                                               
## 1215                                               
## 1216                                               
## 1217                                               
## 1218                                               
## 1219                                               
## 1220                                               
## 1221               One Brooklyn Health System, Inc.
## 1222                                               
## 1223    Northwell Quality and Medical Affairs, Inc.
## 1224                                               
## 1225                                               
## 1226                                               
## 1227              Mount Sinai Hospitals Group, Inc.
## 1228                                               
## 1229                                               
## 1230                                               
## 1231                      Rochester Regional Health
## 1232                                               
## 1233                                               
## 1234                                               
## 1235                                               
## 1236                                               
## 1237                   NYP Community Programs, Inc.
## 1238                                               
## 1239                                               
## 1240                                               
## 1241                                               
## 1242                                               
## 1243                                               
## 1244                      Rochester Regional Health
## 1245                                               
## 1246                          Albany Medical Center
## 1247                                               
## 1248                      Rochester Regional Health
## 1249                                               
## 1250                                               
## 1251                                               
## 1252                                               
## 1253                                               
## 1254                                               
## 1255                              Arnot Health Inc.
## 1256                     Bassett Healthcare Network
## 1257                                               
## 1258                                               
## 1259                                               
## 1260                                               
## 1261                     Northwell Healthcare, Inc.
## 1262                  Montefiore Health System, Inc
## 1263    Northwell Quality and Medical Affairs, Inc.
## 1264                           Health Alliance, Inc
## 1265                                               
## 1266                                               
## 1267                                               
## 1268                                               
## 1269                                               
## 1270                                               
## 1271                                               
## 1272                                               
## 1273               St. Lawrence Health System, Inc.
## 1274                                               
## 1275                                               
## 1276                                               
## 1277                                               
## 1278                      Rochester Regional Health
## 1279                     Health Quest Systems, Inc.
## 1280                    Mohawk Valley Health System
## 1281                                               
## 1282                                               
## 1283     Westchester County Health Care Corporation
## 1284                                               
## 1285                                               
## 1286                                               
## 1287                                               
## 1288                    Mohawk Valley Health System
## 1289                                               
## 1290                                               
## 1291                                               
## 1292                                               
## 1293                                               
## 1294                                               
## 1295                                               
## 1296                                               
## 1297                                               
## 1298                                               
## 1299                                               
## 1300                                               
## 1301             Riverside Health Care System, Inc.
## 1302                                               
## 1303                                               
## 1304                                               
## 1305                                               
## 1306                                               
## 1307                          Albany Medical Center
## 1308                                               
## 1309                                               
## 1310                     Northwell Healthcare, Inc.
## 1311                                               
## 1312                                               
## 1313                                               
## 1314                     Trinity Health Corporation
## 1315                                               
## 1316                                               
## 1317                                               
## 1318                                               
## 1319                                               
## 1320                                               
## 1321                     Northwell Healthcare, Inc.
## 1322                                               
## 1323                                               
## 1324                                               
## 1325                                               
## 1326                  Montefiore Health System, Inc
## 1327                                               
## 1328               One Brooklyn Health System, Inc.
## 1329                                               
## 1330                   Catholic Health System, Inc.
## 1331                                               
## 1332                                               
## 1333                                               
## 1334                  Montefiore Health System, Inc
## 1335                                               
## 1336                       Gotham Health FQHC, Inc.
## 1337                      Rochester Regional Health
## 1338                                               
## 1339                      Rochester Regional Health
## 1340                                               
## 1341                                               
## 1342                                               
## 1343                     Northwell Healthcare, Inc.
## 1344                    St. Peter's Health Partners
## 1345                                               
## 1346             Franciscan Sisters of the Poor Inc
## 1347 The University of Vermont Health Network, Inc.
## 1348                                               
## 1349                                               
## 1350                                               
## 1351                                               
## 1352                                               
## 1353                                               
## 1354                                               
## 1355                                               
## 1356                                               
## 1357                                               
## 1358                    Mohawk Valley Health System
## 1359                                               
## 1360                       Gotham Health FQHC, Inc.
## 1361                                               
## 1362                                               
## 1363                                               
## 1364                                               
## 1365                                               
## 1366                                               
## 1367                                               
## 1368                                               
## 1369                                               
## 1370    Northwell Quality and Medical Affairs, Inc.
## 1371                                               
## 1372                     Bassett Healthcare Network
## 1373                     Trinity Health Corporation
## 1374                                               
## 1375                                               
## 1376                                               
## 1377                                               
## 1378                                               
## 1379                                               
## 1380                                               
## 1381                                               
## 1382              Mount Sinai Hospitals Group, Inc.
## 1383    Northwell Quality and Medical Affairs, Inc.
## 1384                                               
## 1385                                               
## 1386              Mount Sinai Hospitals Group, Inc.
## 1387                     Northwell Healthcare, Inc.
## 1388                         Long Island FQHC, Inc.
## 1389                                               
## 1390                          Albany Medical Center
## 1391                    St. Peter's Health Partners
## 1392    Northwell Quality and Medical Affairs, Inc.
## 1393                                               
## 1394                                               
## 1395                                               
## 1396                                               
## 1397                                               
## 1398            Strong Partners Health System, Inc.
## 1399                                               
## 1400                                               
## 1401                                               
## 1402                          Albany Medical Center
## 1403                     Bassett Healthcare Network
## 1404                  Montefiore Health System, Inc
## 1405                                               
## 1406                    St. Peter's Health Partners
## 1407                     Northwell Healthcare, Inc.
## 1408                     Bassett Healthcare Network
## 1409                                               
## 1410                     Trinity Health Corporation
## 1411                                               
## 1412                          Albany Medical Center
## 1413                                               
## 1414                  Montefiore Health System, Inc
## 1415                                               
## 1416                                               
## 1417                                               
## 1418              Mount Sinai Hospitals Group, Inc.
## 1419                  Montefiore Health System, Inc
## 1420                                               
## 1421                    St. Peter's Health Partners
## 1422                                               
## 1423                    Mohawk Valley Health System
## 1424                                               
## 1425                                               
## 1426                                               
## 1427                                               
## 1428                                               
## 1429                                 Nuvance Health
## 1430                                               
## 1431                                               
## 1432                      Rochester Regional Health
## 1433                                               
## 1434                  Montefiore Health System, Inc
## 1435                                               
## 1436                                               
## 1437                                               
## 1438                  Montefiore Health System, Inc
## 1439                                               
## 1440                      Rochester Regional Health
## 1441                     Northwell Healthcare, Inc.
## 1442                                               
## 1443                                               
## 1444                                               
## 1445                                               
## 1446                                               
## 1447                    St. Peter's Health Partners
## 1448                                               
## 1449                                               
## 1450                                               
## 1451                       Gotham Health FQHC, Inc.
## 1452                                               
## 1453                  Montefiore Health System, Inc
## 1454                                               
## 1455                                               
## 1456                      Rochester Regional Health
## 1457                     Trinity Health Corporation
## 1458                                               
## 1459                                               
## 1460                                               
## 1461                                               
## 1462                     Northwell Healthcare, Inc.
## 1463                              Arnot Health Inc.
## 1464                                               
## 1465                                               
## 1466                                               
## 1467                   Catholic Health System, Inc.
## 1468                                               
## 1469                                               
## 1470                                               
## 1471                                               
## 1472                     Trinity Health Corporation
## 1473                                               
## 1474                                               
## 1475                                               
## 1476                                               
## 1477                                               
## 1478                                               
## 1479                   NYP Community Programs, Inc.
## 1480                     Northwell Healthcare, Inc.
## 1481                                               
## 1482                                               
## 1483                                               
## 1484                                               
## 1485                                               
## 1486                                               
## 1487                                               
## 1488                                               
## 1489                                               
## 1490                                               
## 1491                                               
## 1492                     Northwell Healthcare, Inc.
## 1493                                               
## 1494                                               
## 1495                                               
## 1496                                               
## 1497                                               
## 1498                                               
## 1499                                               
## 1500                                               
## 1501                                               
## 1502                  Montefiore Health System, Inc
## 1503                                               
## 1504                                               
## 1505                                 Nuvance Health
## 1506                                               
## 1507                                               
## 1508                                               
## 1509                                               
## 1510                                               
## 1511                      Rochester Regional Health
## 1512                                               
## 1513                                               
## 1514                                               
## 1515                                               
## 1516                  Montefiore Health System, Inc
## 1517                                               
## 1518                                               
## 1519                                               
## 1520                                               
## 1521                                               
## 1522                                               
## 1523                                               
## 1524                             Jewish Senior Life
## 1525                                               
## 1526                   Vassar Brothers Hospital Inc
## 1527                  Montefiore Health System, Inc
## 1528                                               
## 1529                                               
## 1530                                               
## 1531                                               
## 1532                                               
## 1533                                               
## 1534                  Montefiore Health System, Inc
## 1535                                               
## 1536                     Northwell Healthcare, Inc.
## 1537                                               
## 1538                      Rochester Regional Health
## 1539                                               
## 1540             Highland Hospital of Rochester Inc
## 1541                                               
## 1542                    St. Peter's Health Partners
## 1543                                               
## 1544                                               
## 1545                                               
## 1546                                               
## 1547                                               
## 1548                                               
## 1549                                               
## 1550                                               
## 1551                     Northwell Healthcare, Inc.
## 1552                                               
## 1553 The University of Vermont Health Network, Inc.
## 1554                                               
## 1555                                               
## 1556                                               
## 1557                                               
## 1558                                               
## 1559             Riverside Health Care System, Inc.
## 1560              Mount Sinai Hospitals Group, Inc.
## 1561                                               
## 1562                                               
## 1563                                               
## 1564                                               
## 1565                                               
## 1566                                               
## 1567              Mount Sinai Hospitals Group, Inc.
## 1568                                               
## 1569                                               
## 1570                     Bassett Healthcare Network
## 1571            Strong Partners Health System, Inc.
## 1572                                               
## 1573                                               
## 1574                                               
## 1575                  Montefiore Health System, Inc
## 1576                                               
## 1577    Catholic Health System of Long Island, Inc.
## 1578                                               
## 1579                                               
## 1580                                               
## 1581                      Rochester Regional Health
## 1582                                               
## 1583                     Northwell Healthcare, Inc.
## 1584                                               
## 1585                      Rochester Regional Health
## 1586                                               
## 1587                                               
## 1588                                               
## 1589                                               
## 1590                                               
## 1591                                               
## 1592                                               
## 1593                                               
## 1594                                               
## 1595                     Trinity Health Corporation
## 1596                                               
## 1597              St Charles Hosp and Rehab Ctr Inc
## 1598                                               
## 1599                                               
## 1600                                               
## 1601                  Montefiore Health System, Inc
## 1602                          Albany Medical Center
## 1603                                               
## 1604                                               
## 1605                    St. Peter's Health Partners
## 1606                                               
## 1607    Northwell Quality and Medical Affairs, Inc.
## 1608                                               
## 1609               One Brooklyn Health System, Inc.
## 1610                                               
## 1611                                               
## 1612                                               
## 1613                                               
## 1614                                               
## 1615                                               
## 1616              Mount Sinai Hospitals Group, Inc.
## 1617                          Albany Medical Center
## 1618                                               
## 1619                                               
## 1620                                               
## 1621                                               
## 1622                                               
## 1623                                               
## 1624                                               
## 1625                                               
## 1626                           Health Alliance, Inc
## 1627                                               
## 1628                  Montefiore Health System, Inc
## 1629                                               
## 1630                                               
## 1631                                               
## 1632                                               
## 1633                                               
## 1634                                               
## 1635                                               
## 1636                                               
## 1637                                               
## 1638                                               
## 1639 The University of Vermont Health Network, Inc.
## 1640    Northwell Quality and Medical Affairs, Inc.
## 1641                                               
## 1642                                               
## 1643             Highland Hospital of Rochester Inc
## 1644                                               
## 1645                                               
## 1646                                               
## 1647                                               
## 1648                                               
## 1649                       Gotham Health FQHC, Inc.
## 1650                                               
## 1651                                               
## 1652                                               
## 1653                                  Garnet Health
## 1654                                               
## 1655              Mount Sinai Hospitals Group, Inc.
## 1656                                               
## 1657                    Mohawk Valley Health System
## 1658                                               
## 1659    Northwell Quality and Medical Affairs, Inc.
## 1660                                               
## 1661                                               
## 1662                          Albany Medical Center
## 1663 The University of Vermont Health Network, Inc.
## 1664                                               
## 1665                                               
## 1666                                               
## 1667                                               
## 1668                   Catholic Health System, Inc.
## 1669                                               
## 1670                                               
## 1671                                               
## 1672                     Trinity Health Corporation
## 1673                    Mohawk Valley Health System
## 1674                                               
## 1675                                               
## 1676                                               
## 1677                                               
## 1678                                               
## 1679                     Bassett Healthcare Network
## 1680                                               
## 1681                     Bassett Healthcare Network
## 1682                                               
## 1683                                               
## 1684                                               
## 1685                                               
## 1686                      Rochester Regional Health
## 1687              St Charles Hosp and Rehab Ctr Inc
## 1688                                               
## 1689                      Rochester Regional Health
## 1690                   Catholic Health System, Inc.
## 1691                                               
## 1692                                               
## 1693                                               
## 1694                                               
## 1695                                               
## 1696                    Mohawk Valley Health System
## 1697                                               
## 1698                                               
## 1699                                               
## 1700                                               
## 1701                                               
## 1702                                               
## 1703                                               
## 1704                                               
## 1705               St. Lawrence Health System, Inc.
## 1706                                               
## 1707                                               
## 1708                                               
## 1709                                               
## 1710                                               
## 1711                                               
## 1712                    St. Peter's Health Partners
## 1713                     Trinity Health Corporation
## 1714                                               
## 1715                                               
## 1716                                               
## 1717                                               
## 1718                                               
## 1719                                               
## 1720                                               
## 1721                                               
## 1722               St. Lawrence Health System, Inc.
## 1723                                               
## 1724                       Gotham Health FQHC, Inc.
## 1725                                               
## 1726                                               
## 1727                     Bassett Healthcare Network
## 1728                                               
## 1729                     Cayuga Health System, Inc.
## 1730    Catholic Health System of Long Island, Inc.
## 1731                                               
## 1732                                               
## 1733                  Montefiore Health System, Inc
## 1734                                               
## 1735                                               
## 1736                                               
## 1737                                               
## 1738                  Montefiore Health System, Inc
## 1739                                               
## 1740                                               
## 1741                                               
## 1742                                               
## 1743                                               
## 1744                                               
## 1745                                               
## 1746                     Northwell Healthcare, Inc.
## 1747                                               
## 1748                                               
## 1749                                               
## 1750                                               
## 1751            Strong Partners Health System, Inc.
## 1752                                               
## 1753                                               
## 1754     Westchester County Health Care Corporation
## 1755                                               
## 1756                                               
## 1757                     Northwell Healthcare, Inc.
## 1758                                               
## 1759                                               
## 1760                     Trinity Health Corporation
## 1761                  Montefiore Health System, Inc
## 1762               One Brooklyn Health System, Inc.
## 1763                  Montefiore Health System, Inc
## 1764                                               
## 1765                                               
## 1766                                               
## 1767                  Montefiore Health System, Inc
## 1768                   Catholic Health System, Inc.
## 1769                     Bassett Healthcare Network
## 1770              Mount Sinai Hospitals Group, Inc.
## 1771                              Arnot Health Inc.
## 1772                                               
## 1773                                               
## 1774                     Bassett Healthcare Network
## 1775                                               
## 1776                                               
## 1777                                               
## 1778                                               
## 1779                                               
## 1780                      Rochester Regional Health
## 1781                                               
## 1782                                               
## 1783                                               
## 1784                                               
## 1785                       Gotham Health FQHC, Inc.
## 1786                                               
## 1787                                               
## 1788                                               
## 1789                                               
## 1790                                               
## 1791                     Trinity Health Corporation
## 1792              Mount Sinai Hospitals Group, Inc.
## 1793                     Northwell Healthcare, Inc.
## 1794                                               
## 1795    Northwell Quality and Medical Affairs, Inc.
## 1796                                               
## 1797                                               
## 1798                                               
## 1799     Westchester County Health Care Corporation
## 1800                                               
## 1801                                               
## 1802                                               
## 1803                                               
## 1804                     Trinity Health Corporation
## 1805                      Rochester Regional Health
## 1806                                               
## 1807                     Northwell Healthcare, Inc.
## 1808                                               
## 1809                                               
## 1810                                               
## 1811                                               
## 1812                                               
## 1813                          Albany Medical Center
## 1814                                               
## 1815                                               
## 1816                                               
## 1817                                               
## 1818                                               
## 1819                                               
## 1820                                               
## 1821                     Northwell Healthcare, Inc.
## 1822                                               
## 1823                                               
## 1824                                               
## 1825                                               
## 1826                                               
## 1827                                               
## 1828                                               
## 1829                     Trinity Health Corporation
## 1830                                               
## 1831                                               
## 1832                                               
## 1833              Mount Sinai Hospitals Group, Inc.
## 1834                                               
## 1835                    St. Peter's Health Partners
## 1836                         Putnam Hospital Center
## 1837                                               
## 1838                                               
## 1839                                               
## 1840                   NYP Community Programs, Inc.
## 1841                                               
## 1842                                               
## 1843    Northwell Quality and Medical Affairs, Inc.
## 1844                                               
## 1845                                               
## 1846 The University of Vermont Health Network, Inc.
## 1847                                               
## 1848                     Trinity Health Corporation
## 1849                                               
## 1850                     Trinity Health Corporation
## 1851                                               
## 1852                                               
## 1853                                               
## 1854                           Health Alliance, Inc
## 1855                                               
## 1856                                               
## 1857     Westchester County Health Care Corporation
## 1858                                               
## 1859                  Montefiore Health System, Inc
## 1860                                               
## 1861              Mount Sinai Hospitals Group, Inc.
## 1862                                               
## 1863                                               
## 1864                                               
## 1865                                               
## 1866                                               
## 1867                                               
## 1868                                               
## 1869                                               
## 1870                                               
## 1871                                               
## 1872                      Rochester Regional Health
## 1873                     Trinity Health Corporation
## 1874                                               
## 1875                                               
## 1876                                               
## 1877                                               
## 1878                                               
## 1879                                               
## 1880                                               
## 1881                   Catholic Health System, Inc.
## 1882                     Trinity Health Corporation
## 1883                                               
## 1884                                               
## 1885               St. Lawrence Health System, Inc.
## 1886                                               
## 1887                                               
## 1888                                               
## 1889                                               
## 1890                                               
## 1891                                               
## 1892                                               
## 1893                                               
## 1894                                               
## 1895                                               
## 1896                          Albany Medical Center
## 1897                                               
## 1898                                               
## 1899                                               
## 1900                                               
## 1901                                               
## 1902                                               
## 1903                                               
## 1904                                               
## 1905                     Bassett Healthcare Network
## 1906                                               
## 1907                                               
## 1908                                               
## 1909              Mount Sinai Hospitals Group, Inc.
## 1910                                               
## 1911                                               
## 1912                                               
## 1913                                               
## 1914                                               
## 1915               St. Lawrence Health System, Inc.
## 1916                                               
## 1917                    St. Peter's Health Partners
## 1918                  Montefiore Health System, Inc
## 1919                    St. Peter's Health Partners
## 1920                                               
## 1921              St Charles Hosp and Rehab Ctr Inc
## 1922                                               
## 1923                                               
## 1924                                               
## 1925                                               
## 1926                                               
## 1927                   Catholic Health System, Inc.
## 1928         Bon Secours Charity Health System Inc.
## 1929                                               
## 1930                                               
## 1931                                               
## 1932                                               
## 1933                                               
## 1934                                               
## 1935                                               
## 1936                                               
## 1937                                               
## 1938                                               
## 1939                                               
## 1940                                               
## 1941                                               
## 1942                     Bassett Healthcare Network
## 1943                                               
## 1944                                               
## 1945                                               
## 1946                                               
## 1947                     Northwell Healthcare, Inc.
## 1948                                               
## 1949                   Catholic Health System, Inc.
## 1950                                               
## 1951                          Albany Medical Center
## 1952                                               
## 1953                   Catholic Health System, Inc.
## 1954                                               
## 1955                                               
## 1956                                               
## 1957                   Catholic Health System, Inc.
## 1958                         Long Island FQHC, Inc.
## 1959                              Arnot Health Inc.
## 1960                                               
## 1961                                               
## 1962                                               
## 1963                                               
## 1964                                               
## 1965                                               
## 1966                   Catholic Health System, Inc.
## 1967                                               
## 1968                                               
## 1969                                               
## 1970                                               
## 1971                                               
## 1972                                               
## 1973                                               
## 1974                                               
## 1975                                               
## 1976                    St. Peter's Health Partners
## 1977                                               
## 1978                                               
## 1979                     Trinity Health Corporation
## 1980                    St. Peter's Health Partners
## 1981                                               
## 1982                                               
## 1983                                               
## 1984                                               
## 1985                              Arnot Health Inc.
## 1986                                               
## 1987                  Montefiore Health System, Inc
## 1988         Bon Secours Charity Health System Inc.
## 1989                                               
## 1990                                               
## 1991                                               
## 1992                                               
## 1993                                               
## 1994                                               
## 1995                  Montefiore Health System, Inc
## 1996                                               
## 1997                          Albany Medical Center
## 1998                                               
## 1999                  Montefiore Health System, Inc
## 2000                                               
## 2001                                               
## 2002                                               
## 2003                                               
## 2004                                               
## 2005                                               
## 2006                                               
## 2007                                               
## 2008                                               
## 2009                                               
## 2010                                               
## 2011                                               
## 2012                                               
## 2013               One Brooklyn Health System, Inc.
## 2014                   Vassar Brothers Hospital Inc
## 2015                                               
## 2016                                               
## 2017                                               
## 2018                     Trinity Health Corporation
## 2019                                               
## 2020                   NYP Community Programs, Inc.
## 2021                                               
## 2022             Richmond University Medical Center
## 2023                                               
## 2024                                               
## 2025                                               
## 2026                                               
## 2027                                               
## 2028                                               
## 2029                                               
## 2030                                               
## 2031                                               
## 2032                    Catholic Health Care System
## 2033                      Rochester Regional Health
## 2034                                               
## 2035                                               
## 2036                                               
## 2037                                               
## 2038                                               
## 2039                                               
## 2040                                               
## 2041                     Northwell Healthcare, Inc.
## 2042                                               
## 2043                     Northwell Healthcare, Inc.
## 2044                                               
## 2045                                               
## 2046                                               
## 2047                                               
## 2048                                               
## 2049     Westchester County Health Care Corporation
## 2050                                               
## 2051                          Albany Medical Center
## 2052                                               
## 2053                                               
## 2054    Northwell Quality and Medical Affairs, Inc.
## 2055                     Trinity Health Corporation
## 2056            Strong Partners Health System, Inc.
## 2057                                               
## 2058                             The Guthrie Clinic
## 2059                       Gotham Health FQHC, Inc.
## 2060                                               
## 2061                                               
## 2062                                               
## 2063                                               
## 2064    Northwell Quality and Medical Affairs, Inc.
## 2065                                               
## 2066                   Catholic Health System, Inc.
## 2067                                               
## 2068                                               
## 2069                                               
## 2070                                               
## 2071                    Catholic Health Care System
## 2072                                               
## 2073                                               
## 2074                                               
## 2075                                               
## 2076    Northwell Quality and Medical Affairs, Inc.
## 2077                                               
## 2078                      Rochester Regional Health
## 2079                      Rochester Regional Health
## 2080                                               
## 2081                                               
## 2082              Mount Sinai Hospitals Group, Inc.
## 2083                                               
## 2084                                               
## 2085                                               
## 2086                  Upper Allegheny Health System
## 2087                                               
## 2088                                               
## 2089                                               
## 2090                                               
## 2091                                               
## 2092                                               
## 2093                                               
## 2094                                               
## 2095                                               
## 2096                                               
## 2097                                               
## 2098                                               
## 2099                      Rochester Regional Health
## 2100                     Bassett Healthcare Network
## 2101                                               
## 2102                                               
## 2103                                               
## 2104                     Bassett Healthcare Network
## 2105                      Rochester Regional Health
## 2106                                               
## 2107                                               
## 2108                                               
## 2109               St. Lawrence Health System, Inc.
## 2110                  Montefiore Health System, Inc
## 2111                                               
## 2112                                               
## 2113                                               
## 2114                                               
## 2115                                               
## 2116                                               
## 2117                                               
## 2118                                               
## 2119                                               
## 2120                                               
## 2121                       Gotham Health FQHC, Inc.
## 2122                                               
## 2123                    St. Peter's Health Partners
## 2124                                               
## 2125                       Gotham Health FQHC, Inc.
## 2126                                               
## 2127              St Charles Hosp and Rehab Ctr Inc
## 2128                                               
## 2129                                               
## 2130                  Montefiore Health System, Inc
## 2131                                               
## 2132                       Gotham Health FQHC, Inc.
## 2133                                               
## 2134                                               
## 2135     Westchester County Health Care Corporation
## 2136                                               
## 2137                         Long Island FQHC, Inc.
## 2138                                               
## 2139                   Catholic Health System, Inc.
## 2140                                               
## 2141                                               
## 2142                     Trinity Health Corporation
## 2143                                               
## 2144                     Bassett Healthcare Network
## 2145                                               
## 2146                                               
## 2147                                               
## 2148                                               
## 2149                                               
## 2150                                               
## 2151                                               
## 2152                                               
## 2153                                               
## 2154                                               
## 2155                  Upper Allegheny Health System
## 2156                                               
## 2157                   Vassar Brothers Hospital Inc
## 2158               One Brooklyn Health System, Inc.
## 2159                                               
## 2160                    Mohawk Valley Health System
## 2161                                               
## 2162                     Northwell Healthcare, Inc.
## 2163                   Catholic Health System, Inc.
## 2164                                               
## 2165               One Brooklyn Health System, Inc.
## 2166                                               
## 2167                                               
## 2168                                               
## 2169                                               
## 2170                                               
## 2171                    St. Peter's Health Partners
## 2172                       Gotham Health FQHC, Inc.
## 2173                                               
## 2174                                               
## 2175                                               
## 2176                                               
## 2177                     Bassett Healthcare Network
## 2178                     Northwell Healthcare, Inc.
## 2179                  Montefiore Health System, Inc
## 2180                                               
## 2181                                               
## 2182                                               
## 2183                                               
## 2184                       Gotham Health FQHC, Inc.
## 2185                                               
## 2186                                               
## 2187                                               
## 2188                                               
## 2189                                               
## 2190                      Rochester Regional Health
## 2191                                               
## 2192                                               
## 2193                                               
## 2194            Strong Partners Health System, Inc.
## 2195                                               
## 2196                                               
## 2197                                               
## 2198                                               
## 2199                   NYP Community Programs, Inc.
## 2200                     Bassett Healthcare Network
## 2201                       Gotham Health FQHC, Inc.
## 2202                                               
## 2203                                               
## 2204                                               
## 2205                                               
## 2206     Westchester County Health Care Corporation
## 2207                                               
## 2208                                               
## 2209              Mount Sinai Hospitals Group, Inc.
## 2210                                               
## 2211                                               
## 2212                      Rochester Regional Health
## 2213                                               
## 2214                                               
## 2215                                               
## 2216                                               
## 2217                                               
## 2218                    Mohawk Valley Health System
## 2219                                               
## 2220                      Rochester Regional Health
## 2221                                               
## 2222                                               
## 2223                                               
## 2224                                               
## 2225                                               
## 2226                                               
## 2227                                               
## 2228                                               
## 2229                                               
## 2230                                               
## 2231                                               
## 2232                                               
## 2233                                               
## 2234                                               
## 2235                                               
## 2236              Mount Sinai Hospitals Group, Inc.
## 2237                                               
## 2238                                               
## 2239                    St. Peter's Health Partners
## 2240                                               
## 2241                                               
## 2242         Bon Secours Charity Health System Inc.
## 2243                                               
## 2244                                               
## 2245                                               
## 2246                                               
## 2247                                               
## 2248                                               
## 2249                                               
## 2250                                               
## 2251                                               
## 2252                                               
## 2253                                               
## 2254                                  Garnet Health
## 2255                                               
## 2256                                               
## 2257                                               
## 2258    Northwell Quality and Medical Affairs, Inc.
## 2259                                               
## 2260                                               
## 2261                                               
## 2262                     Bassett Healthcare Network
## 2263             Highland Hospital of Rochester Inc
## 2264                                               
## 2265                                               
## 2266                                               
## 2267                                               
## 2268                                               
## 2269                                               
## 2270                  Montefiore Health System, Inc
## 2271                                               
## 2272                                               
## 2273                                               
## 2274                           Health Alliance, Inc
## 2275                                               
## 2276                                               
## 2277                                               
## 2278                   NYP Community Programs, Inc.
## 2279                                               
## 2280                                               
## 2281                                               
## 2282                                               
## 2283                                               
## 2284                                               
## 2285                    Mohawk Valley Health System
## 2286                                               
## 2287                                               
## 2288                                               
## 2289                                               
## 2290                                               
## 2291                                               
## 2292                                               
## 2293                                               
## 2294                                               
## 2295                                 Kaleida Health
## 2296                                               
## 2297                                               
## 2298                                               
## 2299                                               
## 2300                                               
## 2301                                               
## 2302                                               
## 2303                                               
## 2304                       Gotham Health FQHC, Inc.
## 2305                                               
## 2306                                               
## 2307                                               
## 2308                                               
## 2309                   Catholic Health System, Inc.
## 2310                                               
## 2311                                               
## 2312                   Catholic Health System, Inc.
## 2313                   Catholic Health System, Inc.
## 2314                                               
## 2315                     Northwell Healthcare, Inc.
## 2316                                               
## 2317                                               
## 2318                     Trinity Health Corporation
## 2319                                               
## 2320                                               
## 2321                                               
## 2322 The University of Vermont Health Network, Inc.
## 2323                                               
## 2324                                               
## 2325                                               
## 2326                                               
## 2327                                               
## 2328                      Rochester Regional Health
## 2329                     Bassett Healthcare Network
## 2330                                               
## 2331                                               
## 2332                                               
## 2333                                               
## 2334                                               
## 2335                                               
## 2336                                               
## 2337                                               
## 2338    Northwell Quality and Medical Affairs, Inc.
## 2339                                               
## 2340                  Upper Allegheny Health System
## 2341                                               
## 2342                                               
## 2343               St. Lawrence Health System, Inc.
## 2344                  Montefiore Health System, Inc
## 2345                     Bassett Healthcare Network
## 2346                      Rochester Regional Health
## 2347         Bon Secours Charity Health System Inc.
## 2348                                               
## 2349                                               
## 2350                                               
## 2351                     Northwell Healthcare, Inc.
## 2352                                               
## 2353                     Northwell Healthcare, Inc.
## 2354                                               
## 2355                          Albany Medical Center
## 2356                                 Nuvance Health
## 2357                     Health Quest Systems, Inc.
## 2358                                               
## 2359                                               
## 2360                   NYP Community Programs, Inc.
## 2361                                               
## 2362                                               
## 2363               St. Lawrence Health System, Inc.
## 2364                                               
## 2365                      Rochester Regional Health
## 2366                                               
## 2367                         Long Island FQHC, Inc.
## 2368                                               
## 2369                                               
## 2370    Northwell Quality and Medical Affairs, Inc.
## 2371                                  Garnet Health
## 2372                                               
## 2373                                               
## 2374                                               
## 2375                       Gotham Health FQHC, Inc.
## 2376                                               
## 2377                      Rochester Regional Health
## 2378                      Rochester Regional Health
## 2379                                               
## 2380                                               
## 2381                                               
## 2382                                               
## 2383                                               
## 2384                                               
## 2385                                               
## 2386                                               
## 2387                                               
## 2388                                               
## 2389                     Bassett Healthcare Network
## 2390                                               
## 2391                                               
## 2392                                               
## 2393                                               
## 2394                                               
## 2395                                               
## 2396                    Mohawk Valley Health System
## 2397                                               
## 2398                   Catholic Health System, Inc.
## 2399                                               
## 2400                                               
## 2401                                               
## 2402                                               
## 2403                                               
## 2404                                               
## 2405                      Rochester Regional Health
## 2406                                               
## 2407                                               
## 2408                                               
## 2409                  Montefiore Health System, Inc
## 2410                                               
## 2411            Strong Partners Health System, Inc.
## 2412                                               
## 2413                                               
## 2414                                               
## 2415                      Rochester Regional Health
## 2416                                               
## 2417                    Mohawk Valley Health System
## 2418                  Montefiore Health System, Inc
## 2419                                               
## 2420                                               
## 2421                                               
## 2422                                               
## 2423                     Trinity Health Corporation
## 2424             Highland Hospital of Rochester Inc
## 2425                                               
## 2426                       Gotham Health FQHC, Inc.
## 2427                                               
## 2428                                               
## 2429                                               
## 2430                                               
## 2431                  Montefiore Health System, Inc
## 2432                                               
## 2433                                               
## 2434                                               
## 2435                                               
## 2436                                               
## 2437                                               
## 2438                                               
## 2439                                               
## 2440                      Rochester Regional Health
## 2441                                               
## 2442                                               
## 2443                                               
## 2444                                               
## 2445                                               
## 2446                                               
## 2447                              Arnot Health Inc.
## 2448                                               
## 2449                      Rochester Regional Health
## 2450                                               
## 2451                                               
## 2452                                               
## 2453    Catholic Health System of Long Island, Inc.
## 2454                     Cayuga Health System, Inc.
## 2455                     Trinity Health Corporation
## 2456                                               
## 2457                                               
## 2458                     Trinity Health Corporation
## 2459                                               
## 2460                                               
## 2461                    Mohawk Valley Health System
## 2462                                               
## 2463                                               
## 2464                                               
## 2465                                               
## 2466                                               
## 2467                                               
## 2468                                               
## 2469                                               
## 2470             Riverside Health Care System, Inc.
## 2471                                               
## 2472                                               
## 2473                                               
## 2474                                               
## 2475                          Albany Medical Center
## 2476                                               
## 2477               St. Lawrence Health System, Inc.
## 2478                    Catholic Health Care System
## 2479                                               
## 2480                                               
## 2481                                               
## 2482                                               
## 2483                                               
## 2484                                               
## 2485                                               
## 2486                                               
## 2487               One Brooklyn Health System, Inc.
## 2488                                               
## 2489                     Bassett Healthcare Network
## 2490                                               
## 2491                      Rochester Regional Health
## 2492                   NYP Community Programs, Inc.
## 2493                     Health Quest Systems, Inc.
## 2494                                               
## 2495                  Montefiore Health System, Inc
## 2496    Northwell Quality and Medical Affairs, Inc.
## 2497                     Crouse Health System, Inc.
## 2498                                               
## 2499                                               
## 2500                                               
## 2501                    Mohawk Valley Health System
## 2502                                               
## 2503    Catholic Health System of Long Island, Inc.
## 2504                                               
## 2505            Strong Partners Health System, Inc.
## 2506                              Arnot Health Inc.
## 2507                                               
## 2508                                Kendal New York
## 2509                                               
## 2510                                               
## 2511                                               
## 2512                                               
## 2513                                               
## 2514                      Rochester Regional Health
## 2515                                               
## 2516                                               
## 2517                                               
## 2518                                               
## 2519                      Rochester Regional Health
## 2520                                               
## 2521                                               
## 2522                                               
## 2523                                               
## 2524                                 Nuvance Health
## 2525                                 Nuvance Health
## 2526                     Bassett Healthcare Network
## 2527                     Northwell Healthcare, Inc.
## 2528                                               
## 2529                             The Guthrie Clinic
## 2530               St. Lawrence Health System, Inc.
## 2531                                               
## 2532                                               
## 2533                      Rochester Regional Health
## 2534                                               
## 2535                                               
## 2536                                               
## 2537                                               
## 2538                                               
## 2539                                               
## 2540                       Gotham Health FQHC, Inc.
## 2541                     Northwell Healthcare, Inc.
## 2542                                               
## 2543                                               
## 2544                                               
## 2545                     Bassett Healthcare Network
## 2546                                               
## 2547                       Gotham Health FQHC, Inc.
## 2548                                               
## 2549                                               
## 2550                                               
## 2551                     Trinity Health Corporation
## 2552                                               
## 2553                                               
## 2554                                               
## 2555                                               
## 2556                                               
## 2557                                               
## 2558                                               
## 2559                                               
## 2560                    St. Vincent's Health System
## 2561                                               
## 2562              Mount Sinai Hospitals Group, Inc.
## 2563                                               
## 2564                    Mohawk Valley Health System
## 2565                                               
## 2566                                               
## 2567                    St. Peter's Health Partners
## 2568                                               
## 2569                                               
## 2570                                               
## 2571               One Brooklyn Health System, Inc.
## 2572                                               
## 2573                                               
## 2574                                               
## 2575                                               
## 2576                                               
## 2577                                               
## 2578                                               
## 2579                                               
## 2580                                               
## 2581                                               
## 2582                                               
## 2583                   Catholic Health System, Inc.
## 2584                                               
## 2585                                               
## 2586                                               
## 2587                                               
## 2588                  Montefiore Health System, Inc
## 2589                     Trinity Health Corporation
## 2590                                               
## 2591                  Montefiore Health System, Inc
## 2592                                               
## 2593                                 Kaleida Health
## 2594                  Montefiore Health System, Inc
## 2595                    Mohawk Valley Health System
## 2596                                               
## 2597                                               
## 2598             Richmond University Medical Center
## 2599                                               
## 2600             Riverside Health Care System, Inc.
## 2601                       Gotham Health FQHC, Inc.
## 2602                                 Nuvance Health
## 2603                  Montefiore Health System, Inc
## 2604                                               
## 2605                     Trinity Health Corporation
## 2606                                               
## 2607                    St. Peter's Health Partners
## 2608                                               
## 2609                                               
## 2610                                               
## 2611                                               
## 2612                                               
## 2613                  Montefiore Health System, Inc
## 2614                                               
## 2615    Catholic Health System of Long Island, Inc.
## 2616                                               
## 2617                                               
## 2618                                               
## 2619                                               
## 2620                                               
## 2621                                               
## 2622                                               
## 2623                      Rochester Regional Health
## 2624                                               
## 2625               One Brooklyn Health System, Inc.
## 2626                                               
## 2627                                               
## 2628                                               
## 2629                                               
## 2630                                               
## 2631                                               
## 2632                                               
## 2633                                               
## 2634                                               
## 2635                                               
## 2636                                               
## 2637                                               
## 2638                                               
## 2639                                               
## 2640                                               
## 2641    Northwell Quality and Medical Affairs, Inc.
## 2642                                               
## 2643                     Cayuga Health System, Inc.
## 2644                                               
## 2645                                               
## 2646                                               
## 2647                                               
## 2648                                               
## 2649                                               
## 2650                                               
## 2651                                               
## 2652                                               
## 2653                                               
## 2654                                               
## 2655                                               
## 2656                                               
## 2657                                               
## 2658                      Rochester Regional Health
## 2659                                               
## 2660                                               
## 2661                                               
## 2662                                               
## 2663                                               
## 2664                                               
## 2665                     Northwell Healthcare, Inc.
## 2666                                               
## 2667                                               
## 2668                                               
## 2669                                               
## 2670                                               
## 2671                                               
## 2672                                               
## 2673                                               
## 2674                                               
## 2675    Catholic Health System of Long Island, Inc.
## 2676                                               
## 2677                                               
## 2678                                               
## 2679                      Rochester Regional Health
## 2680                                               
## 2681                                               
## 2682                     Bassett Healthcare Network
## 2683                                               
## 2684                                               
## 2685                                               
## 2686     Westchester County Health Care Corporation
## 2687                   NYP Community Programs, Inc.
## 2688                                               
## 2689                                               
## 2690                                               
## 2691                                               
## 2692                                               
## 2693                      Rochester Regional Health
## 2694                                               
## 2695                                               
## 2696                                               
## 2697                     Bassett Healthcare Network
## 2698                                               
## 2699                                               
## 2700                                               
## 2701                                               
## 2702                                               
## 2703                                               
## 2704                                               
## 2705              Mount Sinai Hospitals Group, Inc.
## 2706                                               
## 2707                    St. Peter's Health Partners
## 2708                                               
## 2709                          Albany Medical Center
## 2710                     Northwell Healthcare, Inc.
## 2711                                               
## 2712                                               
## 2713                                               
## 2714                                               
## 2715                                               
## 2716                     Bassett Healthcare Network
## 2717                                               
## 2718                                               
## 2719                                               
## 2720                                               
## 2721                                               
## 2722                     Trinity Health Corporation
## 2723                                               
## 2724                                               
## 2725                                               
## 2726                                               
## 2727                                               
## 2728               St. Lawrence Health System, Inc.
## 2729                                               
## 2730                   Vassar Brothers Hospital Inc
## 2731    Catholic Health System of Long Island, Inc.
## 2732    Northwell Quality and Medical Affairs, Inc.
## 2733                                               
## 2734                                               
## 2735                                               
## 2736                                               
## 2737                     Northwell Healthcare, Inc.
## 2738                                               
## 2739                          Albany Medical Center
## 2740                                               
## 2741                                               
## 2742                   Catholic Health System, Inc.
## 2743                     Bassett Healthcare Network
## 2744             Richmond University Medical Center
## 2745                                               
## 2746                                               
## 2747                                               
## 2748                                               
## 2749                                               
## 2750                                               
## 2751                                               
## 2752                                               
## 2753                  Montefiore Health System, Inc
## 2754              Mount Sinai Hospitals Group, Inc.
## 2755                                               
## 2756                                               
## 2757                                               
## 2758                                               
## 2759                                               
## 2760                    Mohawk Valley Health System
## 2761                                               
## 2762                                               
## 2763                                               
## 2764                                               
## 2765                                               
## 2766                                               
## 2767                   Catholic Health System, Inc.
## 2768                                               
## 2769                                               
## 2770                                               
## 2771                         Long Island FQHC, Inc.
## 2772                                               
## 2773                                               
## 2774                                               
## 2775                                               
## 2776                                               
## 2777                                               
##                             Cooperator.Address
## 1                                             
## 2                                             
## 3                                             
## 4                                             
## 5                                             
## 6                                             
## 7                                             
## 8                                             
## 9                                             
## 10                                            
## 11                                            
## 12                                            
## 13                                            
## 14                                            
## 15                                            
## 16                                            
## 17                                            
## 18                                            
## 19                                            
## 20                                            
## 21                                            
## 22                             100 High Street
## 23                                            
## 24                                            
## 25                                            
## 26                                            
## 27                                            
## 28                                            
## 29                                            
## 30                                            
## 31                                            
## 32                                            
## 33                                            
## 34                                            
## 35       Care of NYC Health and Hospital Corp.
## 36                                            
## 37                               1 Atwell Road
## 38                                            
## 39                    1351 Route 55, Suite 200
## 40                                            
## 41       Care of NYC Health and Hospital Corp.
## 42                                            
## 43                                            
## 44                                            
## 45                                            
## 46                                            
## 47                     2201 Hempstead Turnpike
## 48                 315 South Manning Boulevard
## 49                                            
## 50                                            
## 51                                            
## 52                       111 East 210th Street
## 53                                            
## 54                                            
## 55                            2000 Marcus Ave.
## 56                                            
## 57                                            
## 58                                            
## 59                                            
## 60                                            
## 61                                            
## 62                           1656 Champlin Ave
## 63                            2000 Marcus Ave.
## 64       Care of NYC Health and Hospital Corp.
## 65                     1 Huntington Quadrangle
## 66                                            
## 67                           89 Genesee Street
## 68                            2000 Marcus Ave.
## 69                   One Gustave L. Levy Place
## 70                         New Scotland Avenue
## 71                    1351 Route 55, Suite 200
## 72                           Stoneleigh Avenue
## 73                                            
## 74                                            
## 75                                            
## 76                            2000 Marcus Ave.
## 77                                            
## 78                       111 Colchester Avenue
## 79                                            
## 80                                            
## 81                                            
## 82                                            
## 83                       111 East 210th Street
## 84                            2000 Marcus Ave.
## 85                                            
## 86                                            
## 87                                            
## 88                            2000 Marcus Ave.
## 89       Care of NYC Health and Hospital Corp.
## 90                            2000 Marcus Ave.
## 91                                            
## 92                                            
## 93                                            
## 94                                            
## 95                                            
## 96                                            
## 97                                            
## 98                                            
## 99                           1656 Champlin Ave
## 100                                           
## 101                                           
## 102      Care of NYC Health and Hospital Corp.
## 103                  One Gustave L. Levy Place
## 104                                           
## 105                525 East 68th Street Box 88
## 106                                           
## 107                           2000 Marcus Ave.
## 108                                           
## 109                                           
## 110                                           
## 111                                           
## 112                                           
## 113                                           
## 114                                           
## 115                                           
## 116                                           
## 117                          89 Genesee Street
## 118                           4 Harriman Drive
## 119                                           
## 120                                           
## 121      Care of NYC Health and Hospital Corp.
## 122                       20555 Victor Parkway
## 123                       20555 Victor Parkway
## 124                                           
## 125                                           
## 126                                           
## 127                             600 Roe Avenue
## 128                                           
## 129                                           
## 130                                           
## 131                                           
## 132                           2000 Marcus Ave.
## 133                        New Scotland Avenue
## 134                                           
## 135                                           
## 136                                           
## 137                                           
## 138                           2000 Marcus Ave.
## 139                                           
## 140                                           
## 141                                           
## 142                          301 Prospect Ave.
## 143                                           
## 144                          1656 Champlin Ave
## 145                                           
## 146                                           
## 147                              1 Atwell Road
## 148                                           
## 149                          89 Genesee Street
## 150                          1656 Champlin Ave
## 151                                           
## 152                                           
## 153                                           
## 154                                           
## 155                                           
## 156                                           
## 157                                           
## 158                                           
## 159                                           
## 160                                           
## 161                       20555 Victor Parkway
## 162                                           
## 163                                           
## 164                                           
## 165                          89 Genesee Street
## 166                                           
## 167                          736 Irving Avenue
## 168                            101 Dates Drive
## 169                                           
## 170                              1 Atwell Road
## 171                                           
## 172                                           
## 173                                           
## 174                                           
## 175                                           
## 176                                           
## 177                                           
## 178                                           
## 179                                           
## 180                           2000 Marcus Ave.
## 181                                           
## 182                                           
## 183                                           
## 184                                           
## 185                                           
## 186                                           
## 187                                           
## 188                             600 Roe Avenue
## 189                          89 Genesee Street
## 190                                           
## 191                  One Gustave L. Levy Place
## 192                                           
## 193                                           
## 194                       20555 Victor Parkway
## 195                           2000 Marcus Ave.
## 196                                           
## 197                                           
## 198                                           
## 199      Care of NYC Health and Hospital Corp.
## 200                        New Scotland Avenue
## 201                                           
## 202                           741 Grant Street
## 203                                           
## 204                        New Scotland Avenue
## 205                                           
## 206                                           
## 207                                           
## 208                          89 Genesee Street
## 209                                           
## 210                                           
## 211                                           
## 212                                           
## 213                         144 Genesee Street
## 214                  One Gustave L. Levy Place
## 215                                           
## 216                      111 East 210th Street
## 217                                           
## 218                                           
## 219                                           
## 220                                           
## 221                                           
## 222                                           
## 223                           2000 Marcus Ave.
## 224                                           
## 225                  One Gustave L. Levy Place
## 226                                           
## 227                                           
## 228                                           
## 229                                           
## 230                                           
## 231                                           
## 232                                           
## 233                           2000 Marcus Ave.
## 234                                           
## 235                                           
## 236                                           
## 237                                           
## 238                                           
## 239                                           
## 240                                           
## 241                315 South Manning Boulevard
## 242                                           
## 243                                           
## 244                                           
## 245                                           
## 246                                           
## 247                                           
## 248                         144 Genesee Street
## 249                                           
## 250                                           
## 251                                           
## 252      Care of NYC Health and Hospital Corp.
## 253                                           
## 254                                           
## 255                                           
## 256                                           
## 257                                           
## 258                                           
## 259                                           
## 260                                           
## 261                                           
## 262                                           
## 263                                           
## 264                                           
## 265                       20555 Victor Parkway
## 266                                           
## 267                      111 East 210th Street
## 268                                           
## 269                                           
## 270                                           
## 271                                           
## 272                                           
## 273                                           
## 274                South Avenue At Bellevue Dr
## 275                                           
## 276                      111 East 210th Street
## 277                           1 Guthrie Square
## 278                                           
## 279                                           
## 280                                           
## 281                  One Gustave L. Levy Place
## 282                                           
## 283                      111 East 210th Street
## 284                                           
## 285                              1 Atwell Road
## 286                                           
## 287                                           
## 288                                           
## 289                315 South Manning Boulevard
## 290                                           
## 291                                           
## 292                   1351 Route 55, Suite 200
## 293                                           
## 294      Care of NYC Health and Hospital Corp.
## 295                                           
## 296                                           
## 297                                           
## 298                                           
## 299                           207 Foote Avenue
## 300                                           
## 301                                           
## 302                        New Scotland Avenue
## 303                           2000 Marcus Ave.
## 304                                           
## 305                                           
## 306                525 East 68th Street Box 88
## 307                                           
## 308                                           
## 309                      111 East 210th Street
## 310                           741 Grant Street
## 311                                           
## 312                315 South Manning Boulevard
## 313                                           
## 314                                           
## 315                           2000 Marcus Ave.
## 316                                           
## 317                                           
## 318                        New Scotland Avenue
## 319                                           
## 320                                           
## 321                   1351 Route 55, Suite 200
## 322                                           
## 323                  One Gustave L. Levy Place
## 324                             600 Roe Avenue
## 325                          89 Genesee Street
## 326                                           
## 327                                           
## 328                                           
## 329                                           
## 330                                           
## 331                                           
## 332                                           
## 333                                           
## 334                                           
## 335                                           
## 336                315 South Manning Boulevard
## 337                                           
## 338                                           
## 339                          89 Genesee Street
## 340                                           
## 341                                           
## 342                                           
## 343                315 South Manning Boulevard
## 344                                           
## 345                                           
## 346                                           
## 347                                           
## 348                         29-01 216th Street
## 349                                           
## 350                                           
## 351                            355 Bard Avenue
## 352                                           
## 353                                           
## 354                                           
## 355                                           
## 356                                           
## 357                            50 Leroy Street
## 358                                           
## 359                                           
## 360                      111 East 210th Street
## 361                                           
## 362                          1656 Champlin Ave
## 363                  One Gustave L. Levy Place
## 364                                           
## 365                           2000 Marcus Ave.
## 366                                           
## 367                                           
## 368                                           
## 369                                           
## 370                                           
## 371                        New Scotland Avenue
## 372                  One Gustave L. Levy Place
## 373                                           
## 374                                           
## 375                                           
## 376                              1 Atwell Road
## 377                                           
## 378                                           
## 379                          89 Genesee Street
## 380                                           
## 381                                           
## 382                315 South Manning Boulevard
## 383                                           
## 384                                           
## 385                                           
## 386                                           
## 387                                           
## 388                        New Scotland Avenue
## 389                                           
## 390                                           
## 391                                           
## 392                                           
## 393                                           
## 394                       20555 Victor Parkway
## 395                                           
## 396                                           
## 397                                           
## 398                315 South Manning Boulevard
## 399                                   Route 59
## 400                                           
## 401                                           
## 402                                           
## 403                           2000 Marcus Ave.
## 404                                           
## 405                      111 East 210th Street
## 406                         601 Elmwood Avenue
## 407                                           
## 408                                           
## 409                                           
## 410                                           
## 411                                           
## 412                                           
## 413                                           
## 414                                           
## 415                                           
## 416                                           
## 417                          89 Genesee Street
## 418                                           
## 419                                           
## 420                    1 Huntington Quadrangle
## 421                                           
## 422                       20555 Victor Parkway
## 423                                           
## 424                         144 Genesee Street
## 425                                           
## 426                                           
## 427                                           
## 428                                           
## 429                                           
## 430                                           
## 431                                           
## 432                          89 Genesee Street
## 433                                           
## 434                                           
## 435                       255 Lafayette Avenue
## 436                                           
## 437                                           
## 438                                           
## 439                                           
## 440                                           
## 441                                           
## 442                                           
## 443                                           
## 444                                           
## 445                                           
## 446                                           
## 447                                           
## 448                525 East 68th Street Box 88
## 449                                           
## 450                                           
## 451                                           
## 452                                           
## 453                315 South Manning Boulevard
## 454                                           
## 455                                           
## 456                                           
## 457                                           
## 458                      111 East 210th Street
## 459                                           
## 460                      111 East 210th Street
## 461                                           
## 462                                           
## 463                                           
## 464                315 South Manning Boulevard
## 465                                           
## 466                                           
## 467                                           
## 468                                           
## 469                           2000 Marcus Ave.
## 470                                           
## 471                                           
## 472                                           
## 473                                           
## 474                                           
## 475                                           
## 476                           2000 Marcus Ave.
## 477                                           
## 478                                           
## 479                      111 Colchester Avenue
## 480                                           
## 481                                           
## 482                                           
## 483                                           
## 484                           4 Harriman Drive
## 485                315 South Manning Boulevard
## 486                          89 Genesee Street
## 487                                           
## 488                                           
## 489                                           
## 490                                           
## 491                           2000 Marcus Ave.
## 492                                           
## 493                      111 Colchester Avenue
## 494                                           
## 495                                           
## 496                                           
## 497                                           
## 498                                           
## 499                                           
## 500                                           
## 501                                           
## 502                                           
## 503                                           
## 504                                           
## 505                                           
## 506                                           
## 507                      111 East 210th Street
## 508                                           
## 509                                           
## 510                315 South Manning Boulevard
## 511                                           
## 512                                           
## 513                                           
## 514                                           
## 515                                           
## 516                                           
## 517                                           
## 518                     315 South Manning Blvd
## 519                                           
## 520                                           
## 521                           2000 Marcus Ave.
## 522                                           
## 523                                           
## 524                                           
## 525                                           
## 526                                           
## 527                                           
## 528                                           
## 529                                           
## 530                                           
## 531                                           
## 532                                           
## 533                                           
## 534                315 South Manning Boulevard
## 535                       20555 Victor Parkway
## 536                          830 Washington St
## 537                         144 Genesee Street
## 538                                           
## 539                        New Scotland Avenue
## 540                                           
## 541                           2000 Marcus Ave.
## 542                                           
## 543                       20555 Victor Parkway
## 544                                           
## 545                                           
## 546                                           
## 547                                           
## 548      Care of NYC Health and Hospital Corp.
## 549                                           
## 550                                           
## 551                                           
## 552                      111 East 210th Street
## 553                                           
## 554                                           
## 555                                           
## 556                                           
## 557                                           
## 558                   1351 Route 55, Suite 200
## 559                525 East 68th Street Box 88
## 560                                           
## 561                                           
## 562                                           
## 563                                           
## 564                                           
## 565                           207 Foote Avenue
## 566                      111 East 210th Street
## 567                                           
## 568                           2000 Marcus Ave.
## 569                                           
## 570                                           
## 571                                           
## 572                                           
## 573                                           
## 574                                           
## 575                                           
## 576                              1 Atwell Road
## 577                                           
## 578                          89 Genesee Street
## 579                                           
## 580                                           
## 581                                           
## 582                                           
## 583                                           
## 584                                           
## 585                                           
## 586                                           
## 587                              1 Atwell Road
## 588                                           
## 589                                           
## 590                          89 Genesee Street
## 591                South Avenue At Bellevue Dr
## 592                                           
## 593                                           
## 594                                           
## 595                           2000 Marcus Ave.
## 596                                           
## 597                                           
## 598                                           
## 599                                           
## 600                315 South Manning Boulevard
## 601                        New Scotland Avenue
## 602                              1 Atwell Road
## 603                                           
## 604                       20555 Victor Parkway
## 605                                           
## 606                                           
## 607                                           
## 608                                           
## 609                                           
## 610                                           
## 611                                           
## 612                                           
## 613                   1351 Route 55, Suite 200
## 614                                           
## 615                                           
## 616                  One Gustave L. Levy Place
## 617                                           
## 618                                           
## 619                                           
## 620                            50 Leroy Street
## 621                                           
## 622                            101 Dates Drive
## 623                      111 East 210th Street
## 624                                           
## 625                                           
## 626                          1656 Champlin Ave
## 627                           1 Guthrie Square
## 628                                           
## 629                                           
## 630                                           
## 631                                           
## 632                           2000 Marcus Ave.
## 633                       20555 Victor Parkway
## 634                       20555 Victor Parkway
## 635                                           
## 636                                           
## 637                                           
## 638                                           
## 639                           2000 Marcus Ave.
## 640                                           
## 641                                           
## 642                          89 Genesee Street
## 643                                           
## 644                                           
## 645                                           
## 646                                           
## 647                                           
## 648                                           
## 649                                           
## 650                                           
## 651                                           
## 652                                           
## 653                       20555 Victor Parkway
## 654                        200 Bell Terre Road
## 655                                           
## 656                                           
## 657                                           
## 658                                           
## 659                          89 Genesee Street
## 660                                           
## 661                                           
## 662                                           
## 663                                           
## 664                                           
## 665                                           
## 666                                           
## 667                        200 Bell Terre Road
## 668                                           
## 669                                           
## 670                                           
## 671                                           
## 672                      111 East 210th Street
## 673                      111 East 210th Street
## 674                                           
## 675                                           
## 676                                           
## 677                                           
## 678                                           
## 679                                           
## 680                                           
## 681                         967 North Broadway
## 682                                           
## 683                                           
## 684                                           
## 685                                           
## 686                  One Gustave L. Levy Place
## 687                                           
## 688                                           
## 689                                           
## 690                                           
## 691                                           
## 692                                           
## 693                        150 Highland Avenue
## 694                              1 Atwell Road
## 695                                           
## 696                                           
## 697                                           
## 698                                           
## 699                            50 Leroy Street
## 700                                           
## 701                                           
## 702                                           
## 703                315 South Manning Boulevard
## 704                                           
## 705                                           
## 706                           2000 Marcus Ave.
## 707                                           
## 708                           207 Foote Avenue
## 709                                           
## 710                                           
## 711                                           
## 712                        New Scotland Avenue
## 713                                           
## 714                                           
## 715                                           
## 716                                           
## 717                           4 Harriman Drive
## 718                                           
## 719                                           
## 720                                           
## 721                                           
## 722                                           
## 723                                           
## 724                                           
## 725                                           
## 726                                           
## 727                                           
## 728                                           
## 729                                           
## 730                                           
## 731                                           
## 732                         601 Elmwood Avenue
## 733                         144 Genesee Street
## 734                              1 Atwell Road
## 735                                           
## 736                                           
## 737      Care of NYC Health and Hospital Corp.
## 738                                           
## 739                                           
## 740                                           
## 741                                           
## 742                                           
## 743                       20555 Victor Parkway
## 744                                           
## 745                                           
## 746                                           
## 747                                           
## 748                                           
## 749                                           
## 750                                           
## 751                                           
## 752                                           
## 753                          301 Prospect Ave.
## 754                315 South Manning Boulevard
## 755                                           
## 756                              1 Atwell Road
## 757                          1 Brookdale Plaza
## 758                         144 Genesee Street
## 759                                           
## 760                                           
## 761                           2000 Marcus Ave.
## 762                                           
## 763                                           
## 764                                           
## 765                       20555 Victor Parkway
## 766                                           
## 767                                           
## 768                                           
## 769                                           
## 770                                           
## 771                         144 Genesee Street
## 772                                           
## 773                       20555 Victor Parkway
## 774                                           
## 775                                           
## 776                                           
## 777                           2000 Marcus Ave.
## 778                            101 Dates Drive
## 779                                           
## 780                      111 East 210th Street
## 781                                           
## 782                      111 East 210th Street
## 783                                           
## 784                                           
## 785                      111 East 210th Street
## 786                       255 Lafayette Avenue
## 787      Care of NYC Health and Hospital Corp.
## 788                                           
## 789                                           
## 790                                           
## 791                                           
## 792                                           
## 793                                           
## 794                      111 East 210th Street
## 795                           2000 Marcus Ave.
## 796                                           
## 797                        New Scotland Avenue
## 798                                           
## 799                                           
## 800                                           
## 801                                           
## 802                            50 Leroy Street
## 803                      111 East 210th Street
## 804                                           
## 805                                           
## 806                                           
## 807                                           
## 808                                           
## 809                                           
## 810                                           
## 811                                           
## 812                                           
## 813                                           
## 814                                           
## 815                                           
## 816                                           
## 817                                           
## 818                              1 Atwell Road
## 819                         144 Genesee Street
## 820                                           
## 821                                           
## 822                           2000 Marcus Ave.
## 823                                           
## 824                           2000 Marcus Ave.
## 825                                           
## 826                                           
## 827                                           
## 828                                           
## 829                                           
## 830                                           
## 831                                           
## 832                       20555 Victor Parkway
## 833                      111 East 210th Street
## 834                                           
## 835                                           
## 836                                           
## 837                           2000 Marcus Ave.
## 838                                           
## 839                                           
## 840                                           
## 841                                           
## 842                                           
## 843                              1 Atwell Road
## 844                                           
## 845                          89 Genesee Street
## 846                                           
## 847                                           
## 848                              1 Atwell Road
## 849                                           
## 850                                           
## 851                                           
## 852                                           
## 853                        New Scotland Avenue
## 854                                           
## 855                                           
## 856                        200 Bell Terre Road
## 857                                           
## 858                                           
## 859                          1656 Champlin Ave
## 860                                           
## 861                                           
## 862                      111 East 210th Street
## 863                                           
## 864                                           
## 865                                           
## 866                                           
## 867                                           
## 868                                           
## 869                                           
## 870                                           
## 871                                           
## 872                                           
## 873                                           
## 874                                           
## 875                                           
## 876                                           
## 877                                           
## 878                                           
## 879                        New Scotland Avenue
## 880                                           
## 881                                           
## 882                                           
## 883                       232 West 25th Street
## 884                      111 East 210th Street
## 885                                           
## 886                                           
## 887                          1 Brookdale Plaza
## 888                                           
## 889                        New Scotland Avenue
## 890                                           
## 891                                           
## 892                                           
## 893      Care of NYC Health and Hospital Corp.
## 894                         144 Genesee Street
## 895                    1 Huntington Quadrangle
## 896                                           
## 897                                           
## 898                                           
## 899                           2000 Marcus Ave.
## 900                                           
## 901                                           
## 902                                           
## 903                                           
## 904                            100 High Street
## 905                                           
## 906                                           
## 907                                           
## 908                                           
## 909                           2000 Marcus Ave.
## 910                                           
## 911                                Reade Place
## 912      Care of NYC Health and Hospital Corp.
## 913                                           
## 914                                           
## 915                                           
## 916                                           
## 917                                           
## 918                                           
## 919                              1 Atwell Road
## 920                        New Scotland Avenue
## 921                  One Gustave L. Levy Place
## 922                                           
## 923                           1 Guthrie Square
## 924                                           
## 925                                           
## 926                                           
## 927                                           
## 928                                           
## 929                                           
## 930                                           
## 931                                           
## 932                                           
## 933                              1 Atwell Road
## 934                                           
## 935                       20555 Victor Parkway
## 936      Care of NYC Health and Hospital Corp.
## 937                                           
## 938                                           
## 939                                           
## 940                                           
## 941                                           
## 942                                           
## 943                            101 Dates Drive
## 944                                           
## 945                  One Gustave L. Levy Place
## 946                                           
## 947                                           
## 948                                           
## 949                                           
## 950                                           
## 951                      111 Colchester Avenue
## 952                                           
## 953                        New Scotland Avenue
## 954                                           
## 955                                           
## 956                                           
## 957                    1 Huntington Quadrangle
## 958                       20555 Victor Parkway
## 959                                           
## 960                                           
## 961                                           
## 962                                           
## 963                                           
## 964                                           
## 965                                           
## 966                                           
## 967                      111 East 210th Street
## 968                                           
## 969                                           
## 970                                           
## 971                                           
## 972                          89 Genesee Street
## 973                            515 Main Street
## 974                                           
## 975                          1 Brookdale Plaza
## 976                                           
## 977                                           
## 978                                           
## 979                                           
## 980                                           
## 981                           2000 Marcus Ave.
## 982                                           
## 983                                           
## 984                                           
## 985                                           
## 986                       255 Lafayette Avenue
## 987                                           
## 988                                           
## 989                                           
## 990                                           
## 991                                           
## 992                                           
## 993                                           
## 994                                           
## 995                                           
## 996                                           
## 997                      111 East 210th Street
## 998                                           
## 999                                           
## 1000                                          
## 1001                          2000 Marcus Ave.
## 1002                                          
## 1003                                          
## 1004                                          
## 1005                                          
## 1006                                          
## 1007                                          
## 1008                                          
## 1009                                          
## 1010                     111 East 210th Street
## 1011                                          
## 1012                                          
## 1013                                          
## 1014                          2000 Marcus Ave.
## 1015                         89 Genesee Street
## 1016                                          
## 1017                                          
## 1018                          2000 Marcus Ave.
## 1019                                          
## 1020                                          
## 1021               315 South Manning Boulevard
## 1022                                          
## 1023                                          
## 1024                                          
## 1025                                          
## 1026                                          
## 1027                                          
## 1028                                          
## 1029                                          
## 1030                                          
## 1031                                          
## 1032                                          
## 1033                 One Gustave L. Levy Place
## 1034                                          
## 1035                                          
## 1036                                          
## 1037                                          
## 1038                                          
## 1039                                          
## 1040                                          
## 1041                                          
## 1042                       New Scotland Avenue
## 1043                                          
## 1044                                          
## 1045                                          
## 1046                                          
## 1047                                          
## 1048                                          
## 1049                          2000 Marcus Ave.
## 1050                                          
## 1051                                          
## 1052                           355 Bard Avenue
## 1053                                          
## 1054                                          
## 1055                                          
## 1056                                          
## 1057                                          
## 1058                                          
## 1059                  1351 Route 55, Suite 200
## 1060                                          
## 1061                                          
## 1062                                          
## 1063                                          
## 1064                                          
## 1065                                          
## 1066                                          
## 1067                                          
## 1068 100 Woods Road, Taylor Pavilion 2nd Floor
## 1069                         89 Genesee Street
## 1070                      20555 Victor Parkway
## 1071                   1 Huntington Quadrangle
## 1072                                          
## 1073                                          
## 1074                             1 Atwell Road
## 1075                               Reade Place
## 1076                                          
## 1077                                          
## 1078                                          
## 1079                                          
## 1080                       New Scotland Avenue
## 1081                                          
## 1082                                          
## 1083                      20555 Victor Parkway
## 1084                                          
## 1085                                          
## 1086                             1 Atwell Road
## 1087                        967 North Broadway
## 1088                                          
## 1089                                          
## 1090                                          
## 1091                                          
## 1092                         89 Genesee Street
## 1093     Care of NYC Health and Hospital Corp.
## 1094                             1 Atwell Road
## 1095                                          
## 1096                                          
## 1097                                          
## 1098                                          
## 1099                                          
## 1100                             1 Atwell Road
## 1101                                          
## 1102                          2000 Marcus Ave.
## 1103                                          
## 1104                                          
## 1105                                          
## 1106                                          
## 1107                             1 Atwell Road
## 1108                                          
## 1109               South Avenue At Bellevue Dr
## 1110                                          
## 1111                       New Scotland Avenue
## 1112                                          
## 1113                                          
## 1114                                          
## 1115                                          
## 1116                                          
## 1117                                          
## 1118                                          
## 1119                                          
## 1120                                          
## 1121     Care of NYC Health and Hospital Corp.
## 1122                                          
## 1123                      20555 Victor Parkway
## 1124                                          
## 1125                                          
## 1126                                          
## 1127                        601 Elmwood Avenue
## 1128                                          
## 1129               525 East 68th Street Box 88
## 1130                          2000 Marcus Ave.
## 1131                 One Gustave L. Levy Place
## 1132                                          
## 1133                                          
## 1134                 One Gustave L. Levy Place
## 1135                                          
## 1136                                          
## 1137                         89 Genesee Street
## 1138                                          
## 1139                         89 Genesee Street
## 1140                 One Gustave L. Levy Place
## 1141                                          
## 1142                          2000 Marcus Ave.
## 1143                                          
## 1144                                          
## 1145                          2000 Marcus Ave.
## 1146                          2000 Marcus Ave.
## 1147                                          
## 1148                                          
## 1149                                          
## 1150                                          
## 1151                                          
## 1152                                          
## 1153                                          
## 1154                                          
## 1155                                          
## 1156                                          
## 1157                     111 Colchester Avenue
## 1158                           515 Main Street
## 1159                         89 Genesee Street
## 1160                         301 Prospect Ave.
## 1161                                          
## 1162                                          
## 1163     Care of NYC Health and Hospital Corp.
## 1164                                          
## 1165                                          
## 1166                     111 Colchester Avenue
## 1167                                          
## 1168                                          
## 1169                   2201 Hempstead Turnpike
## 1170                                          
## 1171                     111 East 210th Street
## 1172                                          
## 1173                                          
## 1174                         89 Genesee Street
## 1175                                          
## 1176                                          
## 1177                                          
## 1178                         1 Brookdale Plaza
## 1179                                          
## 1180                     111 East 210th Street
## 1181                                          
## 1182                   1 Huntington Quadrangle
## 1183                         89 Genesee Street
## 1184                                          
## 1185                                          
## 1186                                          
## 1187                                          
## 1188                                          
## 1189                                          
## 1190                          2000 Marcus Ave.
## 1191                                          
## 1192                                          
## 1193                          741 Grant Street
## 1194                                          
## 1195                                          
## 1196                                          
## 1197                                          
## 1198                                          
## 1199                                          
## 1200                                          
## 1201                                          
## 1202                     111 Colchester Avenue
## 1203               315 South Manning Boulevard
## 1204                                          
## 1205                                          
## 1206                                          
## 1207                                          
## 1208                                          
## 1209                                          
## 1210                                          
## 1211                                          
## 1212                                          
## 1213                                          
## 1214                                          
## 1215                                          
## 1216                                          
## 1217                                          
## 1218                                          
## 1219                                          
## 1220                                          
## 1221                         1 Brookdale Plaza
## 1222                                          
## 1223                          2000 Marcus Ave.
## 1224                                          
## 1225                                          
## 1226                                          
## 1227                 One Gustave L. Levy Place
## 1228                                          
## 1229                                          
## 1230                                          
## 1231                         89 Genesee Street
## 1232                                          
## 1233                                          
## 1234                                          
## 1235                                          
## 1236                                          
## 1237               525 East 68th Street Box 88
## 1238                                          
## 1239                                          
## 1240                                          
## 1241                                          
## 1242                                          
## 1243                                          
## 1244                         89 Genesee Street
## 1245                                          
## 1246                       New Scotland Avenue
## 1247                                          
## 1248                         89 Genesee Street
## 1249                                          
## 1250                                          
## 1251                                          
## 1252                                          
## 1253                                          
## 1254                                          
## 1255                            600 Roe Avenue
## 1256                             1 Atwell Road
## 1257                                          
## 1258                                          
## 1259                                          
## 1260                                          
## 1261                          2000 Marcus Ave.
## 1262                     111 East 210th Street
## 1263                          2000 Marcus Ave.
## 1264                          741 Grant Street
## 1265                                          
## 1266                                          
## 1267                                          
## 1268                                          
## 1269                                          
## 1270                                          
## 1271                                          
## 1272                                          
## 1273                           50 Leroy Street
## 1274                                          
## 1275                                          
## 1276                                          
## 1277                                          
## 1278                         89 Genesee Street
## 1279                         Stoneleigh Avenue
## 1280                         1656 Champlin Ave
## 1281                                          
## 1282                                          
## 1283 100 Woods Road, Taylor Pavilion 2nd Floor
## 1284                                          
## 1285                                          
## 1286                                          
## 1287                                          
## 1288                         1656 Champlin Ave
## 1289                                          
## 1290                                          
## 1291                                          
## 1292                                          
## 1293                                          
## 1294                                          
## 1295                                          
## 1296                                          
## 1297                                          
## 1298                                          
## 1299                                          
## 1300                                          
## 1301                        967 North Broadway
## 1302                                          
## 1303                                          
## 1304                                          
## 1305                                          
## 1306                                          
## 1307                       New Scotland Avenue
## 1308                                          
## 1309                                          
## 1310                          2000 Marcus Ave.
## 1311                                          
## 1312                                          
## 1313                                          
## 1314                      20555 Victor Parkway
## 1315                                          
## 1316                                          
## 1317                                          
## 1318                                          
## 1319                                          
## 1320                                          
## 1321                          2000 Marcus Ave.
## 1322                                          
## 1323                                          
## 1324                                          
## 1325                                          
## 1326                     111 East 210th Street
## 1327                                          
## 1328                         1 Brookdale Plaza
## 1329                                          
## 1330                        144 Genesee Street
## 1331                                          
## 1332                                          
## 1333                                          
## 1334                     111 East 210th Street
## 1335                                          
## 1336     Care of NYC Health and Hospital Corp.
## 1337                         89 Genesee Street
## 1338                                          
## 1339                         89 Genesee Street
## 1340                                          
## 1341                                          
## 1342                                          
## 1343                          2000 Marcus Ave.
## 1344               315 South Manning Boulevard
## 1345                                          
## 1346                        15-19 Maple Avenue
## 1347                     111 Colchester Avenue
## 1348                                          
## 1349                                          
## 1350                                          
## 1351                                          
## 1352                                          
## 1353                                          
## 1354                                          
## 1355                                          
## 1356                                          
## 1357                                          
## 1358                         1656 Champlin Ave
## 1359                                          
## 1360     Care of NYC Health and Hospital Corp.
## 1361                                          
## 1362                                          
## 1363                                          
## 1364                                          
## 1365                                          
## 1366                                          
## 1367                                          
## 1368                                          
## 1369                                          
## 1370                          2000 Marcus Ave.
## 1371                                          
## 1372                             1 Atwell Road
## 1373                      20555 Victor Parkway
## 1374                                          
## 1375                                          
## 1376                                          
## 1377                                          
## 1378                                          
## 1379                                          
## 1380                                          
## 1381                                          
## 1382                 One Gustave L. Levy Place
## 1383                          2000 Marcus Ave.
## 1384                                          
## 1385                                          
## 1386                 One Gustave L. Levy Place
## 1387                          2000 Marcus Ave.
## 1388                   2201 Hempstead Turnpike
## 1389                                          
## 1390                       New Scotland Avenue
## 1391               315 South Manning Boulevard
## 1392                          2000 Marcus Ave.
## 1393                                          
## 1394                                          
## 1395                                          
## 1396                                          
## 1397                                          
## 1398                        601 Elmwood Avenue
## 1399                                          
## 1400                                          
## 1401                                          
## 1402                       New Scotland Avenue
## 1403                             1 Atwell Road
## 1404                     111 East 210th Street
## 1405                                          
## 1406               315 South Manning Boulevard
## 1407                          2000 Marcus Ave.
## 1408                             1 Atwell Road
## 1409                                          
## 1410                      20555 Victor Parkway
## 1411                                          
## 1412                       New Scotland Avenue
## 1413                                          
## 1414                     111 East 210th Street
## 1415                                          
## 1416                                          
## 1417                                          
## 1418                 One Gustave L. Levy Place
## 1419                     111 East 210th Street
## 1420                                          
## 1421               315 South Manning Boulevard
## 1422                                          
## 1423                         1656 Champlin Ave
## 1424                                          
## 1425                                          
## 1426                                          
## 1427                                          
## 1428                                          
## 1429                  1351 Route 55, Suite 200
## 1430                                          
## 1431                                          
## 1432                         89 Genesee Street
## 1433                                          
## 1434                     111 East 210th Street
## 1435                                          
## 1436                                          
## 1437                                          
## 1438                     111 East 210th Street
## 1439                                          
## 1440                         89 Genesee Street
## 1441                          2000 Marcus Ave.
## 1442                                          
## 1443                                          
## 1444                                          
## 1445                                          
## 1446                                          
## 1447               315 South Manning Boulevard
## 1448                                          
## 1449                                          
## 1450                                          
## 1451     Care of NYC Health and Hospital Corp.
## 1452                                          
## 1453                     111 East 210th Street
## 1454                                          
## 1455                                          
## 1456                         89 Genesee Street
## 1457                      20555 Victor Parkway
## 1458                                          
## 1459                                          
## 1460                                          
## 1461                                          
## 1462                          2000 Marcus Ave.
## 1463                            600 Roe Avenue
## 1464                                          
## 1465                                          
## 1466                                          
## 1467                        144 Genesee Street
## 1468                                          
## 1469                                          
## 1470                                          
## 1471                                          
## 1472                      20555 Victor Parkway
## 1473                                          
## 1474                                          
## 1475                                          
## 1476                                          
## 1477                                          
## 1478                                          
## 1479               525 East 68th Street Box 88
## 1480                          2000 Marcus Ave.
## 1481                                          
## 1482                                          
## 1483                                          
## 1484                                          
## 1485                                          
## 1486                                          
## 1487                                          
## 1488                                          
## 1489                                          
## 1490                                          
## 1491                                          
## 1492                          2000 Marcus Ave.
## 1493                                          
## 1494                                          
## 1495                                          
## 1496                                          
## 1497                                          
## 1498                                          
## 1499                                          
## 1500                                          
## 1501                                          
## 1502                     111 East 210th Street
## 1503                                          
## 1504                                          
## 1505                  1351 Route 55, Suite 200
## 1506                                          
## 1507                                          
## 1508                                          
## 1509                                          
## 1510                                          
## 1511                         89 Genesee Street
## 1512                                          
## 1513                                          
## 1514                                          
## 1515                                          
## 1516                     111 East 210th Street
## 1517                                          
## 1518                                          
## 1519                                          
## 1520                                          
## 1521                                          
## 1522                                          
## 1523                                          
## 1524                    2021 Winton Road South
## 1525                                          
## 1526                               Reade Place
## 1527                     111 East 210th Street
## 1528                                          
## 1529                                          
## 1530                                          
## 1531                                          
## 1532                                          
## 1533                                          
## 1534                     111 East 210th Street
## 1535                                          
## 1536                          2000 Marcus Ave.
## 1537                                          
## 1538                         89 Genesee Street
## 1539                                          
## 1540               South Avenue At Bellevue Dr
## 1541                                          
## 1542               315 South Manning Boulevard
## 1543                                          
## 1544                                          
## 1545                                          
## 1546                                          
## 1547                                          
## 1548                                          
## 1549                                          
## 1550                                          
## 1551                          2000 Marcus Ave.
## 1552                                          
## 1553                     111 Colchester Avenue
## 1554                                          
## 1555                                          
## 1556                                          
## 1557                                          
## 1558                                          
## 1559                        967 North Broadway
## 1560                 One Gustave L. Levy Place
## 1561                                          
## 1562                                          
## 1563                                          
## 1564                                          
## 1565                                          
## 1566                                          
## 1567                 One Gustave L. Levy Place
## 1568                                          
## 1569                                          
## 1570                             1 Atwell Road
## 1571                        601 Elmwood Avenue
## 1572                                          
## 1573                                          
## 1574                                          
## 1575                     111 East 210th Street
## 1576                                          
## 1577                   1 Huntington Quadrangle
## 1578                                          
## 1579                                          
## 1580                                          
## 1581                         89 Genesee Street
## 1582                                          
## 1583                          2000 Marcus Ave.
## 1584                                          
## 1585                         89 Genesee Street
## 1586                                          
## 1587                                          
## 1588                                          
## 1589                                          
## 1590                                          
## 1591                                          
## 1592                                          
## 1593                                          
## 1594                                          
## 1595                      20555 Victor Parkway
## 1596                                          
## 1597                       200 Bell Terre Road
## 1598                                          
## 1599                                          
## 1600                                          
## 1601                     111 East 210th Street
## 1602                       New Scotland Avenue
## 1603                                          
## 1604                                          
## 1605               315 South Manning Boulevard
## 1606                                          
## 1607                          2000 Marcus Ave.
## 1608                                          
## 1609                         1 Brookdale Plaza
## 1610                                          
## 1611                                          
## 1612                                          
## 1613                                          
## 1614                                          
## 1615                                          
## 1616                 One Gustave L. Levy Place
## 1617                       New Scotland Avenue
## 1618                                          
## 1619                                          
## 1620                                          
## 1621                                          
## 1622                                          
## 1623                                          
## 1624                                          
## 1625                                          
## 1626                          741 Grant Street
## 1627                                          
## 1628                     111 East 210th Street
## 1629                                          
## 1630                                          
## 1631                                          
## 1632                                          
## 1633                                          
## 1634                                          
## 1635                                          
## 1636                                          
## 1637                                          
## 1638                                          
## 1639                     111 Colchester Avenue
## 1640                          2000 Marcus Ave.
## 1641                                          
## 1642                                          
## 1643               South Avenue At Bellevue Dr
## 1644                                          
## 1645                                          
## 1646                                          
## 1647                                          
## 1648                                          
## 1649     Care of NYC Health and Hospital Corp.
## 1650                                          
## 1651                                          
## 1652                                          
## 1653                          4 Harriman Drive
## 1654                                          
## 1655                 One Gustave L. Levy Place
## 1656                                          
## 1657                         1656 Champlin Ave
## 1658                                          
## 1659                          2000 Marcus Ave.
## 1660                                          
## 1661                                          
## 1662                       New Scotland Avenue
## 1663                     111 Colchester Avenue
## 1664                                          
## 1665                                          
## 1666                                          
## 1667                                          
## 1668                        144 Genesee Street
## 1669                                          
## 1670                                          
## 1671                                          
## 1672                      20555 Victor Parkway
## 1673                         1656 Champlin Ave
## 1674                                          
## 1675                                          
## 1676                                          
## 1677                                          
## 1678                                          
## 1679                             1 Atwell Road
## 1680                                          
## 1681                             1 Atwell Road
## 1682                                          
## 1683                                          
## 1684                                          
## 1685                                          
## 1686                         89 Genesee Street
## 1687                       200 Bell Terre Road
## 1688                                          
## 1689                         89 Genesee Street
## 1690                        144 Genesee Street
## 1691                                          
## 1692                                          
## 1693                                          
## 1694                                          
## 1695                                          
## 1696                         1656 Champlin Ave
## 1697                                          
## 1698                                          
## 1699                                          
## 1700                                          
## 1701                                          
## 1702                                          
## 1703                                          
## 1704                                          
## 1705                           50 Leroy Street
## 1706                                          
## 1707                                          
## 1708                                          
## 1709                                          
## 1710                                          
## 1711                                          
## 1712               315 South Manning Boulevard
## 1713                      20555 Victor Parkway
## 1714                                          
## 1715                                          
## 1716                                          
## 1717                                          
## 1718                                          
## 1719                                          
## 1720                                          
## 1721                                          
## 1722                           50 Leroy Street
## 1723                                          
## 1724     Care of NYC Health and Hospital Corp.
## 1725                                          
## 1726                                          
## 1727                             1 Atwell Road
## 1728                                          
## 1729                           101 Dates Drive
## 1730                   1 Huntington Quadrangle
## 1731                                          
## 1732                                          
## 1733                     111 East 210th Street
## 1734                                          
## 1735                                          
## 1736                                          
## 1737                                          
## 1738                     111 East 210th Street
## 1739                                          
## 1740                                          
## 1741                                          
## 1742                                          
## 1743                                          
## 1744                                          
## 1745                                          
## 1746                          2000 Marcus Ave.
## 1747                                          
## 1748                                          
## 1749                                          
## 1750                                          
## 1751                        601 Elmwood Avenue
## 1752                                          
## 1753                                          
## 1754 100 Woods Road, Taylor Pavilion 2nd Floor
## 1755                                          
## 1756                                          
## 1757                          2000 Marcus Ave.
## 1758                                          
## 1759                                          
## 1760                      20555 Victor Parkway
## 1761                     111 East 210th Street
## 1762                         1 Brookdale Plaza
## 1763                     111 East 210th Street
## 1764                                          
## 1765                                          
## 1766                                          
## 1767                     111 East 210th Street
## 1768                        144 Genesee Street
## 1769                             1 Atwell Road
## 1770                 One Gustave L. Levy Place
## 1771                            600 Roe Avenue
## 1772                                          
## 1773                                          
## 1774                             1 Atwell Road
## 1775                                          
## 1776                                          
## 1777                                          
## 1778                                          
## 1779                                          
## 1780                         89 Genesee Street
## 1781                                          
## 1782                                          
## 1783                                          
## 1784                                          
## 1785     Care of NYC Health and Hospital Corp.
## 1786                                          
## 1787                                          
## 1788                                          
## 1789                                          
## 1790                                          
## 1791                      20555 Victor Parkway
## 1792                 One Gustave L. Levy Place
## 1793                          2000 Marcus Ave.
## 1794                                          
## 1795                          2000 Marcus Ave.
## 1796                                          
## 1797                                          
## 1798                                          
## 1799 100 Woods Road, Taylor Pavilion 2nd Floor
## 1800                                          
## 1801                                          
## 1802                                          
## 1803                                          
## 1804                      20555 Victor Parkway
## 1805                         89 Genesee Street
## 1806                                          
## 1807                          2000 Marcus Ave.
## 1808                                          
## 1809                                          
## 1810                                          
## 1811                                          
## 1812                                          
## 1813                       New Scotland Avenue
## 1814                                          
## 1815                                          
## 1816                                          
## 1817                                          
## 1818                                          
## 1819                                          
## 1820                                          
## 1821                          2000 Marcus Ave.
## 1822                                          
## 1823                                          
## 1824                                          
## 1825                                          
## 1826                                          
## 1827                                          
## 1828                                          
## 1829                      20555 Victor Parkway
## 1830                                          
## 1831                                          
## 1832                                          
## 1833                 One Gustave L. Levy Place
## 1834                                          
## 1835               315 South Manning Boulevard
## 1836                         Stoneleigh Avenue
## 1837                                          
## 1838                                          
## 1839                                          
## 1840               525 East 68th Street Box 88
## 1841                                          
## 1842                                          
## 1843                          2000 Marcus Ave.
## 1844                                          
## 1845                                          
## 1846                     111 Colchester Avenue
## 1847                                          
## 1848                      20555 Victor Parkway
## 1849                                          
## 1850                      20555 Victor Parkway
## 1851                                          
## 1852                                          
## 1853                                          
## 1854                          741 Grant Street
## 1855                                          
## 1856                                          
## 1857 100 Woods Road, Taylor Pavilion 2nd Floor
## 1858                                          
## 1859                     111 East 210th Street
## 1860                                          
## 1861                 One Gustave L. Levy Place
## 1862                                          
## 1863                                          
## 1864                                          
## 1865                                          
## 1866                                          
## 1867                                          
## 1868                                          
## 1869                                          
## 1870                                          
## 1871                                          
## 1872                         89 Genesee Street
## 1873                      20555 Victor Parkway
## 1874                                          
## 1875                                          
## 1876                                          
## 1877                                          
## 1878                                          
## 1879                                          
## 1880                                          
## 1881                        144 Genesee Street
## 1882                      20555 Victor Parkway
## 1883                                          
## 1884                                          
## 1885                           50 Leroy Street
## 1886                                          
## 1887                                          
## 1888                                          
## 1889                                          
## 1890                                          
## 1891                                          
## 1892                                          
## 1893                                          
## 1894                                          
## 1895                                          
## 1896                       New Scotland Avenue
## 1897                                          
## 1898                                          
## 1899                                          
## 1900                                          
## 1901                                          
## 1902                                          
## 1903                                          
## 1904                                          
## 1905                             1 Atwell Road
## 1906                                          
## 1907                                          
## 1908                                          
## 1909                 One Gustave L. Levy Place
## 1910                                          
## 1911                                          
## 1912                                          
## 1913                                          
## 1914                                          
## 1915                           50 Leroy Street
## 1916                                          
## 1917               315 South Manning Boulevard
## 1918                     111 East 210th Street
## 1919               315 South Manning Boulevard
## 1920                                          
## 1921                       200 Bell Terre Road
## 1922                                          
## 1923                                          
## 1924                                          
## 1925                                          
## 1926                                          
## 1927                        144 Genesee Street
## 1928                      255 Lafayette Avenue
## 1929                                          
## 1930                                          
## 1931                                          
## 1932                                          
## 1933                                          
## 1934                                          
## 1935                                          
## 1936                                          
## 1937                                          
## 1938                                          
## 1939                                          
## 1940                                          
## 1941                                          
## 1942                             1 Atwell Road
## 1943                                          
## 1944                                          
## 1945                                          
## 1946                                          
## 1947                          2000 Marcus Ave.
## 1948                                          
## 1949                        144 Genesee Street
## 1950                                          
## 1951                       New Scotland Avenue
## 1952                                          
## 1953                        144 Genesee Street
## 1954                                          
## 1955                                          
## 1956                                          
## 1957                        144 Genesee Street
## 1958                   2201 Hempstead Turnpike
## 1959                            600 Roe Avenue
## 1960                                          
## 1961                                          
## 1962                                          
## 1963                                          
## 1964                                          
## 1965                                          
## 1966                        144 Genesee Street
## 1967                                          
## 1968                                          
## 1969                                          
## 1970                                          
## 1971                                          
## 1972                                          
## 1973                                          
## 1974                                          
## 1975                                          
## 1976               315 South Manning Boulevard
## 1977                                          
## 1978                                          
## 1979                      20555 Victor Parkway
## 1980               315 South Manning Boulevard
## 1981                                          
## 1982                                          
## 1983                                          
## 1984                                          
## 1985                            600 Roe Avenue
## 1986                                          
## 1987                     111 East 210th Street
## 1988                      255 Lafayette Avenue
## 1989                                          
## 1990                                          
## 1991                                          
## 1992                                          
## 1993                                          
## 1994                                          
## 1995                     111 East 210th Street
## 1996                                          
## 1997                       New Scotland Avenue
## 1998                                          
## 1999                     111 East 210th Street
## 2000                                          
## 2001                                          
## 2002                                          
## 2003                                          
## 2004                                          
## 2005                                          
## 2006                                          
## 2007                                          
## 2008                                          
## 2009                                          
## 2010                                          
## 2011                                          
## 2012                                          
## 2013                         1 Brookdale Plaza
## 2014                               Reade Place
## 2015                                          
## 2016                                          
## 2017                                          
## 2018                      20555 Victor Parkway
## 2019                                          
## 2020               525 East 68th Street Box 88
## 2021                                          
## 2022                           355 Bard Avenue
## 2023                                          
## 2024                                          
## 2025                                          
## 2026                                          
## 2027                                          
## 2028                                          
## 2029                                          
## 2030                                          
## 2031                                          
## 2032           205 Lexington Avenue, 3rd Floor
## 2033                         89 Genesee Street
## 2034                                          
## 2035                                          
## 2036                                          
## 2037                                          
## 2038                                          
## 2039                                          
## 2040                                          
## 2041                          2000 Marcus Ave.
## 2042                                          
## 2043                          2000 Marcus Ave.
## 2044                                          
## 2045                                          
## 2046                                          
## 2047                                          
## 2048                                          
## 2049 100 Woods Road, Taylor Pavilion 2nd Floor
## 2050                                          
## 2051                       New Scotland Avenue
## 2052                                          
## 2053                                          
## 2054                          2000 Marcus Ave.
## 2055                      20555 Victor Parkway
## 2056                        601 Elmwood Avenue
## 2057                                          
## 2058                          1 Guthrie Square
## 2059     Care of NYC Health and Hospital Corp.
## 2060                                          
## 2061                                          
## 2062                                          
## 2063                                          
## 2064                          2000 Marcus Ave.
## 2065                                          
## 2066                        144 Genesee Street
## 2067                                          
## 2068                                          
## 2069                                          
## 2070                                          
## 2071           205 Lexington Avenue, 3rd Floor
## 2072                                          
## 2073                                          
## 2074                                          
## 2075                                          
## 2076                          2000 Marcus Ave.
## 2077                                          
## 2078                         89 Genesee Street
## 2079                         89 Genesee Street
## 2080                                          
## 2081                                          
## 2082                 One Gustave L. Levy Place
## 2083                                          
## 2084                                          
## 2085                                          
## 2086                           515 Main Street
## 2087                                          
## 2088                                          
## 2089                                          
## 2090                                          
## 2091                                          
## 2092                                          
## 2093                                          
## 2094                                          
## 2095                                          
## 2096                                          
## 2097                                          
## 2098                                          
## 2099                         89 Genesee Street
## 2100                             1 Atwell Road
## 2101                                          
## 2102                                          
## 2103                                          
## 2104                             1 Atwell Road
## 2105                         89 Genesee Street
## 2106                                          
## 2107                                          
## 2108                                          
## 2109                           50 Leroy Street
## 2110                     111 East 210th Street
## 2111                                          
## 2112                                          
## 2113                                          
## 2114                                          
## 2115                                          
## 2116                                          
## 2117                                          
## 2118                                          
## 2119                                          
## 2120                                          
## 2121     Care of NYC Health and Hospital Corp.
## 2122                                          
## 2123               315 South Manning Boulevard
## 2124                                          
## 2125     Care of NYC Health and Hospital Corp.
## 2126                                          
## 2127                       200 Bell Terre Road
## 2128                                          
## 2129                                          
## 2130                     111 East 210th Street
## 2131                                          
## 2132     Care of NYC Health and Hospital Corp.
## 2133                                          
## 2134                                          
## 2135 100 Woods Road, Taylor Pavilion 2nd Floor
## 2136                                          
## 2137                   2201 Hempstead Turnpike
## 2138                                          
## 2139                        144 Genesee Street
## 2140                                          
## 2141                                          
## 2142                      20555 Victor Parkway
## 2143                                          
## 2144                             1 Atwell Road
## 2145                                          
## 2146                                          
## 2147                                          
## 2148                                          
## 2149                                          
## 2150                                          
## 2151                                          
## 2152                                          
## 2153                                          
## 2154                                          
## 2155                           515 Main Street
## 2156                                          
## 2157                               Reade Place
## 2158                         1 Brookdale Plaza
## 2159                                          
## 2160                         1656 Champlin Ave
## 2161                                          
## 2162                          2000 Marcus Ave.
## 2163                        144 Genesee Street
## 2164                                          
## 2165                         1 Brookdale Plaza
## 2166                                          
## 2167                                          
## 2168                                          
## 2169                                          
## 2170                                          
## 2171               315 South Manning Boulevard
## 2172     Care of NYC Health and Hospital Corp.
## 2173                                          
## 2174                                          
## 2175                                          
## 2176                                          
## 2177                             1 Atwell Road
## 2178                          2000 Marcus Ave.
## 2179                     111 East 210th Street
## 2180                                          
## 2181                                          
## 2182                                          
## 2183                                          
## 2184     Care of NYC Health and Hospital Corp.
## 2185                                          
## 2186                                          
## 2187                                          
## 2188                                          
## 2189                                          
## 2190                         89 Genesee Street
## 2191                                          
## 2192                                          
## 2193                                          
## 2194                        601 Elmwood Avenue
## 2195                                          
## 2196                                          
## 2197                                          
## 2198                                          
## 2199               525 East 68th Street Box 88
## 2200                             1 Atwell Road
## 2201     Care of NYC Health and Hospital Corp.
## 2202                                          
## 2203                                          
## 2204                                          
## 2205                                          
## 2206 100 Woods Road, Taylor Pavilion 2nd Floor
## 2207                                          
## 2208                                          
## 2209                 One Gustave L. Levy Place
## 2210                                          
## 2211                                          
## 2212                         89 Genesee Street
## 2213                                          
## 2214                                          
## 2215                                          
## 2216                                          
## 2217                                          
## 2218                         1656 Champlin Ave
## 2219                                          
## 2220                         89 Genesee Street
## 2221                                          
## 2222                                          
## 2223                                          
## 2224                                          
## 2225                                          
## 2226                                          
## 2227                                          
## 2228                                          
## 2229                                          
## 2230                                          
## 2231                                          
## 2232                                          
## 2233                                          
## 2234                                          
## 2235                                          
## 2236                 One Gustave L. Levy Place
## 2237                                          
## 2238                                          
## 2239               315 South Manning Boulevard
## 2240                                          
## 2241                                          
## 2242                      255 Lafayette Avenue
## 2243                                          
## 2244                                          
## 2245                                          
## 2246                                          
## 2247                                          
## 2248                                          
## 2249                                          
## 2250                                          
## 2251                                          
## 2252                                          
## 2253                                          
## 2254                          4 Harriman Drive
## 2255                                          
## 2256                                          
## 2257                                          
## 2258                          2000 Marcus Ave.
## 2259                                          
## 2260                                          
## 2261                                          
## 2262                             1 Atwell Road
## 2263               South Avenue At Bellevue Dr
## 2264                                          
## 2265                                          
## 2266                                          
## 2267                                          
## 2268                                          
## 2269                                          
## 2270                     111 East 210th Street
## 2271                                          
## 2272                                          
## 2273                                          
## 2274                          741 Grant Street
## 2275                                          
## 2276                                          
## 2277                                          
## 2278               525 East 68th Street Box 88
## 2279                                          
## 2280                                          
## 2281                                          
## 2282                                          
## 2283                                          
## 2284                                          
## 2285                         1656 Champlin Ave
## 2286                                          
## 2287                                          
## 2288                                          
## 2289                                          
## 2290                                          
## 2291                                          
## 2292                                          
## 2293                                          
## 2294                                          
## 2295                           100 High Street
## 2296                                          
## 2297                                          
## 2298                                          
## 2299                                          
## 2300                                          
## 2301                                          
## 2302                                          
## 2303                                          
## 2304     Care of NYC Health and Hospital Corp.
## 2305                                          
## 2306                                          
## 2307                                          
## 2308                                          
## 2309                        144 Genesee Street
## 2310                                          
## 2311                                          
## 2312                        144 Genesee Street
## 2313                        144 Genesee Street
## 2314                                          
## 2315                          2000 Marcus Ave.
## 2316                                          
## 2317                                          
## 2318                      20555 Victor Parkway
## 2319                                          
## 2320                                          
## 2321                                          
## 2322                     111 Colchester Avenue
## 2323                                          
## 2324                                          
## 2325                                          
## 2326                                          
## 2327                                          
## 2328                         89 Genesee Street
## 2329                             1 Atwell Road
## 2330                                          
## 2331                                          
## 2332                                          
## 2333                                          
## 2334                                          
## 2335                                          
## 2336                                          
## 2337                                          
## 2338                          2000 Marcus Ave.
## 2339                                          
## 2340                           515 Main Street
## 2341                                          
## 2342                                          
## 2343                           50 Leroy Street
## 2344                     111 East 210th Street
## 2345                             1 Atwell Road
## 2346                         89 Genesee Street
## 2347                      255 Lafayette Avenue
## 2348                                          
## 2349                                          
## 2350                                          
## 2351                          2000 Marcus Ave.
## 2352                                          
## 2353                          2000 Marcus Ave.
## 2354                                          
## 2355                       New Scotland Avenue
## 2356                  1351 Route 55, Suite 200
## 2357                         Stoneleigh Avenue
## 2358                                          
## 2359                                          
## 2360               525 East 68th Street Box 88
## 2361                                          
## 2362                                          
## 2363                           50 Leroy Street
## 2364                                          
## 2365                         89 Genesee Street
## 2366                                          
## 2367                   2201 Hempstead Turnpike
## 2368                                          
## 2369                                          
## 2370                          2000 Marcus Ave.
## 2371                          4 Harriman Drive
## 2372                                          
## 2373                                          
## 2374                                          
## 2375     Care of NYC Health and Hospital Corp.
## 2376                                          
## 2377                         89 Genesee Street
## 2378                         89 Genesee Street
## 2379                                          
## 2380                                          
## 2381                                          
## 2382                                          
## 2383                                          
## 2384                                          
## 2385                                          
## 2386                                          
## 2387                                          
## 2388                                          
## 2389                             1 Atwell Road
## 2390                                          
## 2391                                          
## 2392                                          
## 2393                                          
## 2394                                          
## 2395                                          
## 2396                         1656 Champlin Ave
## 2397                                          
## 2398                        144 Genesee Street
## 2399                                          
## 2400                                          
## 2401                                          
## 2402                                          
## 2403                                          
## 2404                                          
## 2405                         89 Genesee Street
## 2406                                          
## 2407                                          
## 2408                                          
## 2409                     111 East 210th Street
## 2410                                          
## 2411                        601 Elmwood Avenue
## 2412                                          
## 2413                                          
## 2414                                          
## 2415                         89 Genesee Street
## 2416                                          
## 2417                         1656 Champlin Ave
## 2418                     111 East 210th Street
## 2419                                          
## 2420                                          
## 2421                                          
## 2422                                          
## 2423                      20555 Victor Parkway
## 2424               South Avenue At Bellevue Dr
## 2425                                          
## 2426     Care of NYC Health and Hospital Corp.
## 2427                                          
## 2428                                          
## 2429                                          
## 2430                                          
## 2431                     111 East 210th Street
## 2432                                          
## 2433                                          
## 2434                                          
## 2435                                          
## 2436                                          
## 2437                                          
## 2438                                          
## 2439                                          
## 2440                         89 Genesee Street
## 2441                                          
## 2442                                          
## 2443                                          
## 2444                                          
## 2445                                          
## 2446                                          
## 2447                            600 Roe Avenue
## 2448                                          
## 2449                         89 Genesee Street
## 2450                                          
## 2451                                          
## 2452                                          
## 2453                   1 Huntington Quadrangle
## 2454                           101 Dates Drive
## 2455                      20555 Victor Parkway
## 2456                                          
## 2457                                          
## 2458                      20555 Victor Parkway
## 2459                                          
## 2460                                          
## 2461                         1656 Champlin Ave
## 2462                                          
## 2463                                          
## 2464                                          
## 2465                                          
## 2466                                          
## 2467                                          
## 2468                                          
## 2469                                          
## 2470                        967 North Broadway
## 2471                                          
## 2472                                          
## 2473                                          
## 2474                                          
## 2475                       New Scotland Avenue
## 2476                                          
## 2477                           50 Leroy Street
## 2478           205 Lexington Avenue, 3rd Floor
## 2479                                          
## 2480                                          
## 2481                                          
## 2482                                          
## 2483                                          
## 2484                                          
## 2485                                          
## 2486                                          
## 2487                         1 Brookdale Plaza
## 2488                                          
## 2489                             1 Atwell Road
## 2490                                          
## 2491                         89 Genesee Street
## 2492               525 East 68th Street Box 88
## 2493                         Stoneleigh Avenue
## 2494                                          
## 2495                     111 East 210th Street
## 2496                          2000 Marcus Ave.
## 2497                         736 Irving Avenue
## 2498                                          
## 2499                                          
## 2500                                          
## 2501                         1656 Champlin Ave
## 2502                                          
## 2503                   1 Huntington Quadrangle
## 2504                                          
## 2505                        601 Elmwood Avenue
## 2506                            600 Roe Avenue
## 2507                                          
## 2508                           1010 Kendal Way
## 2509                                          
## 2510                                          
## 2511                                          
## 2512                                          
## 2513                                          
## 2514                         89 Genesee Street
## 2515                                          
## 2516                                          
## 2517                                          
## 2518                                          
## 2519                         89 Genesee Street
## 2520                                          
## 2521                                          
## 2522                                          
## 2523                                          
## 2524                  1351 Route 55, Suite 200
## 2525                  1351 Route 55, Suite 200
## 2526                             1 Atwell Road
## 2527                          2000 Marcus Ave.
## 2528                                          
## 2529                          1 Guthrie Square
## 2530                           50 Leroy Street
## 2531                                          
## 2532                                          
## 2533                         89 Genesee Street
## 2534                                          
## 2535                                          
## 2536                                          
## 2537                                          
## 2538                                          
## 2539                                          
## 2540     Care of NYC Health and Hospital Corp.
## 2541                          2000 Marcus Ave.
## 2542                                          
## 2543                                          
## 2544                                          
## 2545                             1 Atwell Road
## 2546                                          
## 2547     Care of NYC Health and Hospital Corp.
## 2548                                          
## 2549                                          
## 2550                                          
## 2551                      20555 Victor Parkway
## 2552                                          
## 2553                                          
## 2554                                          
## 2555                                          
## 2556                                          
## 2557                                          
## 2558                                          
## 2559                                          
## 2560                      232 West 25th Street
## 2561                                          
## 2562                 One Gustave L. Levy Place
## 2563                                          
## 2564                         1656 Champlin Ave
## 2565                                          
## 2566                                          
## 2567               315 South Manning Boulevard
## 2568                                          
## 2569                                          
## 2570                                          
## 2571                         1 Brookdale Plaza
## 2572                                          
## 2573                                          
## 2574                                          
## 2575                                          
## 2576                                          
## 2577                                          
## 2578                                          
## 2579                                          
## 2580                                          
## 2581                                          
## 2582                                          
## 2583                        144 Genesee Street
## 2584                                          
## 2585                                          
## 2586                                          
## 2587                                          
## 2588                     111 East 210th Street
## 2589                      20555 Victor Parkway
## 2590                                          
## 2591                     111 East 210th Street
## 2592                                          
## 2593                           100 High Street
## 2594                     111 East 210th Street
## 2595                         1656 Champlin Ave
## 2596                                          
## 2597                                          
## 2598                           355 Bard Avenue
## 2599                                          
## 2600                        967 North Broadway
## 2601     Care of NYC Health and Hospital Corp.
## 2602                  1351 Route 55, Suite 200
## 2603                     111 East 210th Street
## 2604                                          
## 2605                      20555 Victor Parkway
## 2606                                          
## 2607               315 South Manning Boulevard
## 2608                                          
## 2609                                          
## 2610                                          
## 2611                                          
## 2612                                          
## 2613                     111 East 210th Street
## 2614                                          
## 2615                   1 Huntington Quadrangle
## 2616                                          
## 2617                                          
## 2618                                          
## 2619                                          
## 2620                                          
## 2621                                          
## 2622                                          
## 2623                         89 Genesee Street
## 2624                                          
## 2625                         1 Brookdale Plaza
## 2626                                          
## 2627                                          
## 2628                                          
## 2629                                          
## 2630                                          
## 2631                                          
## 2632                                          
## 2633                                          
## 2634                                          
## 2635                                          
## 2636                                          
## 2637                                          
## 2638                                          
## 2639                                          
## 2640                                          
## 2641                          2000 Marcus Ave.
## 2642                                          
## 2643                           101 Dates Drive
## 2644                                          
## 2645                                          
## 2646                                          
## 2647                                          
## 2648                                          
## 2649                                          
## 2650                                          
## 2651                                          
## 2652                                          
## 2653                                          
## 2654                                          
## 2655                                          
## 2656                                          
## 2657                                          
## 2658                         89 Genesee Street
## 2659                                          
## 2660                                          
## 2661                                          
## 2662                                          
## 2663                                          
## 2664                                          
## 2665                          2000 Marcus Ave.
## 2666                                          
## 2667                                          
## 2668                                          
## 2669                                          
## 2670                                          
## 2671                                          
## 2672                                          
## 2673                                          
## 2674                                          
## 2675                   1 Huntington Quadrangle
## 2676                                          
## 2677                                          
## 2678                                          
## 2679                         89 Genesee Street
## 2680                                          
## 2681                                          
## 2682                             1 Atwell Road
## 2683                                          
## 2684                                          
## 2685                                          
## 2686 100 Woods Road, Taylor Pavilion 2nd Floor
## 2687               525 East 68th Street Box 88
## 2688                                          
## 2689                                          
## 2690                                          
## 2691                                          
## 2692                                          
## 2693                         89 Genesee Street
## 2694                                          
## 2695                                          
## 2696                                          
## 2697                             1 Atwell Road
## 2698                                          
## 2699                                          
## 2700                                          
## 2701                                          
## 2702                                          
## 2703                                          
## 2704                                          
## 2705                 One Gustave L. Levy Place
## 2706                                          
## 2707               315 South Manning Boulevard
## 2708                                          
## 2709                       New Scotland Avenue
## 2710                          2000 Marcus Ave.
## 2711                                          
## 2712                                          
## 2713                                          
## 2714                                          
## 2715                                          
## 2716                             1 Atwell Road
## 2717                                          
## 2718                                          
## 2719                                          
## 2720                                          
## 2721                                          
## 2722                      20555 Victor Parkway
## 2723                                          
## 2724                                          
## 2725                                          
## 2726                                          
## 2727                                          
## 2728                           50 Leroy Street
## 2729                                          
## 2730                               Reade Place
## 2731                   1 Huntington Quadrangle
## 2732                          2000 Marcus Ave.
## 2733                                          
## 2734                                          
## 2735                                          
## 2736                                          
## 2737                          2000 Marcus Ave.
## 2738                                          
## 2739                       New Scotland Avenue
## 2740                                          
## 2741                                          
## 2742                        144 Genesee Street
## 2743                             1 Atwell Road
## 2744                           355 Bard Avenue
## 2745                                          
## 2746                                          
## 2747                                          
## 2748                                          
## 2749                                          
## 2750                                          
## 2751                                          
## 2752                                          
## 2753                     111 East 210th Street
## 2754                 One Gustave L. Levy Place
## 2755                                          
## 2756                                          
## 2757                                          
## 2758                                          
## 2759                                          
## 2760                         1656 Champlin Ave
## 2761                                          
## 2762                                          
## 2763                                          
## 2764                                          
## 2765                                          
## 2766                                          
## 2767                        144 Genesee Street
## 2768                                          
## 2769                                          
## 2770                                          
## 2771                   2201 Hempstead Turnpike
## 2772                                          
## 2773                                          
## 2774                                          
## 2775                                          
## 2776                                          
## 2777                                          
##                         Cooperator.Address.2 Cooperator.City Cooperator.State
## 1                                                                    New York
## 2                                                                    New York
## 3                                                                    New York
## 4                                                                    New York
## 5                                                                    New York
## 6                                                                    New York
## 7                                                                    New York
## 8                                                                    New York
## 9                                                                    New York
## 10                                                                   New York
## 11                                                                   New York
## 12                                                                   New York
## 13                                                                   New York
## 14                                                                   New York
## 15                                                                   New York
## 16                                                                   New York
## 17                                                                   New York
## 18                                                                   New York
## 19                                                                   New York
## 20                                                                   New York
## 21                                                                   New York
## 22                                                   Buffalo         New York
## 23                                                                   New York
## 24                                                                   New York
## 25                                                                   New York
## 26                                                                   New York
## 27                                                                   New York
## 28                                                                   New York
## 29                                                                   New York
## 30                                                                   New York
## 31                                                                   New York
## 32                                                                   New York
## 33                                                                   New York
## 34                                                                   New York
## 35                          125 Worth Street        New York         New York
## 36                                                                   New York
## 37                                               Cooperstown         New York
## 38                                                                   New York
## 39                                             LaGrangeville         New York
## 40                                                                   New York
## 41                          125 Worth Street        New York         New York
## 42                                                                   New York
## 43                                                                   New York
## 44                                                                   New York
## 45                                                                   New York
## 46                                                                   New York
## 47                                               East Meadow         New York
## 48                                                    Albany         New York
## 49                                                                   New York
## 50                                                                   New York
## 51                                                                   New York
## 52                                                     Bronx         New York
## 53                                                                   New York
## 54                                                                   New York
## 55                                             New Hyde Park         New York
## 56                                                                   New York
## 57                                                                   New York
## 58                                                                   New York
## 59                                                                   New York
## 60                                                                   New York
## 61                                                                   New York
## 62                                                     Utica         New York
## 63                                             New Hyde Park         New York
## 64                          125 Worth Street        New York         New York
## 65                                                  Melville         New York
## 66                                                                   New York
## 67                                                 Rochester         New York
## 68                                             New Hyde Park         New York
## 69                                                  New York         New York
## 70                                                    Albany         New York
## 71                                             LaGrangeville         New York
## 72                                                    Carmel         New York
## 73                                                                   New York
## 74                                                                   New York
## 75                                                                   New York
## 76                                             New Hyde Park         New York
## 77                                                                   New York
## 78                                                Burlington         New York
## 79                                                                   New York
## 80                                                                   New York
## 81                                                                   New York
## 82                                                                   New York
## 83                                                     Bronx         New York
## 84                                             New Hyde Park         New York
## 85                                                                   New York
## 86                                                                   New York
## 87                                                                   New York
## 88                                             New Hyde Park         New York
## 89                          125 Worth Street        New York         New York
## 90                                             New Hyde Park         New York
## 91                                                                   New York
## 92                                                                   New York
## 93                                                                   New York
## 94                                                                   New York
## 95                                                                   New York
## 96                                                                   New York
## 97                                                                   New York
## 98                                                                   New York
## 99                                                     Utica         New York
## 100                                                                  New York
## 101                                                                  New York
## 102                         125 Worth Street        New York         New York
## 103                                                 New York         New York
## 104                                                                  New York
## 105                                                 New York         New York
## 106                                                                  New York
## 107                                            New Hyde Park         New York
## 108                                                                  New York
## 109                                                                  New York
## 110                                                                  New York
## 111                                                                  New York
## 112                                                                  New York
## 113                                                                  New York
## 114                                                                  New York
## 115                                                                  New York
## 116                                                                  New York
## 117                                                Rochester         New York
## 118                                                   Goshen         New York
## 119                                                                  New York
## 120                                                                  New York
## 121                         125 Worth Street        New York         New York
## 122                                                  Livonia         New York
## 123                                                  Livonia         New York
## 124                                                                  New York
## 125                                                                  New York
## 126                                                                  New York
## 127                                                   Elmira         New York
## 128                                                                  New York
## 129                                                                  New York
## 130                                                                  New York
## 131                                                                  New York
## 132                                            New Hyde Park         New York
## 133                                                   Albany         New York
## 134                                                                  New York
## 135                                                                  New York
## 136                                                                  New York
## 137                                                                  New York
## 138                                            New Hyde Park         New York
## 139                                                                  New York
## 140                                                                  New York
## 141                                                                  New York
## 142                                                 Syracuse         New York
## 143                                                                  New York
## 144                                                    Utica         New York
## 145                                                                  New York
## 146                                                                  New York
## 147                                              Cooperstown         New York
## 148                                                                  New York
## 149                                                Rochester         New York
## 150                                                    Utica         New York
## 151                                                                  New York
## 152                                                                  New York
## 153                                                                  New York
## 154                                                                  New York
## 155                                                                  New York
## 156                                                                  New York
## 157                                                                  New York
## 158                                                                  New York
## 159                                                                  New York
## 160                                                                  New York
## 161                                                  Livonia         New York
## 162                                                                  New York
## 163                                                                  New York
## 164                                                                  New York
## 165                                                Rochester         New York
## 166                                                                  New York
## 167                                                 Syracuse         New York
## 168                                                   Ithaca         New York
## 169                                                                  New York
## 170                                              Cooperstown         New York
## 171                                                                  New York
## 172                                                                  New York
## 173                                                                  New York
## 174                                                                  New York
## 175                                                                  New York
## 176                                                                  New York
## 177                                                                  New York
## 178                                                                  New York
## 179                                                                  New York
## 180                                            New Hyde Park         New York
## 181                                                                  New York
## 182                                                                  New York
## 183                                                                  New York
## 184                                                                  New York
## 185                                                                  New York
## 186                                                                  New York
## 187                                                                  New York
## 188                                                   Elmira         New York
## 189                                                Rochester         New York
## 190                                                                  New York
## 191                                                 New York         New York
## 192                                                                  New York
## 193                                                                  New York
## 194                                                  Livonia         New York
## 195                                            New Hyde Park         New York
## 196                                                                  New York
## 197                                                                  New York
## 198                                                                  New York
## 199                         125 Worth Street        New York         New York
## 200                                                   Albany         New York
## 201                                                                  New York
## 202                                             Lake Katrine         New York
## 203                                                                  New York
## 204                                                   Albany         New York
## 205                                                                  New York
## 206                                                                  New York
## 207                                                                  New York
## 208                                                Rochester         New York
## 209                                                                  New York
## 210                                                                  New York
## 211                                                                  New York
## 212                                                                  New York
## 213                                                  Buffalo         New York
## 214                                                 New York         New York
## 215                                                                  New York
## 216                                                    Bronx         New York
## 217                                                                  New York
## 218                                                                  New York
## 219                                                                  New York
## 220                                                                  New York
## 221                                                                  New York
## 222                                                                  New York
## 223                                            New Hyde Park         New York
## 224                                                                  New York
## 225                                                 New York         New York
## 226                                                                  New York
## 227                                                                  New York
## 228                                                                  New York
## 229                                                                  New York
## 230                                                                  New York
## 231                                                                  New York
## 232                                                                  New York
## 233                                            New Hyde Park         New York
## 234                                                                  New York
## 235                                                                  New York
## 236                                                                  New York
## 237                                                                  New York
## 238                                                                  New York
## 239                                                                  New York
## 240                                                                  New York
## 241                                                   Albany         New York
## 242                                                                  New York
## 243                                                                  New York
## 244                                                                  New York
## 245                                                                  New York
## 246                                                                  New York
## 247                                                                  New York
## 248                                                  Buffalo         New York
## 249                                                                  New York
## 250                                                                  New York
## 251                                                                  New York
## 252                         125 Worth Street        New York         New York
## 253                                                                  New York
## 254                                                                  New York
## 255                                                                  New York
## 256                                                                  New York
## 257                                                                  New York
## 258                                                                  New York
## 259                                                                  New York
## 260                                                                  New York
## 261                                                                  New York
## 262                                                                  New York
## 263                                                                  New York
## 264                                                                  New York
## 265                                                  Livonia         New York
## 266                                                                  New York
## 267                                                    Bronx         New York
## 268                                                                  New York
## 269                                                                  New York
## 270                                                                  New York
## 271                                                                  New York
## 272                                                                  New York
## 273                                                                  New York
## 274                                                Rochester         New York
## 275                                                                  New York
## 276                                                    Bronx         New York
## 277                                                    Sayre         New York
## 278                                                                  New York
## 279                                                                  New York
## 280                                                                  New York
## 281                                                 New York         New York
## 282                                                                  New York
## 283                                                    Bronx         New York
## 284                                                                  New York
## 285                                              Cooperstown         New York
## 286                                                                  New York
## 287                                                                  New York
## 288                                                                  New York
## 289                                                   Albany         New York
## 290                                                                  New York
## 291                                                                  New York
## 292                                            LaGrangeville         New York
## 293                                                                  New York
## 294                         125 Worth Street        New York         New York
## 295                                                                  New York
## 296                                                                  New York
## 297                                                                  New York
## 298                                                                  New York
## 299                                                Jamestown         New York
## 300                                                                  New York
## 301                                                                  New York
## 302                                                   Albany         New York
## 303                                            New Hyde Park         New York
## 304                                                                  New York
## 305                                                                  New York
## 306                                                 New York         New York
## 307                                                                  New York
## 308                                                                  New York
## 309                                                    Bronx         New York
## 310                                             Lake Katrine         New York
## 311                                                                  New York
## 312                                                   Albany         New York
## 313                                                                  New York
## 314                                                                  New York
## 315                                            New Hyde Park         New York
## 316                                                                  New York
## 317                                                                  New York
## 318                                                   Albany         New York
## 319                                                                  New York
## 320                                                                  New York
## 321                                            LaGrangeville         New York
## 322                                                                  New York
## 323                                                 New York         New York
## 324                                                   Elmira         New York
## 325                                                Rochester         New York
## 326                                                                  New York
## 327                                                                  New York
## 328                                                                  New York
## 329                                                                  New York
## 330                                                                  New York
## 331                                                                  New York
## 332                                                                  New York
## 333                                                                  New York
## 334                                                                  New York
## 335                                                                  New York
## 336                                                   Albany         New York
## 337                                                                  New York
## 338                                                                  New York
## 339                                                Rochester         New York
## 340                                                                  New York
## 341                                                                  New York
## 342                                                                  New York
## 343                                                   Albany         New York
## 344                                                                  New York
## 345                                                                  New York
## 346                                                                  New York
## 347                                                                  New York
## 348                                                  Bayside         New York
## 349                                                                  New York
## 350                                                                  New York
## 351                                            Staten Island         New York
## 352                                                                  New York
## 353                                                                  New York
## 354                                                                  New York
## 355                                                                  New York
## 356                                                                  New York
## 357                                                  Potsdam         New York
## 358                                                                  New York
## 359                                                                  New York
## 360                                                    Bronx         New York
## 361                                                                  New York
## 362                                                    Utica         New York
## 363                                                 New York         New York
## 364                                                                  New York
## 365                                            New Hyde Park         New York
## 366                                                                  New York
## 367                                                                  New York
## 368                                                                  New York
## 369                                                                  New York
## 370                                                                  New York
## 371                                                   Albany         New York
## 372                                                 New York         New York
## 373                                                                  New York
## 374                                                                  New York
## 375                                                                  New York
## 376                                              Cooperstown         New York
## 377                                                                  New York
## 378                                                                  New York
## 379                                                Rochester         New York
## 380                                                                  New York
## 381                                                                  New York
## 382                                                   Albany         New York
## 383                                                                  New York
## 384                                                                  New York
## 385                                                                  New York
## 386                                                                  New York
## 387                                                                  New York
## 388                                                   Albany         New York
## 389                                                                  New York
## 390                                                                  New York
## 391                                                                  New York
## 392                                                                  New York
## 393                                                                  New York
## 394                                                  Livonia         New York
## 395                                                                  New York
## 396                                                                  New York
## 397                                                                  New York
## 398                                                   Albany         New York
## 399                                                  Suffern         New York
## 400                                                                  New York
## 401                                                                  New York
## 402                                                                  New York
## 403                                            New Hyde Park         New York
## 404                                                                  New York
## 405                                                    Bronx         New York
## 406                                                Rochester         New York
## 407                                                                  New York
## 408                                                                  New York
## 409                                                                  New York
## 410                                                                  New York
## 411                                                                  New York
## 412                                                                  New York
## 413                                                                  New York
## 414                                                                  New York
## 415                                                                  New York
## 416                                                                  New York
## 417                                                Rochester         New York
## 418                                                                  New York
## 419                                                                  New York
## 420                                                 Melville         New York
## 421                                                                  New York
## 422                                                  Livonia         New York
## 423                                                                  New York
## 424                                                  Buffalo         New York
## 425                                                                  New York
## 426                                                                  New York
## 427                                                                  New York
## 428                                                                  New York
## 429                                                                  New York
## 430                                                                  New York
## 431                                                                  New York
## 432                                                Rochester         New York
## 433                                                                  New York
## 434                                                                  New York
## 435                                                  Suffern         New York
## 436                                                                  New York
## 437                                                                  New York
## 438                                                                  New York
## 439                                                                  New York
## 440                                                                  New York
## 441                                                                  New York
## 442                                                                  New York
## 443                                                                  New York
## 444                                                                  New York
## 445                                                                  New York
## 446                                                                  New York
## 447                                                                  New York
## 448                                                 New York         New York
## 449                                                                  New York
## 450                                                                  New York
## 451                                                                  New York
## 452                                                                  New York
## 453                                                   Albany         New York
## 454                                                                  New York
## 455                                                                  New York
## 456                                                                  New York
## 457                                                                  New York
## 458                                                    Bronx         New York
## 459                                                                  New York
## 460                                                    Bronx         New York
## 461                                                                  New York
## 462                                                                  New York
## 463                                                                  New York
## 464                                                   Albany         New York
## 465                                                                  New York
## 466                                                                  New York
## 467                                                                  New York
## 468                                                                  New York
## 469                                            New Hyde Park         New York
## 470                                                                  New York
## 471                                                                  New York
## 472                                                                  New York
## 473                                                                  New York
## 474                                                                  New York
## 475                                                                  New York
## 476                                            New Hyde Park         New York
## 477                                                                  New York
## 478                                                                  New York
## 479                                               Burlington         New York
## 480                                                                  New York
## 481                                                                  New York
## 482                                                                  New York
## 483                                                                  New York
## 484                                                   Goshen         New York
## 485                                                   Albany         New York
## 486                                                Rochester         New York
## 487                                                                  New York
## 488                                                                  New York
## 489                                                                  New York
## 490                                                                  New York
## 491                                            New Hyde Park         New York
## 492                                                                  New York
## 493                                               Burlington         New York
## 494                                                                  New York
## 495                                                                  New York
## 496                                                                  New York
## 497                                                                  New York
## 498                                                                  New York
## 499                                                                  New York
## 500                                                                  New York
## 501                                                                  New York
## 502                                                                  New York
## 503                                                                  New York
## 504                                                                  New York
## 505                                                                  New York
## 506                                                                  New York
## 507                                                    Bronx         New York
## 508                                                                  New York
## 509                                                                  New York
## 510                                                   Albany         New York
## 511                                                                  New York
## 512                                                                  New York
## 513                                                                  New York
## 514                                                                  New York
## 515                                                                  New York
## 516                                                                  New York
## 517                                                                  New York
## 518                                                   Albany         New York
## 519                                                                  New York
## 520                                                                  New York
## 521                                            New Hyde Park         New York
## 522                                                                  New York
## 523                                                                  New York
## 524                                                                  New York
## 525                                                                  New York
## 526                                                                  New York
## 527                                                                  New York
## 528                                                                  New York
## 529                                                                  New York
## 530                                                                  New York
## 531                                                                  New York
## 532                                                                  New York
## 533                                                                  New York
## 534                                                   Albany         New York
## 535                                                  Livonia         New York
## 536                                                Watertown         New York
## 537                                                  Buffalo         New York
## 538                                                                  New York
## 539                                                   Albany         New York
## 540                                                                  New York
## 541                                            New Hyde Park         New York
## 542                                                                  New York
## 543                                                  Livonia         New York
## 544                                                                  New York
## 545                                                                  New York
## 546                                                                  New York
## 547                                                                  New York
## 548                         125 Worth Street        New York         New York
## 549                                                                  New York
## 550                                                                  New York
## 551                                                                  New York
## 552                                                    Bronx         New York
## 553                                                                  New York
## 554                                                                  New York
## 555                                                                  New York
## 556                                                                  New York
## 557                                                                  New York
## 558                                            LaGrangeville         New York
## 559                                                 New York         New York
## 560                                                                  New York
## 561                                                                  New York
## 562                                                                  New York
## 563                                                                  New York
## 564                                                                  New York
## 565                                                Jamestown         New York
## 566                                                    Bronx         New York
## 567                                                                  New York
## 568                                            New Hyde Park         New York
## 569                                                                  New York
## 570                                                                  New York
## 571                                                                  New York
## 572                                                                  New York
## 573                                                                  New York
## 574                                                                  New York
## 575                                                                  New York
## 576                                              Cooperstown         New York
## 577                                                                  New York
## 578                                                Rochester         New York
## 579                                                                  New York
## 580                                                                  New York
## 581                                                                  New York
## 582                                                                  New York
## 583                                                                  New York
## 584                                                                  New York
## 585                                                                  New York
## 586                                                                  New York
## 587                                              Cooperstown         New York
## 588                                                                  New York
## 589                                                                  New York
## 590                                                Rochester         New York
## 591                                                Rochester         New York
## 592                                                                  New York
## 593                                                                  New York
## 594                                                                  New York
## 595                                            New Hyde Park         New York
## 596                                                                  New York
## 597                                                                  New York
## 598                                                                  New York
## 599                                                                  New York
## 600                                                   Albany         New York
## 601                                                   Albany         New York
## 602                                              Cooperstown         New York
## 603                                                                  New York
## 604                                                  Livonia         New York
## 605                                                                  New York
## 606                                                                  New York
## 607                                                                  New York
## 608                                                                  New York
## 609                                                                  New York
## 610                                                                  New York
## 611                                                                  New York
## 612                                                                  New York
## 613                                            LaGrangeville         New York
## 614                                                                  New York
## 615                                                                  New York
## 616                                                 New York         New York
## 617                                                                  New York
## 618                                                                  New York
## 619                                                                  New York
## 620                                                  Potsdam         New York
## 621                                                                  New York
## 622                                                   Ithaca         New York
## 623                                                    Bronx         New York
## 624                                                                  New York
## 625                                                                  New York
## 626                                                    Utica         New York
## 627                                                    Sayre         New York
## 628                                                                  New York
## 629                                                                  New York
## 630                                                                  New York
## 631                                                                  New York
## 632                                            New Hyde Park         New York
## 633                                                  Livonia         New York
## 634                                                  Livonia         New York
## 635                                                                  New York
## 636                                                                  New York
## 637                                                                  New York
## 638                                                                  New York
## 639                                            New Hyde Park         New York
## 640                                                                  New York
## 641                                                                  New York
## 642                                                Rochester         New York
## 643                                                                  New York
## 644                                                                  New York
## 645                                                                  New York
## 646                                                                  New York
## 647                                                                  New York
## 648                                                                  New York
## 649                                                                  New York
## 650                                                                  New York
## 651                                                                  New York
## 652                                                                  New York
## 653                                                  Livonia         New York
## 654                                           Port Jefferson         New York
## 655                                                                  New York
## 656                                                                  New York
## 657                                                                  New York
## 658                                                                  New York
## 659                                                Rochester         New York
## 660                                                                  New York
## 661                                                                  New York
## 662                                                                  New York
## 663                                                                  New York
## 664                                                                  New York
## 665                                                                  New York
## 666                                                                  New York
## 667                                           Port Jefferson         New York
## 668                                                                  New York
## 669                                                                  New York
## 670                                                                  New York
## 671                                                                  New York
## 672                                                    Bronx         New York
## 673                                                    Bronx         New York
## 674                                                                  New York
## 675                                                                  New York
## 676                                                                  New York
## 677                                                                  New York
## 678                                                                  New York
## 679                                                                  New York
## 680                                                                  New York
## 681                                                  Yonkers         New York
## 682                                                                  New York
## 683                                                                  New York
## 684                                                                  New York
## 685                                                                  New York
## 686                                                 New York         New York
## 687                                                                  New York
## 688                                                                  New York
## 689                                                                  New York
## 690                                                                  New York
## 691                                                                  New York
## 692                                                                  New York
## 693                                                Rochester         New York
## 694                                              Cooperstown         New York
## 695                                                                  New York
## 696                                                                  New York
## 697                                                                  New York
## 698                                                                  New York
## 699                                                  Potsdam         New York
## 700                                                                  New York
## 701                                                                  New York
## 702                                                                  New York
## 703                                                   Albany         New York
## 704                                                                  New York
## 705                                                                  New York
## 706                                            New Hyde Park         New York
## 707                                                                  New York
## 708                                                Jamestown         New York
## 709                                                                  New York
## 710                                                                  New York
## 711                                                                  New York
## 712                                                   Albany         New York
## 713                                                                  New York
## 714                                                                  New York
## 715                                                                  New York
## 716                                                                  New York
## 717                                                   Goshen         New York
## 718                                                                  New York
## 719                                                                  New York
## 720                                                                  New York
## 721                                                                  New York
## 722                                                                  New York
## 723                                                                  New York
## 724                                                                  New York
## 725                                                                  New York
## 726                                                                  New York
## 727                                                                  New York
## 728                                                                  New York
## 729                                                                  New York
## 730                                                                  New York
## 731                                                                  New York
## 732                                                Rochester         New York
## 733                                                  Buffalo         New York
## 734                                              Cooperstown         New York
## 735                                                                  New York
## 736                                                                  New York
## 737                         125 Worth Street        New York         New York
## 738                                                                  New York
## 739                                                                  New York
## 740                                                                  New York
## 741                                                                  New York
## 742                                                                  New York
## 743                                                  Livonia         New York
## 744                                                                  New York
## 745                                                                  New York
## 746                                                                  New York
## 747                                                                  New York
## 748                                                                  New York
## 749                                                                  New York
## 750                                                                  New York
## 751                                                                  New York
## 752                                                                  New York
## 753                                                 Syracuse         New York
## 754                                                   Albany         New York
## 755                                                                  New York
## 756                                              Cooperstown         New York
## 757  Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 758                                                  Buffalo         New York
## 759                                                                  New York
## 760                                                                  New York
## 761                                            New Hyde Park         New York
## 762                                                                  New York
## 763                                                                  New York
## 764                                                                  New York
## 765                                                  Livonia         New York
## 766                                                                  New York
## 767                                                                  New York
## 768                                                                  New York
## 769                                                                  New York
## 770                                                                  New York
## 771                                                  Buffalo         New York
## 772                                                                  New York
## 773                                                  Livonia         New York
## 774                                                                  New York
## 775                                                                  New York
## 776                                                                  New York
## 777                                            New Hyde Park         New York
## 778                                                   Ithaca         New York
## 779                                                                  New York
## 780                                                    Bronx         New York
## 781                                                                  New York
## 782                                                    Bronx         New York
## 783                                                                  New York
## 784                                                                  New York
## 785                                                    Bronx         New York
## 786                                                  Suffern         New York
## 787                         125 Worth Street        New York         New York
## 788                                                                  New York
## 789                                                                  New York
## 790                                                                  New York
## 791                                                                  New York
## 792                                                                  New York
## 793                                                                  New York
## 794                                                    Bronx         New York
## 795                                            New Hyde Park         New York
## 796                                                                  New York
## 797                                                   Albany         New York
## 798                                                                  New York
## 799                                                                  New York
## 800                                                                  New York
## 801                                                                  New York
## 802                                                  Potsdam         New York
## 803                                                    Bronx         New York
## 804                                                                  New York
## 805                                                                  New York
## 806                                                                  New York
## 807                                                                  New York
## 808                                                                  New York
## 809                                                                  New York
## 810                                                                  New York
## 811                                                                  New York
## 812                                                                  New York
## 813                                                                  New York
## 814                                                                  New York
## 815                                                                  New York
## 816                                                                  New York
## 817                                                                  New York
## 818                                              Cooperstown         New York
## 819                                                  Buffalo         New York
## 820                                                                  New York
## 821                                                                  New York
## 822                                            New Hyde Park         New York
## 823                                                                  New York
## 824                                            New Hyde Park         New York
## 825                                                                  New York
## 826                                                                  New York
## 827                                                                  New York
## 828                                                                  New York
## 829                                                                  New York
## 830                                                                  New York
## 831                                                                  New York
## 832                                                  Livonia         New York
## 833                                                    Bronx         New York
## 834                                                                  New York
## 835                                                                  New York
## 836                                                                  New York
## 837                                            New Hyde Park         New York
## 838                                                                  New York
## 839                                                                  New York
## 840                                                                  New York
## 841                                                                  New York
## 842                                                                  New York
## 843                                              Cooperstown         New York
## 844                                                                  New York
## 845                                                Rochester         New York
## 846                                                                  New York
## 847                                                                  New York
## 848                                              Cooperstown         New York
## 849                                                                  New York
## 850                                                                  New York
## 851                                                                  New York
## 852                                                                  New York
## 853                                                   Albany         New York
## 854                                                                  New York
## 855                                                                  New York
## 856                                           Port Jefferson         New York
## 857                                                                  New York
## 858                                                                  New York
## 859                                                    Utica         New York
## 860                                                                  New York
## 861                                                                  New York
## 862                                                    Bronx         New York
## 863                                                                  New York
## 864                                                                  New York
## 865                                                                  New York
## 866                                                                  New York
## 867                                                                  New York
## 868                                                                  New York
## 869                                                                  New York
## 870                                                                  New York
## 871                                                                  New York
## 872                                                                  New York
## 873                                                                  New York
## 874                                                                  New York
## 875                                                                  New York
## 876                                                                  New York
## 877                                                                  New York
## 878                                                                  New York
## 879                                                   Albany         New York
## 880                                                                  New York
## 881                                                                  New York
## 882                                                                  New York
## 883                                                     Erie         New York
## 884                                                    Bronx         New York
## 885                                                                  New York
## 886                                                                  New York
## 887  Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 888                                                                  New York
## 889                                                   Albany         New York
## 890                                                                  New York
## 891                                                                  New York
## 892                                                                  New York
## 893                         125 Worth Street        New York         New York
## 894                                                  Buffalo         New York
## 895                                                 Melville         New York
## 896                                                                  New York
## 897                                                                  New York
## 898                                                                  New York
## 899                                            New Hyde Park         New York
## 900                                                                  New York
## 901                                                                  New York
## 902                                                                  New York
## 903                                                                  New York
## 904                                                  Buffalo         New York
## 905                                                                  New York
## 906                                                                  New York
## 907                                                                  New York
## 908                                                                  New York
## 909                                            New Hyde Park         New York
## 910                                                                  New York
## 911                                             Poughkeepsie         New York
## 912                         125 Worth Street        New York         New York
## 913                                                                  New York
## 914                                                                  New York
## 915                                                                  New York
## 916                                                                  New York
## 917                                                                  New York
## 918                                                                  New York
## 919                                              Cooperstown         New York
## 920                                                   Albany         New York
## 921                                                 New York         New York
## 922                                                                  New York
## 923                                                    Sayre         New York
## 924                                                                  New York
## 925                                                                  New York
## 926                                                                  New York
## 927                                                                  New York
## 928                                                                  New York
## 929                                                                  New York
## 930                                                                  New York
## 931                                                                  New York
## 932                                                                  New York
## 933                                              Cooperstown         New York
## 934                                                                  New York
## 935                                                  Livonia         New York
## 936                         125 Worth Street        New York         New York
## 937                                                                  New York
## 938                                                                  New York
## 939                                                                  New York
## 940                                                                  New York
## 941                                                                  New York
## 942                                                                  New York
## 943                                                   Ithaca         New York
## 944                                                                  New York
## 945                                                 New York         New York
## 946                                                                  New York
## 947                                                                  New York
## 948                                                                  New York
## 949                                                                  New York
## 950                                                                  New York
## 951                                               Burlington         New York
## 952                                                                  New York
## 953                                                   Albany         New York
## 954                                                                  New York
## 955                                                                  New York
## 956                                                                  New York
## 957                                                 Melville         New York
## 958                                                  Livonia         New York
## 959                                                                  New York
## 960                                                                  New York
## 961                                                                  New York
## 962                                                                  New York
## 963                                                                  New York
## 964                                                                  New York
## 965                                                                  New York
## 966                                                                  New York
## 967                                                    Bronx         New York
## 968                                                                  New York
## 969                                                                  New York
## 970                                                                  New York
## 971                                                                  New York
## 972                                                Rochester         New York
## 973                                                    Olean         New York
## 974                                                                  New York
## 975  Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 976                                                                  New York
## 977                                                                  New York
## 978                                                                  New York
## 979                                                                  New York
## 980                                                                  New York
## 981                                            New Hyde Park         New York
## 982                                                                  New York
## 983                                                                  New York
## 984                                                                  New York
## 985                                                                  New York
## 986                                                  Suffern         New York
## 987                                                                  New York
## 988                                                                  New York
## 989                                                                  New York
## 990                                                                  New York
## 991                                                                  New York
## 992                                                                  New York
## 993                                                                  New York
## 994                                                                  New York
## 995                                                                  New York
## 996                                                                  New York
## 997                                                    Bronx         New York
## 998                                                                  New York
## 999                                                                  New York
## 1000                                                                 New York
## 1001                                           New Hyde Park         New York
## 1002                                                                 New York
## 1003                                                                 New York
## 1004                                                                 New York
## 1005                                                                 New York
## 1006                                                                 New York
## 1007                                                                 New York
## 1008                                                                 New York
## 1009                                                                 New York
## 1010                                                   Bronx         New York
## 1011                                                                 New York
## 1012                                                                 New York
## 1013                                                                 New York
## 1014                                           New Hyde Park         New York
## 1015                                               Rochester         New York
## 1016                                                                 New York
## 1017                                                                 New York
## 1018                                           New Hyde Park         New York
## 1019                                                                 New York
## 1020                                                                 New York
## 1021                                                  Albany         New York
## 1022                                                                 New York
## 1023                                                                 New York
## 1024                                                                 New York
## 1025                                                                 New York
## 1026                                                                 New York
## 1027                                                                 New York
## 1028                                                                 New York
## 1029                                                                 New York
## 1030                                                                 New York
## 1031                                                                 New York
## 1032                                                                 New York
## 1033                                                New York         New York
## 1034                                                                 New York
## 1035                                                                 New York
## 1036                                                                 New York
## 1037                                                                 New York
## 1038                                                                 New York
## 1039                                                                 New York
## 1040                                                                 New York
## 1041                                                                 New York
## 1042                                                  Albany         New York
## 1043                                                                 New York
## 1044                                                                 New York
## 1045                                                                 New York
## 1046                                                                 New York
## 1047                                                                 New York
## 1048                                                                 New York
## 1049                                           New Hyde Park         New York
## 1050                                                                 New York
## 1051                                                                 New York
## 1052                                           Staten Island         New York
## 1053                                                                 New York
## 1054                                                                 New York
## 1055                                                                 New York
## 1056                                                                 New York
## 1057                                                                 New York
## 1058                                                                 New York
## 1059                                           LaGrangeville         New York
## 1060                                                                 New York
## 1061                                                                 New York
## 1062                                                                 New York
## 1063                                                                 New York
## 1064                                                                 New York
## 1065                                                                 New York
## 1066                                                                 New York
## 1067                                                                 New York
## 1068                                                Valhalla         New York
## 1069                                               Rochester         New York
## 1070                                                 Livonia         New York
## 1071                                                Melville         New York
## 1072                                                                 New York
## 1073                                                                 New York
## 1074                                             Cooperstown         New York
## 1075                                            Poughkeepsie         New York
## 1076                                                                 New York
## 1077                                                                 New York
## 1078                                                                 New York
## 1079                                                                 New York
## 1080                                                  Albany         New York
## 1081                                                                 New York
## 1082                                                                 New York
## 1083                                                 Livonia         New York
## 1084                                                                 New York
## 1085                                                                 New York
## 1086                                             Cooperstown         New York
## 1087                                                 Yonkers         New York
## 1088                                                                 New York
## 1089                                                                 New York
## 1090                                                                 New York
## 1091                                                                 New York
## 1092                                               Rochester         New York
## 1093                        125 Worth Street        New York         New York
## 1094                                             Cooperstown         New York
## 1095                                                                 New York
## 1096                                                                 New York
## 1097                                                                 New York
## 1098                                                                 New York
## 1099                                                                 New York
## 1100                                             Cooperstown         New York
## 1101                                                                 New York
## 1102                                           New Hyde Park         New York
## 1103                                                                 New York
## 1104                                                                 New York
## 1105                                                                 New York
## 1106                                                                 New York
## 1107                                             Cooperstown         New York
## 1108                                                                 New York
## 1109                                               Rochester         New York
## 1110                                                                 New York
## 1111                                                  Albany         New York
## 1112                                                                 New York
## 1113                                                                 New York
## 1114                                                                 New York
## 1115                                                                 New York
## 1116                                                                 New York
## 1117                                                                 New York
## 1118                                                                 New York
## 1119                                                                 New York
## 1120                                                                 New York
## 1121                        125 Worth Street        New York         New York
## 1122                                                                 New York
## 1123                                                 Livonia         New York
## 1124                                                                 New York
## 1125                                                                 New York
## 1126                                                                 New York
## 1127                                               Rochester         New York
## 1128                                                                 New York
## 1129                                                New York         New York
## 1130                                           New Hyde Park         New York
## 1131                                                New York         New York
## 1132                                                                 New York
## 1133                                                                 New York
## 1134                                                New York         New York
## 1135                                                                 New York
## 1136                                                                 New York
## 1137                                               Rochester         New York
## 1138                                                                 New York
## 1139                                               Rochester         New York
## 1140                                                New York         New York
## 1141                                                                 New York
## 1142                                           New Hyde Park         New York
## 1143                                                                 New York
## 1144                                                                 New York
## 1145                                           New Hyde Park         New York
## 1146                                           New Hyde Park         New York
## 1147                                                                 New York
## 1148                                                                 New York
## 1149                                                                 New York
## 1150                                                                 New York
## 1151                                                                 New York
## 1152                                                                 New York
## 1153                                                                 New York
## 1154                                                                 New York
## 1155                                                                 New York
## 1156                                                                 New York
## 1157                                              Burlington         New York
## 1158                                                   Olean         New York
## 1159                                               Rochester         New York
## 1160                                                Syracuse         New York
## 1161                                                                 New York
## 1162                                                                 New York
## 1163                        125 Worth Street        New York         New York
## 1164                                                                 New York
## 1165                                                                 New York
## 1166                                              Burlington         New York
## 1167                                                                 New York
## 1168                                                                 New York
## 1169                                             East Meadow         New York
## 1170                                                                 New York
## 1171                                                   Bronx         New York
## 1172                                                                 New York
## 1173                                                                 New York
## 1174                                               Rochester         New York
## 1175                                                                 New York
## 1176                                                                 New York
## 1177                                                                 New York
## 1178 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 1179                                                                 New York
## 1180                                                   Bronx         New York
## 1181                                                                 New York
## 1182                                                Melville         New York
## 1183                                               Rochester         New York
## 1184                                                                 New York
## 1185                                                                 New York
## 1186                                                                 New York
## 1187                                                                 New York
## 1188                                                                 New York
## 1189                                                                 New York
## 1190                                           New Hyde Park         New York
## 1191                                                                 New York
## 1192                                                                 New York
## 1193                                            Lake Katrine         New York
## 1194                                                                 New York
## 1195                                                                 New York
## 1196                                                                 New York
## 1197                                                                 New York
## 1198                                                                 New York
## 1199                                                                 New York
## 1200                                                                 New York
## 1201                                                                 New York
## 1202                                              Burlington         New York
## 1203                                                  Albany         New York
## 1204                                                                 New York
## 1205                                                                 New York
## 1206                                                                 New York
## 1207                                                                 New York
## 1208                                                                 New York
## 1209                                                                 New York
## 1210                                                                 New York
## 1211                                                                 New York
## 1212                                                                 New York
## 1213                                                                 New York
## 1214                                                                 New York
## 1215                                                                 New York
## 1216                                                                 New York
## 1217                                                                 New York
## 1218                                                                 New York
## 1219                                                                 New York
## 1220                                                                 New York
## 1221 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 1222                                                                 New York
## 1223                                           New Hyde Park         New York
## 1224                                                                 New York
## 1225                                                                 New York
## 1226                                                                 New York
## 1227                                                New York         New York
## 1228                                                                 New York
## 1229                                                                 New York
## 1230                                                                 New York
## 1231                                               Rochester         New York
## 1232                                                                 New York
## 1233                                                                 New York
## 1234                                                                 New York
## 1235                                                                 New York
## 1236                                                                 New York
## 1237                                                New York         New York
## 1238                                                                 New York
## 1239                                                                 New York
## 1240                                                                 New York
## 1241                                                                 New York
## 1242                                                                 New York
## 1243                                                                 New York
## 1244                                               Rochester         New York
## 1245                                                                 New York
## 1246                                                  Albany         New York
## 1247                                                                 New York
## 1248                                               Rochester         New York
## 1249                                                                 New York
## 1250                                                                 New York
## 1251                                                                 New York
## 1252                                                                 New York
## 1253                                                                 New York
## 1254                                                                 New York
## 1255                                                  Elmira         New York
## 1256                                             Cooperstown         New York
## 1257                                                                 New York
## 1258                                                                 New York
## 1259                                                                 New York
## 1260                                                                 New York
## 1261                                           New Hyde Park         New York
## 1262                                                   Bronx         New York
## 1263                                           New Hyde Park         New York
## 1264                                            Lake Katrine         New York
## 1265                                                                 New York
## 1266                                                                 New York
## 1267                                                                 New York
## 1268                                                                 New York
## 1269                                                                 New York
## 1270                                                                 New York
## 1271                                                                 New York
## 1272                                                                 New York
## 1273                                                 Potsdam         New York
## 1274                                                                 New York
## 1275                                                                 New York
## 1276                                                                 New York
## 1277                                                                 New York
## 1278                                               Rochester         New York
## 1279                                                  Carmel         New York
## 1280                                                   Utica         New York
## 1281                                                                 New York
## 1282                                                                 New York
## 1283                                                Valhalla         New York
## 1284                                                                 New York
## 1285                                                                 New York
## 1286                                                                 New York
## 1287                                                                 New York
## 1288                                                   Utica         New York
## 1289                                                                 New York
## 1290                                                                 New York
## 1291                                                                 New York
## 1292                                                                 New York
## 1293                                                                 New York
## 1294                                                                 New York
## 1295                                                                 New York
## 1296                                                                 New York
## 1297                                                                 New York
## 1298                                                                 New York
## 1299                                                                 New York
## 1300                                                                 New York
## 1301                                                 Yonkers         New York
## 1302                                                                 New York
## 1303                                                                 New York
## 1304                                                                 New York
## 1305                                                                 New York
## 1306                                                                 New York
## 1307                                                  Albany         New York
## 1308                                                                 New York
## 1309                                                                 New York
## 1310                                           New Hyde Park         New York
## 1311                                                                 New York
## 1312                                                                 New York
## 1313                                                                 New York
## 1314                                                 Livonia         New York
## 1315                                                                 New York
## 1316                                                                 New York
## 1317                                                                 New York
## 1318                                                                 New York
## 1319                                                                 New York
## 1320                                                                 New York
## 1321                                           New Hyde Park         New York
## 1322                                                                 New York
## 1323                                                                 New York
## 1324                                                                 New York
## 1325                                                                 New York
## 1326                                                   Bronx         New York
## 1327                                                                 New York
## 1328 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 1329                                                                 New York
## 1330                                                 Buffalo         New York
## 1331                                                                 New York
## 1332                                                                 New York
## 1333                                                                 New York
## 1334                                                   Bronx         New York
## 1335                                                                 New York
## 1336                        125 Worth Street        New York         New York
## 1337                                               Rochester         New York
## 1338                                                                 New York
## 1339                                               Rochester         New York
## 1340                                                                 New York
## 1341                                                                 New York
## 1342                                                                 New York
## 1343                                           New Hyde Park         New York
## 1344                                                  Albany         New York
## 1345                                                                 New York
## 1346                                                 Warwick         New York
## 1347                                              Burlington         New York
## 1348                                                                 New York
## 1349                                                                 New York
## 1350                                                                 New York
## 1351                                                                 New York
## 1352                                                                 New York
## 1353                                                                 New York
## 1354                                                                 New York
## 1355                                                                 New York
## 1356                                                                 New York
## 1357                                                                 New York
## 1358                                                   Utica         New York
## 1359                                                                 New York
## 1360                        125 Worth Street        New York         New York
## 1361                                                                 New York
## 1362                                                                 New York
## 1363                                                                 New York
## 1364                                                                 New York
## 1365                                                                 New York
## 1366                                                                 New York
## 1367                                                                 New York
## 1368                                                                 New York
## 1369                                                                 New York
## 1370                                           New Hyde Park         New York
## 1371                                                                 New York
## 1372                                             Cooperstown         New York
## 1373                                                 Livonia         New York
## 1374                                                                 New York
## 1375                                                                 New York
## 1376                                                                 New York
## 1377                                                                 New York
## 1378                                                                 New York
## 1379                                                                 New York
## 1380                                                                 New York
## 1381                                                                 New York
## 1382                                                New York         New York
## 1383                                           New Hyde Park         New York
## 1384                                                                 New York
## 1385                                                                 New York
## 1386                                                New York         New York
## 1387                                           New Hyde Park         New York
## 1388                                             East Meadow         New York
## 1389                                                                 New York
## 1390                                                  Albany         New York
## 1391                                                  Albany         New York
## 1392                                           New Hyde Park         New York
## 1393                                                                 New York
## 1394                                                                 New York
## 1395                                                                 New York
## 1396                                                                 New York
## 1397                                                                 New York
## 1398                                               Rochester         New York
## 1399                                                                 New York
## 1400                                                                 New York
## 1401                                                                 New York
## 1402                                                  Albany         New York
## 1403                                             Cooperstown         New York
## 1404                                                   Bronx         New York
## 1405                                                                 New York
## 1406                                                  Albany         New York
## 1407                                           New Hyde Park         New York
## 1408                                             Cooperstown         New York
## 1409                                                                 New York
## 1410                                                 Livonia         New York
## 1411                                                                 New York
## 1412                                                  Albany         New York
## 1413                                                                 New York
## 1414                                                   Bronx         New York
## 1415                                                                 New York
## 1416                                                                 New York
## 1417                                                                 New York
## 1418                                                New York         New York
## 1419                                                   Bronx         New York
## 1420                                                                 New York
## 1421                                                  Albany         New York
## 1422                                                                 New York
## 1423                                                   Utica         New York
## 1424                                                                 New York
## 1425                                                                 New York
## 1426                                                                 New York
## 1427                                                                 New York
## 1428                                                                 New York
## 1429                                           LaGrangeville         New York
## 1430                                                                 New York
## 1431                                                                 New York
## 1432                                               Rochester         New York
## 1433                                                                 New York
## 1434                                                   Bronx         New York
## 1435                                                                 New York
## 1436                                                                 New York
## 1437                                                                 New York
## 1438                                                   Bronx         New York
## 1439                                                                 New York
## 1440                                               Rochester         New York
## 1441                                           New Hyde Park         New York
## 1442                                                                 New York
## 1443                                                                 New York
## 1444                                                                 New York
## 1445                                                                 New York
## 1446                                                                 New York
## 1447                                                  Albany         New York
## 1448                                                                 New York
## 1449                                                                 New York
## 1450                                                                 New York
## 1451                        125 Worth Street        New York         New York
## 1452                                                                 New York
## 1453                                                   Bronx         New York
## 1454                                                                 New York
## 1455                                                                 New York
## 1456                                               Rochester         New York
## 1457                                                 Livonia         New York
## 1458                                                                 New York
## 1459                                                                 New York
## 1460                                                                 New York
## 1461                                                                 New York
## 1462                                           New Hyde Park         New York
## 1463                                                  Elmira         New York
## 1464                                                                 New York
## 1465                                                                 New York
## 1466                                                                 New York
## 1467                                                 Buffalo         New York
## 1468                                                                 New York
## 1469                                                                 New York
## 1470                                                                 New York
## 1471                                                                 New York
## 1472                                                 Livonia         New York
## 1473                                                                 New York
## 1474                                                                 New York
## 1475                                                                 New York
## 1476                                                                 New York
## 1477                                                                 New York
## 1478                                                                 New York
## 1479                                                New York         New York
## 1480                                           New Hyde Park         New York
## 1481                                                                 New York
## 1482                                                                 New York
## 1483                                                                 New York
## 1484                                                                 New York
## 1485                                                                 New York
## 1486                                                                 New York
## 1487                                                                 New York
## 1488                                                                 New York
## 1489                                                                 New York
## 1490                                                                 New York
## 1491                                                                 New York
## 1492                                           New Hyde Park         New York
## 1493                                                                 New York
## 1494                                                                 New York
## 1495                                                                 New York
## 1496                                                                 New York
## 1497                                                                 New York
## 1498                                                                 New York
## 1499                                                                 New York
## 1500                                                                 New York
## 1501                                                                 New York
## 1502                                                   Bronx         New York
## 1503                                                                 New York
## 1504                                                                 New York
## 1505                                           LaGrangeville         New York
## 1506                                                                 New York
## 1507                                                                 New York
## 1508                                                                 New York
## 1509                                                                 New York
## 1510                                                                 New York
## 1511                                               Rochester         New York
## 1512                                                                 New York
## 1513                                                                 New York
## 1514                                                                 New York
## 1515                                                                 New York
## 1516                                                   Bronx         New York
## 1517                                                                 New York
## 1518                                                                 New York
## 1519                                                                 New York
## 1520                                                                 New York
## 1521                                                                 New York
## 1522                                                                 New York
## 1523                                                                 New York
## 1524                                               Rochester         New York
## 1525                                                                 New York
## 1526                                            Poughkeepsie         New York
## 1527                                                   Bronx         New York
## 1528                                                                 New York
## 1529                                                                 New York
## 1530                                                                 New York
## 1531                                                                 New York
## 1532                                                                 New York
## 1533                                                                 New York
## 1534                                                   Bronx         New York
## 1535                                                                 New York
## 1536                                           New Hyde Park         New York
## 1537                                                                 New York
## 1538                                               Rochester         New York
## 1539                                                                 New York
## 1540                                               Rochester         New York
## 1541                                                                 New York
## 1542                                                  Albany         New York
## 1543                                                                 New York
## 1544                                                                 New York
## 1545                                                                 New York
## 1546                                                                 New York
## 1547                                                                 New York
## 1548                                                                 New York
## 1549                                                                 New York
## 1550                                                                 New York
## 1551                                           New Hyde Park         New York
## 1552                                                                 New York
## 1553                                              Burlington         New York
## 1554                                                                 New York
## 1555                                                                 New York
## 1556                                                                 New York
## 1557                                                                 New York
## 1558                                                                 New York
## 1559                                                 Yonkers         New York
## 1560                                                New York         New York
## 1561                                                                 New York
## 1562                                                                 New York
## 1563                                                                 New York
## 1564                                                                 New York
## 1565                                                                 New York
## 1566                                                                 New York
## 1567                                                New York         New York
## 1568                                                                 New York
## 1569                                                                 New York
## 1570                                             Cooperstown         New York
## 1571                                               Rochester         New York
## 1572                                                                 New York
## 1573                                                                 New York
## 1574                                                                 New York
## 1575                                                   Bronx         New York
## 1576                                                                 New York
## 1577                                                Melville         New York
## 1578                                                                 New York
## 1579                                                                 New York
## 1580                                                                 New York
## 1581                                               Rochester         New York
## 1582                                                                 New York
## 1583                                           New Hyde Park         New York
## 1584                                                                 New York
## 1585                                               Rochester         New York
## 1586                                                                 New York
## 1587                                                                 New York
## 1588                                                                 New York
## 1589                                                                 New York
## 1590                                                                 New York
## 1591                                                                 New York
## 1592                                                                 New York
## 1593                                                                 New York
## 1594                                                                 New York
## 1595                                                 Livonia         New York
## 1596                                                                 New York
## 1597                                          Port Jefferson         New York
## 1598                                                                 New York
## 1599                                                                 New York
## 1600                                                                 New York
## 1601                                                   Bronx         New York
## 1602                                                  Albany         New York
## 1603                                                                 New York
## 1604                                                                 New York
## 1605                                                  Albany         New York
## 1606                                                                 New York
## 1607                                           New Hyde Park         New York
## 1608                                                                 New York
## 1609 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 1610                                                                 New York
## 1611                                                                 New York
## 1612                                                                 New York
## 1613                                                                 New York
## 1614                                                                 New York
## 1615                                                                 New York
## 1616                                                New York         New York
## 1617                                                  Albany         New York
## 1618                                                                 New York
## 1619                                                                 New York
## 1620                                                                 New York
## 1621                                                                 New York
## 1622                                                                 New York
## 1623                                                                 New York
## 1624                                                                 New York
## 1625                                                                 New York
## 1626                                            Lake Katrine         New York
## 1627                                                                 New York
## 1628                                                   Bronx         New York
## 1629                                                                 New York
## 1630                                                                 New York
## 1631                                                                 New York
## 1632                                                                 New York
## 1633                                                                 New York
## 1634                                                                 New York
## 1635                                                                 New York
## 1636                                                                 New York
## 1637                                                                 New York
## 1638                                                                 New York
## 1639                                              Burlington         New York
## 1640                                           New Hyde Park         New York
## 1641                                                                 New York
## 1642                                                                 New York
## 1643                                               Rochester         New York
## 1644                                                                 New York
## 1645                                                                 New York
## 1646                                                                 New York
## 1647                                                                 New York
## 1648                                                                 New York
## 1649                        125 Worth Street        New York         New York
## 1650                                                                 New York
## 1651                                                                 New York
## 1652                                                                 New York
## 1653                                                  Goshen         New York
## 1654                                                                 New York
## 1655                                                New York         New York
## 1656                                                                 New York
## 1657                                                   Utica         New York
## 1658                                                                 New York
## 1659                                           New Hyde Park         New York
## 1660                                                                 New York
## 1661                                                                 New York
## 1662                                                  Albany         New York
## 1663                                              Burlington         New York
## 1664                                                                 New York
## 1665                                                                 New York
## 1666                                                                 New York
## 1667                                                                 New York
## 1668                                                 Buffalo         New York
## 1669                                                                 New York
## 1670                                                                 New York
## 1671                                                                 New York
## 1672                                                 Livonia         New York
## 1673                                                   Utica         New York
## 1674                                                                 New York
## 1675                                                                 New York
## 1676                                                                 New York
## 1677                                                                 New York
## 1678                                                                 New York
## 1679                                             Cooperstown         New York
## 1680                                                                 New York
## 1681                                             Cooperstown         New York
## 1682                                                                 New York
## 1683                                                                 New York
## 1684                                                                 New York
## 1685                                                                 New York
## 1686                                               Rochester         New York
## 1687                                          Port Jefferson         New York
## 1688                                                                 New York
## 1689                                               Rochester         New York
## 1690                                                 Buffalo         New York
## 1691                                                                 New York
## 1692                                                                 New York
## 1693                                                                 New York
## 1694                                                                 New York
## 1695                                                                 New York
## 1696                                                   Utica         New York
## 1697                                                                 New York
## 1698                                                                 New York
## 1699                                                                 New York
## 1700                                                                 New York
## 1701                                                                 New York
## 1702                                                                 New York
## 1703                                                                 New York
## 1704                                                                 New York
## 1705                                                 Potsdam         New York
## 1706                                                                 New York
## 1707                                                                 New York
## 1708                                                                 New York
## 1709                                                                 New York
## 1710                                                                 New York
## 1711                                                                 New York
## 1712                                                  Albany         New York
## 1713                                                 Livonia         New York
## 1714                                                                 New York
## 1715                                                                 New York
## 1716                                                                 New York
## 1717                                                                 New York
## 1718                                                                 New York
## 1719                                                                 New York
## 1720                                                                 New York
## 1721                                                                 New York
## 1722                                                 Potsdam         New York
## 1723                                                                 New York
## 1724                        125 Worth Street        New York         New York
## 1725                                                                 New York
## 1726                                                                 New York
## 1727                                             Cooperstown         New York
## 1728                                                                 New York
## 1729                                                  Ithaca         New York
## 1730                                                Melville         New York
## 1731                                                                 New York
## 1732                                                                 New York
## 1733                                                   Bronx         New York
## 1734                                                                 New York
## 1735                                                                 New York
## 1736                                                                 New York
## 1737                                                                 New York
## 1738                                                   Bronx         New York
## 1739                                                                 New York
## 1740                                                                 New York
## 1741                                                                 New York
## 1742                                                                 New York
## 1743                                                                 New York
## 1744                                                                 New York
## 1745                                                                 New York
## 1746                                           New Hyde Park         New York
## 1747                                                                 New York
## 1748                                                                 New York
## 1749                                                                 New York
## 1750                                                                 New York
## 1751                                               Rochester         New York
## 1752                                                                 New York
## 1753                                                                 New York
## 1754                                                Valhalla         New York
## 1755                                                                 New York
## 1756                                                                 New York
## 1757                                           New Hyde Park         New York
## 1758                                                                 New York
## 1759                                                                 New York
## 1760                                                 Livonia         New York
## 1761                                                   Bronx         New York
## 1762 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 1763                                                   Bronx         New York
## 1764                                                                 New York
## 1765                                                                 New York
## 1766                                                                 New York
## 1767                                                   Bronx         New York
## 1768                                                 Buffalo         New York
## 1769                                             Cooperstown         New York
## 1770                                                New York         New York
## 1771                                                  Elmira         New York
## 1772                                                                 New York
## 1773                                                                 New York
## 1774                                             Cooperstown         New York
## 1775                                                                 New York
## 1776                                                                 New York
## 1777                                                                 New York
## 1778                                                                 New York
## 1779                                                                 New York
## 1780                                               Rochester         New York
## 1781                                                                 New York
## 1782                                                                 New York
## 1783                                                                 New York
## 1784                                                                 New York
## 1785                        125 Worth Street        New York         New York
## 1786                                                                 New York
## 1787                                                                 New York
## 1788                                                                 New York
## 1789                                                                 New York
## 1790                                                                 New York
## 1791                                                 Livonia         New York
## 1792                                                New York         New York
## 1793                                           New Hyde Park         New York
## 1794                                                                 New York
## 1795                                           New Hyde Park         New York
## 1796                                                                 New York
## 1797                                                                 New York
## 1798                                                                 New York
## 1799                                                Valhalla         New York
## 1800                                                                 New York
## 1801                                                                 New York
## 1802                                                                 New York
## 1803                                                                 New York
## 1804                                                 Livonia         New York
## 1805                                               Rochester         New York
## 1806                                                                 New York
## 1807                                           New Hyde Park         New York
## 1808                                                                 New York
## 1809                                                                 New York
## 1810                                                                 New York
## 1811                                                                 New York
## 1812                                                                 New York
## 1813                                                  Albany         New York
## 1814                                                                 New York
## 1815                                                                 New York
## 1816                                                                 New York
## 1817                                                                 New York
## 1818                                                                 New York
## 1819                                                                 New York
## 1820                                                                 New York
## 1821                                           New Hyde Park         New York
## 1822                                                                 New York
## 1823                                                                 New York
## 1824                                                                 New York
## 1825                                                                 New York
## 1826                                                                 New York
## 1827                                                                 New York
## 1828                                                                 New York
## 1829                                                 Livonia         New York
## 1830                                                                 New York
## 1831                                                                 New York
## 1832                                                                 New York
## 1833                                                New York         New York
## 1834                                                                 New York
## 1835                                                  Albany         New York
## 1836                                                  Carmel         New York
## 1837                                                                 New York
## 1838                                                                 New York
## 1839                                                                 New York
## 1840                                                New York         New York
## 1841                                                                 New York
## 1842                                                                 New York
## 1843                                           New Hyde Park         New York
## 1844                                                                 New York
## 1845                                                                 New York
## 1846                                              Burlington         New York
## 1847                                                                 New York
## 1848                                                 Livonia         New York
## 1849                                                                 New York
## 1850                                                 Livonia         New York
## 1851                                                                 New York
## 1852                                                                 New York
## 1853                                                                 New York
## 1854                                            Lake Katrine         New York
## 1855                                                                 New York
## 1856                                                                 New York
## 1857                                                Valhalla         New York
## 1858                                                                 New York
## 1859                                                   Bronx         New York
## 1860                                                                 New York
## 1861                                                New York         New York
## 1862                                                                 New York
## 1863                                                                 New York
## 1864                                                                 New York
## 1865                                                                 New York
## 1866                                                                 New York
## 1867                                                                 New York
## 1868                                                                 New York
## 1869                                                                 New York
## 1870                                                                 New York
## 1871                                                                 New York
## 1872                                               Rochester         New York
## 1873                                                 Livonia         New York
## 1874                                                                 New York
## 1875                                                                 New York
## 1876                                                                 New York
## 1877                                                                 New York
## 1878                                                                 New York
## 1879                                                                 New York
## 1880                                                                 New York
## 1881                                                 Buffalo         New York
## 1882                                                 Livonia         New York
## 1883                                                                 New York
## 1884                                                                 New York
## 1885                                                 Potsdam         New York
## 1886                                                                 New York
## 1887                                                                 New York
## 1888                                                                 New York
## 1889                                                                 New York
## 1890                                                                 New York
## 1891                                                                 New York
## 1892                                                                 New York
## 1893                                                                 New York
## 1894                                                                 New York
## 1895                                                                 New York
## 1896                                                  Albany         New York
## 1897                                                                 New York
## 1898                                                                 New York
## 1899                                                                 New York
## 1900                                                                 New York
## 1901                                                                 New York
## 1902                                                                 New York
## 1903                                                                 New York
## 1904                                                                 New York
## 1905                                             Cooperstown         New York
## 1906                                                                 New York
## 1907                                                                 New York
## 1908                                                                 New York
## 1909                                                New York         New York
## 1910                                                                 New York
## 1911                                                                 New York
## 1912                                                                 New York
## 1913                                                                 New York
## 1914                                                                 New York
## 1915                                                 Potsdam         New York
## 1916                                                                 New York
## 1917                                                  Albany         New York
## 1918                                                   Bronx         New York
## 1919                                                  Albany         New York
## 1920                                                                 New York
## 1921                                          Port Jefferson         New York
## 1922                                                                 New York
## 1923                                                                 New York
## 1924                                                                 New York
## 1925                                                                 New York
## 1926                                                                 New York
## 1927                                                 Buffalo         New York
## 1928                                                 Suffern         New York
## 1929                                                                 New York
## 1930                                                                 New York
## 1931                                                                 New York
## 1932                                                                 New York
## 1933                                                                 New York
## 1934                                                                 New York
## 1935                                                                 New York
## 1936                                                                 New York
## 1937                                                                 New York
## 1938                                                                 New York
## 1939                                                                 New York
## 1940                                                                 New York
## 1941                                                                 New York
## 1942                                             Cooperstown         New York
## 1943                                                                 New York
## 1944                                                                 New York
## 1945                                                                 New York
## 1946                                                                 New York
## 1947                                           New Hyde Park         New York
## 1948                                                                 New York
## 1949                                                 Buffalo         New York
## 1950                                                                 New York
## 1951                                                  Albany         New York
## 1952                                                                 New York
## 1953                                                 Buffalo         New York
## 1954                                                                 New York
## 1955                                                                 New York
## 1956                                                                 New York
## 1957                                                 Buffalo         New York
## 1958                                             East Meadow         New York
## 1959                                                  Elmira         New York
## 1960                                                                 New York
## 1961                                                                 New York
## 1962                                                                 New York
## 1963                                                                 New York
## 1964                                                                 New York
## 1965                                                                 New York
## 1966                                                 Buffalo         New York
## 1967                                                                 New York
## 1968                                                                 New York
## 1969                                                                 New York
## 1970                                                                 New York
## 1971                                                                 New York
## 1972                                                                 New York
## 1973                                                                 New York
## 1974                                                                 New York
## 1975                                                                 New York
## 1976                                                  Albany         New York
## 1977                                                                 New York
## 1978                                                                 New York
## 1979                                                 Livonia         New York
## 1980                                                  Albany         New York
## 1981                                                                 New York
## 1982                                                                 New York
## 1983                                                                 New York
## 1984                                                                 New York
## 1985                                                  Elmira         New York
## 1986                                                                 New York
## 1987                                                   Bronx         New York
## 1988                                                 Suffern         New York
## 1989                                                                 New York
## 1990                                                                 New York
## 1991                                                                 New York
## 1992                                                                 New York
## 1993                                                                 New York
## 1994                                                                 New York
## 1995                                                   Bronx         New York
## 1996                                                                 New York
## 1997                                                  Albany         New York
## 1998                                                                 New York
## 1999                                                   Bronx         New York
## 2000                                                                 New York
## 2001                                                                 New York
## 2002                                                                 New York
## 2003                                                                 New York
## 2004                                                                 New York
## 2005                                                                 New York
## 2006                                                                 New York
## 2007                                                                 New York
## 2008                                                                 New York
## 2009                                                                 New York
## 2010                                                                 New York
## 2011                                                                 New York
## 2012                                                                 New York
## 2013 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2014                                            Poughkeepsie         New York
## 2015                                                                 New York
## 2016                                                                 New York
## 2017                                                                 New York
## 2018                                                 Livonia         New York
## 2019                                                                 New York
## 2020                                                New York         New York
## 2021                                                                 New York
## 2022                                           Staten Island         New York
## 2023                                                                 New York
## 2024                                                                 New York
## 2025                                                                 New York
## 2026                                                                 New York
## 2027                                                                 New York
## 2028                                                                 New York
## 2029                                                                 New York
## 2030                                                                 New York
## 2031                                                                 New York
## 2032                                                New York         New York
## 2033                                               Rochester         New York
## 2034                                                                 New York
## 2035                                                                 New York
## 2036                                                                 New York
## 2037                                                                 New York
## 2038                                                                 New York
## 2039                                                                 New York
## 2040                                                                 New York
## 2041                                           New Hyde Park         New York
## 2042                                                                 New York
## 2043                                           New Hyde Park         New York
## 2044                                                                 New York
## 2045                                                                 New York
## 2046                                                                 New York
## 2047                                                                 New York
## 2048                                                                 New York
## 2049                                                Valhalla         New York
## 2050                                                                 New York
## 2051                                                  Albany         New York
## 2052                                                                 New York
## 2053                                                                 New York
## 2054                                           New Hyde Park         New York
## 2055                                                 Livonia         New York
## 2056                                               Rochester         New York
## 2057                                                                 New York
## 2058                                                   Sayre         New York
## 2059                        125 Worth Street        New York         New York
## 2060                                                                 New York
## 2061                                                                 New York
## 2062                                                                 New York
## 2063                                                                 New York
## 2064                                           New Hyde Park         New York
## 2065                                                                 New York
## 2066                                                 Buffalo         New York
## 2067                                                                 New York
## 2068                                                                 New York
## 2069                                                                 New York
## 2070                                                                 New York
## 2071                                                New York         New York
## 2072                                                                 New York
## 2073                                                                 New York
## 2074                                                                 New York
## 2075                                                                 New York
## 2076                                           New Hyde Park         New York
## 2077                                                                 New York
## 2078                                               Rochester         New York
## 2079                                               Rochester         New York
## 2080                                                                 New York
## 2081                                                                 New York
## 2082                                                New York         New York
## 2083                                                                 New York
## 2084                                                                 New York
## 2085                                                                 New York
## 2086                                                   Olean         New York
## 2087                                                                 New York
## 2088                                                                 New York
## 2089                                                                 New York
## 2090                                                                 New York
## 2091                                                                 New York
## 2092                                                                 New York
## 2093                                                                 New York
## 2094                                                                 New York
## 2095                                                                 New York
## 2096                                                                 New York
## 2097                                                                 New York
## 2098                                                                 New York
## 2099                                               Rochester         New York
## 2100                                             Cooperstown         New York
## 2101                                                                 New York
## 2102                                                                 New York
## 2103                                                                 New York
## 2104                                             Cooperstown         New York
## 2105                                               Rochester         New York
## 2106                                                                 New York
## 2107                                                                 New York
## 2108                                                                 New York
## 2109                                                 Potsdam         New York
## 2110                                                   Bronx         New York
## 2111                                                                 New York
## 2112                                                                 New York
## 2113                                                                 New York
## 2114                                                                 New York
## 2115                                                                 New York
## 2116                                                                 New York
## 2117                                                                 New York
## 2118                                                                 New York
## 2119                                                                 New York
## 2120                                                                 New York
## 2121                        125 Worth Street        New York         New York
## 2122                                                                 New York
## 2123                                                  Albany         New York
## 2124                                                                 New York
## 2125                        125 Worth Street        New York         New York
## 2126                                                                 New York
## 2127                                          Port Jefferson         New York
## 2128                                                                 New York
## 2129                                                                 New York
## 2130                                                   Bronx         New York
## 2131                                                                 New York
## 2132                        125 Worth Street        New York         New York
## 2133                                                                 New York
## 2134                                                                 New York
## 2135                                                Valhalla         New York
## 2136                                                                 New York
## 2137                                             East Meadow         New York
## 2138                                                                 New York
## 2139                                                 Buffalo         New York
## 2140                                                                 New York
## 2141                                                                 New York
## 2142                                                 Livonia         New York
## 2143                                                                 New York
## 2144                                             Cooperstown         New York
## 2145                                                                 New York
## 2146                                                                 New York
## 2147                                                                 New York
## 2148                                                                 New York
## 2149                                                                 New York
## 2150                                                                 New York
## 2151                                                                 New York
## 2152                                                                 New York
## 2153                                                                 New York
## 2154                                                                 New York
## 2155                                                   Olean         New York
## 2156                                                                 New York
## 2157                                            Poughkeepsie         New York
## 2158 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2159                                                                 New York
## 2160                                                   Utica         New York
## 2161                                                                 New York
## 2162                                           New Hyde Park         New York
## 2163                                                 Buffalo         New York
## 2164                                                                 New York
## 2165 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2166                                                                 New York
## 2167                                                                 New York
## 2168                                                                 New York
## 2169                                                                 New York
## 2170                                                                 New York
## 2171                                                  Albany         New York
## 2172                        125 Worth Street        New York         New York
## 2173                                                                 New York
## 2174                                                                 New York
## 2175                                                                 New York
## 2176                                                                 New York
## 2177                                             Cooperstown         New York
## 2178                                           New Hyde Park         New York
## 2179                                                   Bronx         New York
## 2180                                                                 New York
## 2181                                                                 New York
## 2182                                                                 New York
## 2183                                                                 New York
## 2184                        125 Worth Street        New York         New York
## 2185                                                                 New York
## 2186                                                                 New York
## 2187                                                                 New York
## 2188                                                                 New York
## 2189                                                                 New York
## 2190                                               Rochester         New York
## 2191                                                                 New York
## 2192                                                                 New York
## 2193                                                                 New York
## 2194                                               Rochester         New York
## 2195                                                                 New York
## 2196                                                                 New York
## 2197                                                                 New York
## 2198                                                                 New York
## 2199                                                New York         New York
## 2200                                             Cooperstown         New York
## 2201                        125 Worth Street        New York         New York
## 2202                                                                 New York
## 2203                                                                 New York
## 2204                                                                 New York
## 2205                                                                 New York
## 2206                                                Valhalla         New York
## 2207                                                                 New York
## 2208                                                                 New York
## 2209                                                New York         New York
## 2210                                                                 New York
## 2211                                                                 New York
## 2212                                               Rochester         New York
## 2213                                                                 New York
## 2214                                                                 New York
## 2215                                                                 New York
## 2216                                                                 New York
## 2217                                                                 New York
## 2218                                                   Utica         New York
## 2219                                                                 New York
## 2220                                               Rochester         New York
## 2221                                                                 New York
## 2222                                                                 New York
## 2223                                                                 New York
## 2224                                                                 New York
## 2225                                                                 New York
## 2226                                                                 New York
## 2227                                                                 New York
## 2228                                                                 New York
## 2229                                                                 New York
## 2230                                                                 New York
## 2231                                                                 New York
## 2232                                                                 New York
## 2233                                                                 New York
## 2234                                                                 New York
## 2235                                                                 New York
## 2236                                                New York         New York
## 2237                                                                 New York
## 2238                                                                 New York
## 2239                                                  Albany         New York
## 2240                                                                 New York
## 2241                                                                 New York
## 2242                                                 Suffern         New York
## 2243                                                                 New York
## 2244                                                                 New York
## 2245                                                                 New York
## 2246                                                                 New York
## 2247                                                                 New York
## 2248                                                                 New York
## 2249                                                                 New York
## 2250                                                                 New York
## 2251                                                                 New York
## 2252                                                                 New York
## 2253                                                                 New York
## 2254                                                  Goshen         New York
## 2255                                                                 New York
## 2256                                                                 New York
## 2257                                                                 New York
## 2258                                           New Hyde Park         New York
## 2259                                                                 New York
## 2260                                                                 New York
## 2261                                                                 New York
## 2262                                             Cooperstown         New York
## 2263                                               Rochester         New York
## 2264                                                                 New York
## 2265                                                                 New York
## 2266                                                                 New York
## 2267                                                                 New York
## 2268                                                                 New York
## 2269                                                                 New York
## 2270                                                   Bronx         New York
## 2271                                                                 New York
## 2272                                                                 New York
## 2273                                                                 New York
## 2274                                            Lake Katrine         New York
## 2275                                                                 New York
## 2276                                                                 New York
## 2277                                                                 New York
## 2278                                                New York         New York
## 2279                                                                 New York
## 2280                                                                 New York
## 2281                                                                 New York
## 2282                                                                 New York
## 2283                                                                 New York
## 2284                                                                 New York
## 2285                                                   Utica         New York
## 2286                                                                 New York
## 2287                                                                 New York
## 2288                                                                 New York
## 2289                                                                 New York
## 2290                                                                 New York
## 2291                                                                 New York
## 2292                                                                 New York
## 2293                                                                 New York
## 2294                                                                 New York
## 2295                                                 Buffalo         New York
## 2296                                                                 New York
## 2297                                                                 New York
## 2298                                                                 New York
## 2299                                                                 New York
## 2300                                                                 New York
## 2301                                                                 New York
## 2302                                                                 New York
## 2303                                                                 New York
## 2304                        125 Worth Street        New York         New York
## 2305                                                                 New York
## 2306                                                                 New York
## 2307                                                                 New York
## 2308                                                                 New York
## 2309                                                 Buffalo         New York
## 2310                                                                 New York
## 2311                                                                 New York
## 2312                                                 Buffalo         New York
## 2313                                                 Buffalo         New York
## 2314                                                                 New York
## 2315                                           New Hyde Park         New York
## 2316                                                                 New York
## 2317                                                                 New York
## 2318                                                 Livonia         New York
## 2319                                                                 New York
## 2320                                                                 New York
## 2321                                                                 New York
## 2322                                              Burlington         New York
## 2323                                                                 New York
## 2324                                                                 New York
## 2325                                                                 New York
## 2326                                                                 New York
## 2327                                                                 New York
## 2328                                               Rochester         New York
## 2329                                             Cooperstown         New York
## 2330                                                                 New York
## 2331                                                                 New York
## 2332                                                                 New York
## 2333                                                                 New York
## 2334                                                                 New York
## 2335                                                                 New York
## 2336                                                                 New York
## 2337                                                                 New York
## 2338                                           New Hyde Park         New York
## 2339                                                                 New York
## 2340                                                   Olean         New York
## 2341                                                                 New York
## 2342                                                                 New York
## 2343                                                 Potsdam         New York
## 2344                                                   Bronx         New York
## 2345                                             Cooperstown         New York
## 2346                                               Rochester         New York
## 2347                                                 Suffern         New York
## 2348                                                                 New York
## 2349                                                                 New York
## 2350                                                                 New York
## 2351                                           New Hyde Park         New York
## 2352                                                                 New York
## 2353                                           New Hyde Park         New York
## 2354                                                                 New York
## 2355                                                  Albany         New York
## 2356                                           LaGrangeville         New York
## 2357                                                  Carmel         New York
## 2358                                                                 New York
## 2359                                                                 New York
## 2360                                                New York         New York
## 2361                                                                 New York
## 2362                                                                 New York
## 2363                                                 Potsdam         New York
## 2364                                                                 New York
## 2365                                               Rochester         New York
## 2366                                                                 New York
## 2367                                             East Meadow         New York
## 2368                                                                 New York
## 2369                                                                 New York
## 2370                                           New Hyde Park         New York
## 2371                                                  Goshen         New York
## 2372                                                                 New York
## 2373                                                                 New York
## 2374                                                                 New York
## 2375                        125 Worth Street        New York         New York
## 2376                                                                 New York
## 2377                                               Rochester         New York
## 2378                                               Rochester         New York
## 2379                                                                 New York
## 2380                                                                 New York
## 2381                                                                 New York
## 2382                                                                 New York
## 2383                                                                 New York
## 2384                                                                 New York
## 2385                                                                 New York
## 2386                                                                 New York
## 2387                                                                 New York
## 2388                                                                 New York
## 2389                                             Cooperstown         New York
## 2390                                                                 New York
## 2391                                                                 New York
## 2392                                                                 New York
## 2393                                                                 New York
## 2394                                                                 New York
## 2395                                                                 New York
## 2396                                                   Utica         New York
## 2397                                                                 New York
## 2398                                                 Buffalo         New York
## 2399                                                                 New York
## 2400                                                                 New York
## 2401                                                                 New York
## 2402                                                                 New York
## 2403                                                                 New York
## 2404                                                                 New York
## 2405                                               Rochester         New York
## 2406                                                                 New York
## 2407                                                                 New York
## 2408                                                                 New York
## 2409                                                   Bronx         New York
## 2410                                                                 New York
## 2411                                               Rochester         New York
## 2412                                                                 New York
## 2413                                                                 New York
## 2414                                                                 New York
## 2415                                               Rochester         New York
## 2416                                                                 New York
## 2417                                                   Utica         New York
## 2418                                                   Bronx         New York
## 2419                                                                 New York
## 2420                                                                 New York
## 2421                                                                 New York
## 2422                                                                 New York
## 2423                                                 Livonia         New York
## 2424                                               Rochester         New York
## 2425                                                                 New York
## 2426                        125 Worth Street        New York         New York
## 2427                                                                 New York
## 2428                                                                 New York
## 2429                                                                 New York
## 2430                                                                 New York
## 2431                                                   Bronx         New York
## 2432                                                                 New York
## 2433                                                                 New York
## 2434                                                                 New York
## 2435                                                                 New York
## 2436                                                                 New York
## 2437                                                                 New York
## 2438                                                                 New York
## 2439                                                                 New York
## 2440                                               Rochester         New York
## 2441                                                                 New York
## 2442                                                                 New York
## 2443                                                                 New York
## 2444                                                                 New York
## 2445                                                                 New York
## 2446                                                                 New York
## 2447                                                  Elmira         New York
## 2448                                                                 New York
## 2449                                               Rochester         New York
## 2450                                                                 New York
## 2451                                                                 New York
## 2452                                                                 New York
## 2453                                                Melville         New York
## 2454                                                  Ithaca         New York
## 2455                                                 Livonia         New York
## 2456                                                                 New York
## 2457                                                                 New York
## 2458                                                 Livonia         New York
## 2459                                                                 New York
## 2460                                                                 New York
## 2461                                                   Utica         New York
## 2462                                                                 New York
## 2463                                                                 New York
## 2464                                                                 New York
## 2465                                                                 New York
## 2466                                                                 New York
## 2467                                                                 New York
## 2468                                                                 New York
## 2469                                                                 New York
## 2470                                                 Yonkers         New York
## 2471                                                                 New York
## 2472                                                                 New York
## 2473                                                                 New York
## 2474                                                                 New York
## 2475                                                  Albany         New York
## 2476                                                                 New York
## 2477                                                 Potsdam         New York
## 2478                                                New York         New York
## 2479                                                                 New York
## 2480                                                                 New York
## 2481                                                                 New York
## 2482                                                                 New York
## 2483                                                                 New York
## 2484                                                                 New York
## 2485                                                                 New York
## 2486                                                                 New York
## 2487 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2488                                                                 New York
## 2489                                             Cooperstown         New York
## 2490                                                                 New York
## 2491                                               Rochester         New York
## 2492                                                New York         New York
## 2493                                                  Carmel         New York
## 2494                                                                 New York
## 2495                                                   Bronx         New York
## 2496                                           New Hyde Park         New York
## 2497                                                Syracuse         New York
## 2498                                                                 New York
## 2499                                                                 New York
## 2500                                                                 New York
## 2501                                                   Utica         New York
## 2502                                                                 New York
## 2503                                                Melville         New York
## 2504                                                                 New York
## 2505                                               Rochester         New York
## 2506                                                  Elmira         New York
## 2507                                                                 New York
## 2508                                           Sleepy Hollow         New York
## 2509                                                                 New York
## 2510                                                                 New York
## 2511                                                                 New York
## 2512                                                                 New York
## 2513                                                                 New York
## 2514                                               Rochester         New York
## 2515                                                                 New York
## 2516                                                                 New York
## 2517                                                                 New York
## 2518                                                                 New York
## 2519                                               Rochester         New York
## 2520                                                                 New York
## 2521                                                                 New York
## 2522                                                                 New York
## 2523                                                                 New York
## 2524                                           LaGrangeville         New York
## 2525                                           LaGrangeville         New York
## 2526                                             Cooperstown         New York
## 2527                                           New Hyde Park         New York
## 2528                                                                 New York
## 2529                                                   Sayre         New York
## 2530                                                 Potsdam         New York
## 2531                                                                 New York
## 2532                                                                 New York
## 2533                                               Rochester         New York
## 2534                                                                 New York
## 2535                                                                 New York
## 2536                                                                 New York
## 2537                                                                 New York
## 2538                                                                 New York
## 2539                                                                 New York
## 2540                        125 Worth Street        New York         New York
## 2541                                           New Hyde Park         New York
## 2542                                                                 New York
## 2543                                                                 New York
## 2544                                                                 New York
## 2545                                             Cooperstown         New York
## 2546                                                                 New York
## 2547                        125 Worth Street        New York         New York
## 2548                                                                 New York
## 2549                                                                 New York
## 2550                                                                 New York
## 2551                                                 Livonia         New York
## 2552                                                                 New York
## 2553                                                                 New York
## 2554                                                                 New York
## 2555                                                                 New York
## 2556                                                                 New York
## 2557                                                                 New York
## 2558                                                                 New York
## 2559                                                                 New York
## 2560                                                    Erie         New York
## 2561                                                                 New York
## 2562                                                New York         New York
## 2563                                                                 New York
## 2564                                                   Utica         New York
## 2565                                                                 New York
## 2566                                                                 New York
## 2567                                                  Albany         New York
## 2568                                                                 New York
## 2569                                                                 New York
## 2570                                                                 New York
## 2571 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2572                                                                 New York
## 2573                                                                 New York
## 2574                                                                 New York
## 2575                                                                 New York
## 2576                                                                 New York
## 2577                                                                 New York
## 2578                                                                 New York
## 2579                                                                 New York
## 2580                                                                 New York
## 2581                                                                 New York
## 2582                                                                 New York
## 2583                                                 Buffalo         New York
## 2584                                                                 New York
## 2585                                                                 New York
## 2586                                                                 New York
## 2587                                                                 New York
## 2588                                                   Bronx         New York
## 2589                                                 Livonia         New York
## 2590                                                                 New York
## 2591                                                   Bronx         New York
## 2592                                                                 New York
## 2593                                                 Buffalo         New York
## 2594                                                   Bronx         New York
## 2595                                                   Utica         New York
## 2596                                                                 New York
## 2597                                                                 New York
## 2598                                           Staten Island         New York
## 2599                                                                 New York
## 2600                                                 Yonkers         New York
## 2601                        125 Worth Street        New York         New York
## 2602                                           LaGrangeville         New York
## 2603                                                   Bronx         New York
## 2604                                                                 New York
## 2605                                                 Livonia         New York
## 2606                                                                 New York
## 2607                                                  Albany         New York
## 2608                                                                 New York
## 2609                                                                 New York
## 2610                                                                 New York
## 2611                                                                 New York
## 2612                                                                 New York
## 2613                                                   Bronx         New York
## 2614                                                                 New York
## 2615                                                Melville         New York
## 2616                                                                 New York
## 2617                                                                 New York
## 2618                                                                 New York
## 2619                                                                 New York
## 2620                                                                 New York
## 2621                                                                 New York
## 2622                                                                 New York
## 2623                                               Rochester         New York
## 2624                                                                 New York
## 2625 Care of Alex Rovt Chairman of the Board        Brooklyn         New York
## 2626                                                                 New York
## 2627                                                                 New York
## 2628                                                                 New York
## 2629                                                                 New York
## 2630                                                                 New York
## 2631                                                                 New York
## 2632                                                                 New York
## 2633                                                                 New York
## 2634                                                                 New York
## 2635                                                                 New York
## 2636                                                                 New York
## 2637                                                                 New York
## 2638                                                                 New York
## 2639                                                                 New York
## 2640                                                                 New York
## 2641                                           New Hyde Park         New York
## 2642                                                                 New York
## 2643                                                  Ithaca         New York
## 2644                                                                 New York
## 2645                                                                 New York
## 2646                                                                 New York
## 2647                                                                 New York
## 2648                                                                 New York
## 2649                                                                 New York
## 2650                                                                 New York
## 2651                                                                 New York
## 2652                                                                 New York
## 2653                                                                 New York
## 2654                                                                 New York
## 2655                                                                 New York
## 2656                                                                 New York
## 2657                                                                 New York
## 2658                                               Rochester         New York
## 2659                                                                 New York
## 2660                                                                 New York
## 2661                                                                 New York
## 2662                                                                 New York
## 2663                                                                 New York
## 2664                                                                 New York
## 2665                                           New Hyde Park         New York
## 2666                                                                 New York
## 2667                                                                 New York
## 2668                                                                 New York
## 2669                                                                 New York
## 2670                                                                 New York
## 2671                                                                 New York
## 2672                                                                 New York
## 2673                                                                 New York
## 2674                                                                 New York
## 2675                                                Melville         New York
## 2676                                                                 New York
## 2677                                                                 New York
## 2678                                                                 New York
## 2679                                               Rochester         New York
## 2680                                                                 New York
## 2681                                                                 New York
## 2682                                             Cooperstown         New York
## 2683                                                                 New York
## 2684                                                                 New York
## 2685                                                                 New York
## 2686                                                Valhalla         New York
## 2687                                                New York         New York
## 2688                                                                 New York
## 2689                                                                 New York
## 2690                                                                 New York
## 2691                                                                 New York
## 2692                                                                 New York
## 2693                                               Rochester         New York
## 2694                                                                 New York
## 2695                                                                 New York
## 2696                                                                 New York
## 2697                                             Cooperstown         New York
## 2698                                                                 New York
## 2699                                                                 New York
## 2700                                                                 New York
## 2701                                                                 New York
## 2702                                                                 New York
## 2703                                                                 New York
## 2704                                                                 New York
## 2705                                                New York         New York
## 2706                                                                 New York
## 2707                                                  Albany         New York
## 2708                                                                 New York
## 2709                                                  Albany         New York
## 2710                                           New Hyde Park         New York
## 2711                                                                 New York
## 2712                                                                 New York
## 2713                                                                 New York
## 2714                                                                 New York
## 2715                                                                 New York
## 2716                                             Cooperstown         New York
## 2717                                                                 New York
## 2718                                                                 New York
## 2719                                                                 New York
## 2720                                                                 New York
## 2721                                                                 New York
## 2722                                                 Livonia         New York
## 2723                                                                 New York
## 2724                                                                 New York
## 2725                                                                 New York
## 2726                                                                 New York
## 2727                                                                 New York
## 2728                                                 Potsdam         New York
## 2729                                                                 New York
## 2730                                            Poughkeepsie         New York
## 2731                                                Melville         New York
## 2732                                           New Hyde Park         New York
## 2733                                                                 New York
## 2734                                                                 New York
## 2735                                                                 New York
## 2736                                                                 New York
## 2737                                           New Hyde Park         New York
## 2738                                                                 New York
## 2739                                                  Albany         New York
## 2740                                                                 New York
## 2741                                                                 New York
## 2742                                                 Buffalo         New York
## 2743                                             Cooperstown         New York
## 2744                                           Staten Island         New York
## 2745                                                                 New York
## 2746                                                                 New York
## 2747                                                                 New York
## 2748                                                                 New York
## 2749                                                                 New York
## 2750                                                                 New York
## 2751                                                                 New York
## 2752                                                                 New York
## 2753                                                   Bronx         New York
## 2754                                                New York         New York
## 2755                                                                 New York
## 2756                                                                 New York
## 2757                                                                 New York
## 2758                                                                 New York
## 2759                                                                 New York
## 2760                                                   Utica         New York
## 2761                                                                 New York
## 2762                                                                 New York
## 2763                                                                 New York
## 2764                                                                 New York
## 2765                                                                 New York
## 2766                                                                 New York
## 2767                                                 Buffalo         New York
## 2768                                                                 New York
## 2769                                                                 New York
## 2770                                                                 New York
## 2771                                             East Meadow         New York
## 2772                                                                 New York
## 2773                                                                 New York
## 2774                                                                 New York
## 2775                                                                 New York
## 2776                                                                 New York
## 2777                                                                 New York
##      Cooperator.Zip.Code             Ownership.Type Facility.Latitude
## 1                     NA Not for Profit Corporation          42.09710
## 2                     NA Not for Profit Corporation          43.05497
## 3                     NA                        LLC                NA
## 4                     NA       Business Corporation          42.73898
## 5                     NA                        LLC          42.12646
## 6                     NA                        LLC          42.95627
## 7                     NA                        LLC          40.73376
## 8                     NA       Business Corporation          42.89386
## 9                     NA Not for Profit Corporation          40.72599
## 10                    NA Not for Profit Corporation          40.73482
## 11                    NA                        LLC          40.73257
## 12                    NA Not for Profit Corporation          43.07695
## 13                    NA Not for Profit Corporation          40.63898
## 14                    NA Not for Profit Corporation          42.09495
## 15                    NA Not for Profit Corporation          42.82588
## 16                    NA                      State          41.07367
## 17                    NA Not for Profit Corporation          42.94184
## 18                    NA Not for Profit Corporation          40.76363
## 19                    NA                        LLC          41.43548
## 20                    NA Not for Profit Corporation          44.21659
## 21                    NA                        LLC          43.20960
## 22                 14203 Not for Profit Corporation          42.07709
## 23                    NA Not for Profit Corporation          43.22014
## 24                    NA                        LLC          44.70224
## 25                    NA                        LLC                NA
## 26                    NA                        LLC          40.93990
## 27                    NA                        LLC          40.75003
## 28                    NA                        LLC          40.74074
## 29                    NA                        LLC          40.80756
## 30                    NA                        LLC          42.73994
## 31                    NA Not for Profit Corporation          42.66134
## 32                    NA Not for Profit Corporation          40.88436
## 33                    NA                        LLC          40.58416
## 34                    NA                        LLC          42.16209
## 35                 10013               Municipality          40.81015
## 36                    NA Not for Profit Corporation         -75.45935
## 37                 13326 Not for Profit Corporation          42.45277
## 38                    NA                        LLC          41.45004
## 39                 12540 Not for Profit Corporation          41.69192
## 40                    NA                        LLC                NA
## 41                 10013               Municipality          40.69181
## 42                    NA       Business Corporation          43.11312
## 43                    NA       Business Corporation          40.68359
## 44                    NA               Municipality          40.75408
## 45                    NA Not for Profit Corporation                NA
## 46                    NA Not for Profit Corporation          43.79568
## 47                 11554                     County          40.71112
## 48                 12208 Not for Profit Corporation          42.69647
## 49                    NA                        LLC          40.70039
## 50                    NA                        LLC                NA
## 51                    NA Not for Profit Corporation          40.64916
## 52                 10467 Not for Profit Corporation          40.84043
## 53                    NA       Business Corporation                NA
## 54                    NA Not for Profit Corporation          40.66005
## 55                 11042 Not for Profit Corporation          40.57961
## 56                    NA       Business Corporation          42.83226
## 57                    NA                        LLC          42.88458
## 58                    NA Not for Profit Corporation          40.81570
## 59                    NA       Business Corporation          40.85133
## 60                    NA                        LLC          42.96567
## 61                    NA Not for Profit Corporation          42.72759
## 62                 13502 Not for Profit Corporation          43.22652
## 63                 11042 Not for Profit Corporation          41.14412
## 64                 10013               Municipality          40.69509
## 65                 11747 Not for Profit Corporation          40.72114
## 66                    NA Not for Profit Corporation          43.15499
## 67                 14611 Not for Profit Corporation          43.04665
## 68                 11042 Not for Profit Corporation          40.73338
## 69                 10029 Not for Profit Corporation          40.80591
## 70                 12208 Not for Profit Corporation          42.23171
## 71                 12540 Not for Profit Corporation          41.69452
## 72                 10512 Not for Profit Corporation          41.33785
## 73                    NA Not for Profit Corporation          43.31482
## 74                    NA Not for Profit Corporation          42.42638
## 75                    NA Not for Profit Corporation          41.08506
## 76                 11042 Not for Profit Corporation          40.56930
## 77                    NA       Business Corporation          42.89263
## 78                  5401 Not for Profit Corporation          44.21596
## 79                    NA                        LLC          40.70618
## 80                    NA Not for Profit Corporation          43.11363
## 81                    NA       Business Corporation          40.59015
## 82                    NA Not for Profit Corporation          40.69522
## 83                 10467 Not for Profit Corporation          40.88558
## 84                 11042 Not for Profit Corporation          40.67860
## 85                    NA Not for Profit Corporation          43.15857
## 86                    NA                        LLC          40.84629
## 87                    NA Not for Profit Corporation           0.00000
## 88                 11042 Not for Profit Corporation          40.93816
## 89                 10013               Municipality          40.60387
## 90                 11042 Not for Profit Corporation          40.77044
## 91                    NA                        LLC          40.77240
## 92                    NA Not for Profit Corporation          43.03699
## 93                    NA Not for Profit Corporation          44.62085
## 94                    NA                        LLC          41.14936
## 95                    NA       Business Corporation          40.84417
## 96                    NA Not for Profit Corporation          43.26922
## 97                    NA       Business Corporation          44.67083
## 98                    NA       Business Corporation          40.72688
## 99                 13502 Not for Profit Corporation          43.09961
## 100                   NA Not for Profit Corporation          43.14228
## 101                   NA                        LLC          43.08668
## 102                10013               Municipality          40.79848
## 103                10029 Not for Profit Corporation          40.80502
## 104                   NA                        LLC                NA
## 105                10065 Not for Profit Corporation          41.20433
## 106                   NA Not for Profit Corporation          42.95376
## 107                11042 Not for Profit Corporation          40.76716
## 108                   NA       Business Corporation          40.85854
## 109                   NA Not for Profit Corporation          40.76181
## 110                   NA Not for Profit Corporation          41.09818
## 111                   NA Not for Profit Corporation          42.92003
## 112                   NA Not for Profit Corporation          40.57443
## 113                   NA                        LLC          40.78144
## 114                   NA Not for Profit Corporation                NA
## 115                   NA       Business Corporation          40.90052
## 116                   NA                        LLC          41.43560
## 117                14611 Not for Profit Corporation          43.13337
## 118                10924 Not for Profit Corporation                NA
## 119                   NA Not for Profit Corporation          40.85972
## 120                   NA                      State          40.90054
## 121                10013               Municipality          40.82401
## 122                48152 Not for Profit Corporation          43.03987
## 123                48152 Not for Profit Corporation                NA
## 124                   NA Not for Profit Corporation          40.83258
## 125                   NA Not for Profit Corporation          42.14257
## 126                   NA       Business Corporation          40.60440
## 127                14905 Not for Profit Corporation          42.37295
## 128                   NA       Business Corporation          42.76540
## 129                   NA       Business Corporation          42.35220
## 130                   NA Not for Profit Corporation          40.71364
## 131                   NA       Business Corporation          40.76886
## 132                11042 Not for Profit Corporation          40.73080
## 133                12208 Not for Profit Corporation          42.65337
## 134                   NA Public Benefit Corporation                NA
## 135                   NA Not for Profit Corporation          43.30604
## 136                   NA Not for Profit Corporation          43.47127
## 137                   NA Not for Profit Corporation          40.75094
## 138                11042 Not for Profit Corporation          40.85600
## 139                   NA                     County          43.06510
## 140                   NA                        LLC          40.88165
## 141                   NA Not for Profit Corporation          42.09381
## 142                13203 Not for Profit Corporation          43.12172
## 143                   NA                        LLC          42.68615
## 144                13502 Not for Profit Corporation          43.11893
## 145                   NA                        LLC          42.13945
## 146                   NA       Business Corporation          42.12338
## 147                13326 Not for Profit Corporation          42.45796
## 148                   NA                     County          43.15031
## 149                14611 Not for Profit Corporation          43.19281
## 150                13502 Not for Profit Corporation          43.09961
## 151                   NA Not for Profit Corporation          43.97491
## 152                   NA                        LLC          40.93485
## 153                   NA Not for Profit Corporation          43.03542
## 154                   NA Not for Profit Corporation          40.75786
## 155                   NA Not for Profit Corporation          40.72456
## 156                   NA Not for Profit Corporation          41.44447
## 157                   NA Not for Profit Corporation          42.90547
## 158                   NA                        LLC          40.85829
## 159                   NA                        LLC          40.63634
## 160                   NA       Business Corporation          40.87805
## 161                48152 Not for Profit Corporation          43.10193
## 162                   NA Not for Profit Corporation          43.17919
## 163                   NA                        LLC          42.69728
## 164                   NA Not for Profit Corporation          40.70534
## 165                14611 Not for Profit Corporation          43.00404
## 166                   NA Not for Profit Corporation          42.77153
## 167                13210 Not for Profit Corporation          43.04661
## 168                14850 Not for Profit Corporation          42.46983
## 169                   NA Not for Profit Corporation          40.85637
## 170                13326 Not for Profit Corporation          42.59557
## 171                   NA Not for Profit Corporation          40.75232
## 172                   NA                        LLC          40.99364
## 173                   NA Not for Profit Corporation          40.76696
## 174                   NA               Municipality          40.80298
## 175                   NA Not for Profit Corporation          43.06084
## 176                   NA Not for Profit Corporation          40.71887
## 177                   NA Not for Profit Corporation          40.79570
## 178                   NA Not for Profit Corporation          43.30203
## 179                   NA                        LLC          40.71304
## 180                11042 Not for Profit Corporation          40.78225
## 181                   NA Not for Profit Corporation          40.90070
## 182                   NA                      State          40.68540
## 183                   NA                        LLC          41.83255
## 184                   NA Not for Profit Corporation          43.08913
## 185                   NA Not for Profit Corporation          43.01525
## 186                   NA Not for Profit Corporation          40.68984
## 187                   NA                        LLC          40.63892
## 188                14905 Not for Profit Corporation          42.37295
## 189                14611 Not for Profit Corporation          43.23400
## 190                   NA                        LLC          43.19573
## 191                10029 Not for Profit Corporation          40.64960
## 192                   NA Not for Profit Corporation          40.83210
## 193                   NA Not for Profit Corporation          42.73293
## 194                48152 Not for Profit Corporation          42.73492
## 195                11042 Not for Profit Corporation          40.74564
## 196                   NA Not for Profit Corporation          41.19828
## 197                   NA Not for Profit Corporation                NA
## 198                   NA Not for Profit Corporation          44.23211
## 199                10013               Municipality          40.66888
## 200                12208 Not for Profit Corporation          42.24624
## 201                   NA       Business Corporation          40.70796
## 202                12449 Not for Profit Corporation          41.92982
## 203                   NA Not for Profit Corporation          40.82878
## 204                12208 Not for Profit Corporation          43.08648
## 205                   NA Not for Profit Corporation          42.12183
## 206                   NA Not for Profit Corporation          42.92276
## 207                   NA Not for Profit Corporation          40.69682
## 208                14611 Not for Profit Corporation          43.05964
## 209                   NA Not for Profit Corporation          40.86088
## 210                   NA Not for Profit Corporation          40.69555
## 211                   NA Not for Profit Corporation          40.85196
## 212                   NA                        LLC          42.69952
## 213                14203 Not for Profit Corporation          42.94253
## 214                10029 Not for Profit Corporation          40.79421
## 215                   NA Not for Profit Corporation          43.30918
## 216                10467 Not for Profit Corporation          40.86030
## 217                   NA Not for Profit Corporation          41.74211
## 218                   NA                      State          43.04262
## 219                   NA Not for Profit Corporation          40.80537
## 220                   NA                        LLC          42.97304
## 221                   NA Not for Profit Corporation          40.84684
## 222                   NA Not for Profit Corporation          40.82114
## 223                11042 Not for Profit Corporation          40.60405
## 224                   NA Not for Profit Corporation          40.71315
## 225                10029 Not for Profit Corporation          40.79286
## 226                   NA Not for Profit Corporation          43.09646
## 227                   NA                        LLC          42.89063
## 228                   NA Not for Profit Corporation          40.73918
## 229                   NA                      State          40.79964
## 230                   NA Not for Profit Corporation                NA
## 231                   NA Not for Profit Corporation          40.74452
## 232                   NA                        LLC                NA
## 233                11042 Not for Profit Corporation          40.81165
## 234                   NA               Municipality          40.73960
## 235                   NA                        LLC          40.69078
## 236                   NA Not for Profit Corporation          42.76456
## 237                   NA Not for Profit Corporation          40.86906
## 238                   NA Not for Profit Corporation          43.04282
## 239                   NA Not for Profit Corporation          42.85571
## 240                   NA Not for Profit Corporation                NA
## 241                12208 Not for Profit Corporation          42.65754
## 242                   NA                        LLC          40.77669
## 243                   NA                        LLC          40.70039
## 244                   NA                        LLC          40.63340
## 245                   NA Not for Profit Corporation          44.69302
## 246                   NA                        LLC          42.48435
## 247                   NA                        LLC          42.79247
## 248                14203 Not for Profit Corporation          42.84853
## 249                   NA Not for Profit Corporation          40.68535
## 250                   NA Not for Profit Corporation          40.71611
## 251                   NA Not for Profit Corporation          42.96120
## 252                10013               Municipality          40.69397
## 253                   NA                        LLC          40.86019
## 254                   NA Not for Profit Corporation          41.75810
## 255                   NA Not for Profit Corporation          40.78044
## 256                   NA                        LLC          43.24056
## 257                   NA                        LLC          40.63808
## 258                   NA Not for Profit Corporation          42.67847
## 259                   NA                        LLC          42.99636
## 260                   NA                        LLC          40.86587
## 261                   NA Not for Profit Corporation          42.09777
## 262                   NA Not for Profit Corporation          41.65494
## 263                   NA Not for Profit Corporation          40.76176
## 264                   NA Not for Profit Corporation          40.63467
## 265                48152 Not for Profit Corporation          42.68003
## 266                   NA Not for Profit Corporation          40.63746
## 267                10467 Not for Profit Corporation          40.84594
## 268                   NA Not for Profit Corporation          40.75985
## 269                   NA                        LLC          40.85243
## 270                   NA Not for Profit Corporation          42.89887
## 271                   NA                        LLC          40.66405
## 272                   NA Not for Profit Corporation          42.18355
## 273                   NA                        LLC          41.10844
## 274                14620 Not for Profit Corporation          43.13577
## 275                   NA Not for Profit Corporation          41.00766
## 276                10467 Not for Profit Corporation          40.83625
## 277                18840 Not for Profit Corporation          42.60905
## 278                   NA                        LLC          40.57944
## 279                   NA                        LLC          44.92297
## 280                   NA Not for Profit Corporation          42.48488
## 281                10029 Not for Profit Corporation          40.78880
## 282                   NA Not for Profit Corporation          42.09001
## 283                10467 Not for Profit Corporation          40.85715
## 284                   NA Not for Profit Corporation          43.45050
## 285                13326 Not for Profit Corporation          43.02560
## 286                   NA Not for Profit Corporation          43.18536
## 287                   NA                        LLC          43.10725
## 288                   NA                     County          43.98564
## 289                12208 Not for Profit Corporation          42.77599
## 290                   NA Not for Profit Corporation          40.79737
## 291                   NA       Business Corporation          43.21403
## 292                12540 Not for Profit Corporation          41.92965
## 293                   NA                        LLC          43.09234
## 294                10013               Municipality          40.70280
## 295                   NA       Business Corporation          40.64069
## 296                   NA Not for Profit Corporation          40.62650
## 297                   NA                     County          43.45039
## 298                   NA Not for Profit Corporation          43.46684
## 299                14701 Not for Profit Corporation          42.09154
## 300                   NA                      State          43.00915
## 301                   NA Not for Profit Corporation          41.49566
## 302                12208 Not for Profit Corporation          42.28131
## 303                11042 Not for Profit Corporation          40.87460
## 304                   NA Not for Profit Corporation          42.09260
## 305                   NA Not for Profit Corporation          43.07030
## 306                10065 Not for Profit Corporation          40.66882
## 307                   NA                        LLC          40.76418
## 308                   NA       Business Corporation          40.71537
## 309                10467 Not for Profit Corporation          40.92488
## 310                12449 Not for Profit Corporation          41.92643
## 311                   NA                        LLC          40.67853
## 312                12208 Not for Profit Corporation          42.73296
## 313                   NA                        LLC          42.95957
## 314                   NA                     County          42.07709
## 315                11042 Not for Profit Corporation          40.90128
## 316                   NA Not for Profit Corporation          40.71095
## 317                   NA Not for Profit Corporation          40.80738
## 318                12208 Not for Profit Corporation                NA
## 319                   NA                        LLC          43.20368
## 320                   NA       Business Corporation          40.68271
## 321                12540 Not for Profit Corporation          41.48570
## 322                   NA Not for Profit Corporation          42.50858
## 323                10029 Not for Profit Corporation          40.79156
## 324                14905 Not for Profit Corporation          42.14230
## 325                14611 Not for Profit Corporation          43.14917
## 326                   NA                      State          42.95596
## 327                   NA                        LLC          40.78243
## 328                   NA                        LLC          40.57653
## 329                   NA Not for Profit Corporation          43.22012
## 330                   NA Public Benefit Corporation          42.95931
## 331                   NA Not for Profit Corporation          40.74210
## 332                   NA               Municipality          40.74432
## 333                   NA                      State          43.04294
## 334                   NA Not for Profit Corporation          42.87474
## 335                   NA                        LLC          40.68538
## 336                12208 Not for Profit Corporation          42.63160
## 337                   NA Not for Profit Corporation          40.70044
## 338                   NA                        LLC          43.09038
## 339                14611 Not for Profit Corporation          43.12603
## 340                   NA Not for Profit Corporation          43.08471
## 341                   NA Not for Profit Corporation          43.95976
## 342                   NA Not for Profit Corporation          40.67646
## 343                12208 Not for Profit Corporation          42.70213
## 344                   NA Not for Profit Corporation          40.68910
## 345                   NA       Business Corporation          40.71180
## 346                   NA Not for Profit Corporation          40.79950
## 347                   NA                      State          43.39594
## 348                11360 Not for Profit Corporation          40.77618
## 349                   NA Not for Profit Corporation          40.60009
## 350                   NA Not for Profit Corporation          40.76523
## 351                10310 Not for Profit Corporation          40.63546
## 352                   NA Not for Profit Corporation          40.60690
## 353                   NA Not for Profit Corporation          40.85471
## 354                   NA Not for Profit Corporation          43.23838
## 355                   NA Not for Profit Corporation          43.49252
## 356                   NA Not for Profit Corporation          41.84952
## 357                13676 Not for Profit Corporation          44.92339
## 358                   NA Not for Profit Corporation          40.83598
## 359                   NA Not for Profit Corporation          42.35498
## 360                10467 Not for Profit Corporation          40.82061
## 361                   NA Not for Profit Corporation          42.11331
## 362                13502 Not for Profit Corporation          43.09961
## 363                10029 Not for Profit Corporation          40.78860
## 364                   NA Not for Profit Corporation          41.36175
## 365                11042 Not for Profit Corporation          40.77391
## 366                   NA                        LLC          41.45253
## 367                   NA Not for Profit Corporation          40.69692
## 368                   NA       Business Corporation          40.72578
## 369                   NA Not for Profit Corporation          42.34577
## 370                   NA Not for Profit Corporation          40.75982
## 371                12208 Not for Profit Corporation          43.10369
## 372                10029 Not for Profit Corporation          40.67159
## 373                   NA Not for Profit Corporation          40.76248
## 374                   NA       Business Corporation          40.71593
## 375                   NA Not for Profit Corporation          43.34361
## 376                13326 Not for Profit Corporation          43.04396
## 377                   NA Not for Profit Corporation          40.84207
## 378                   NA                        LLC          41.72804
## 379                14611 Not for Profit Corporation          43.18410
## 380                   NA Not for Profit Corporation          44.26638
## 381                   NA Not for Profit Corporation          43.14925
## 382                12208 Not for Profit Corporation          42.67286
## 383                   NA Not for Profit Corporation          40.85445
## 384                   NA                        LLC                NA
## 385                   NA Not for Profit Corporation          40.84153
## 386                   NA Not for Profit Corporation          40.84923
## 387                   NA                        LLC          40.84592
## 388                12208 Not for Profit Corporation          43.04480
## 389                   NA Not for Profit Corporation          40.67640
## 390                   NA       Business Corporation          40.72171
## 391                   NA                     County          40.72578
## 392                   NA                     County          43.00739
## 393                   NA Not for Profit Corporation          43.55747
## 394                48152 Not for Profit Corporation          42.73357
## 395                   NA Not for Profit Corporation          40.76920
## 396                   NA Not for Profit Corporation          41.14504
## 397                   NA Not for Profit Corporation          40.75925
## 398                12208 Not for Profit Corporation          42.75170
## 399                10901 Not for Profit Corporation          41.09245
## 400                   NA Not for Profit Corporation          44.33730
## 401                   NA Not for Profit Corporation          40.84323
## 402                   NA                        LLC          41.29466
## 403                11042 Not for Profit Corporation          40.75363
## 404                   NA Public Benefit Corporation          42.90145
## 405                10467 Not for Profit Corporation          41.52434
## 406                14642 Not for Profit Corporation          42.91114
## 407                   NA                        LLC          40.91062
## 408                   NA Not for Profit Corporation          42.54293
## 409                   NA Not for Profit Corporation          42.60124
## 410                   NA Not for Profit Corporation          42.97447
## 411                   NA                        LLC          43.12290
## 412                   NA Not for Profit Corporation          40.95541
## 413                   NA Not for Profit Corporation          43.08443
## 414                   NA Not for Profit Corporation          40.81453
## 415                   NA Not for Profit Corporation          42.87999
## 416                   NA Not for Profit Corporation          40.74076
## 417                14611 Not for Profit Corporation          43.22316
## 418                   NA Not for Profit Corporation          40.86596
## 419                   NA Not for Profit Corporation          41.23604
## 420                11747 Not for Profit Corporation          40.81245
## 421                   NA Not for Profit Corporation                NA
## 422                48152 Not for Profit Corporation          42.81187
## 423                   NA Not for Profit Corporation          43.04429
## 424                14203 Not for Profit Corporation          42.94184
## 425                   NA Not for Profit Corporation          40.62643
## 426                   NA Not for Profit Corporation                NA
## 427                   NA                        LLC          40.68627
## 428                   NA Not for Profit Corporation          40.82634
## 429                   NA                        LLC          40.63996
## 430                   NA Not for Profit Corporation          40.84918
## 431                   NA Not for Profit Corporation          40.65248
## 432                14611 Not for Profit Corporation          43.18972
## 433                   NA                        LLC          40.77457
## 434                   NA                        LLC          41.39446
## 435                10901 Not for Profit Corporation          41.11225
## 436                   NA Not for Profit Corporation          42.21347
## 437                   NA Not for Profit Corporation          43.24089
## 438                   NA       Business Corporation          42.45564
## 439                   NA Not for Profit Corporation          43.05307
## 440                   NA Not for Profit Corporation          40.65628
## 441                   NA Not for Profit Corporation          43.03542
## 442                   NA       Business Corporation          40.84312
## 443                   NA Not for Profit Corporation          41.26213
## 444                   NA Not for Profit Corporation          42.97251
## 445                   NA Not for Profit Corporation          40.66753
## 446                   NA                        LLC          40.93670
## 447                   NA Not for Profit Corporation                NA
## 448                10065 Not for Profit Corporation          40.73977
## 449                   NA Not for Profit Corporation          40.69873
## 450                   NA                      State          40.88656
## 451                   NA Not for Profit Corporation          40.77250
## 452                   NA Not for Profit Corporation          40.65555
## 453                12208 Not for Profit Corporation          42.73439
## 454                   NA Not for Profit Corporation          40.83889
## 455                   NA Not for Profit Corporation          43.06580
## 456                   NA                        LLC          40.75729
## 457                   NA       Business Corporation          40.84719
## 458                10467 Not for Profit Corporation          40.85123
## 459                   NA                        LLC          40.59917
## 460                10467 Not for Profit Corporation                NA
## 461                   NA                        LLC          40.72965
## 462                   NA Not for Profit Corporation          42.89172
## 463                   NA Not for Profit Corporation          41.04599
## 464                12208 Not for Profit Corporation          42.70121
## 465                   NA                        LLC          43.23622
## 466                   NA Not for Profit Corporation          44.19208
## 467                   NA Not for Profit Corporation          42.82829
## 468                   NA Not for Profit Corporation          41.04056
## 469                11042 Not for Profit Corporation          40.92739
## 470                   NA Not for Profit Corporation          40.77126
## 471                   NA Not for Profit Corporation          42.23357
## 472                   NA Not for Profit Corporation          42.92717
## 473                   NA Not for Profit Corporation          40.81190
## 474                   NA Not for Profit Corporation          44.05494
## 475                   NA Not for Profit Corporation          40.71854
## 476                11042 Not for Profit Corporation          40.78183
## 477                   NA       Business Corporation          40.63035
## 478                   NA Not for Profit Corporation          44.16272
## 479                 5401 Not for Profit Corporation          44.95848
## 480                   NA Not for Profit Corporation                NA
## 481                   NA Not for Profit Corporation                NA
## 482                   NA       Business Corporation          40.83614
## 483                   NA                        LLC          42.10033
## 484                10924 Not for Profit Corporation          41.39661
## 485                12208 Not for Profit Corporation          42.86893
## 486                14611 Not for Profit Corporation          43.18857
## 487                   NA                  (unknown)          40.68282
## 488                   NA Not for Profit Corporation          40.65097
## 489                   NA Not for Profit Corporation          40.74250
## 490                   NA       Business Corporation          43.09720
## 491                11042 Not for Profit Corporation          40.93385
## 492                   NA Not for Profit Corporation          41.13995
## 493                 5401 Not for Profit Corporation          44.68786
## 494                   NA Not for Profit Corporation          42.12292
## 495                   NA Not for Profit Corporation          42.64067
## 496                   NA                        LLC          40.73783
## 497                   NA                      State          40.61512
## 498                   NA                        LLC          40.74779
## 499                   NA                        LLC          40.88306
## 500                   NA Not for Profit Corporation          40.81488
## 501                   NA       Business Corporation          40.87468
## 502                   NA       Business Corporation          42.77153
## 503                   NA Not for Profit Corporation                NA
## 504                   NA Not for Profit Corporation          43.22588
## 505                   NA Not for Profit Corporation          40.76550
## 506                   NA Not for Profit Corporation          43.57026
## 507                10467 Not for Profit Corporation          40.84569
## 508                   NA Not for Profit Corporation          40.63592
## 509                   NA                        LLC          42.71485
## 510                12208 Not for Profit Corporation          42.67954
## 511                   NA Not for Profit Corporation          40.91737
## 512                   NA                        LLC          40.62207
## 513                   NA Not for Profit Corporation          40.64087
## 514                   NA Not for Profit Corporation          42.99095
## 515                   NA                        LLC          43.08625
## 516                   NA                        LLC          40.75898
## 517                   NA Not for Profit Corporation          40.83136
## 518                12208 Not for Profit Corporation          42.65330
## 519                   NA Not for Profit Corporation          41.91614
## 520                   NA Not for Profit Corporation                NA
## 521                11042 Not for Profit Corporation          40.58249
## 522                   NA                        LLP          40.60194
## 523                   NA Not for Profit Corporation                NA
## 524                   NA Not for Profit Corporation          40.83937
## 525                   NA Not for Profit Corporation          43.13788
## 526                   NA                        LLC          40.91240
## 527                   NA Not for Profit Corporation          41.65888
## 528                   NA Not for Profit Corporation          42.81919
## 529                   NA Not for Profit Corporation          40.72707
## 530                   NA Not for Profit Corporation          40.70023
## 531                   NA Not for Profit Corporation          40.77940
## 532                   NA               Municipality          40.73821
## 533                   NA                        LLC          40.74311
## 534                12208 Not for Profit Corporation          43.08703
## 535                48152 Not for Profit Corporation          42.73240
## 536                13601 Not for Profit Corporation          43.96441
## 537                14203 Not for Profit Corporation          42.86037
## 538                   NA Not for Profit Corporation          43.02433
## 539                12208 Not for Profit Corporation          43.08585
## 540                   NA                      State          40.82095
## 541                11042 Not for Profit Corporation          40.75891
## 542                   NA Not for Profit Corporation          41.39571
## 543                48152 Not for Profit Corporation          42.68315
## 544                   NA Not for Profit Corporation          40.75291
## 545                   NA Not for Profit Corporation          43.10924
## 546                   NA                        LLC          43.07446
## 547                   NA Not for Profit Corporation          40.80177
## 548                10013               Municipality          40.69428
## 549                   NA Not for Profit Corporation          40.83139
## 550                   NA Not for Profit Corporation          42.75500
## 551                   NA Not for Profit Corporation          40.66209
## 552                10467 Not for Profit Corporation          41.43577
## 553                   NA Not for Profit Corporation          40.80632
## 554                   NA Not for Profit Corporation          40.91238
## 555                   NA       Business Corporation          41.50947
## 556                   NA       Business Corporation          40.84945
## 557                   NA Not for Profit Corporation          42.09560
## 558                12540 Not for Profit Corporation          41.93496
## 559                10065 Not for Profit Corporation          40.73914
## 560                   NA                        LLC          40.63072
## 561                   NA Not for Profit Corporation          40.67468
## 562                   NA                        LLC          41.69360
## 563                   NA Not for Profit Corporation          42.93893
## 564                   NA Not for Profit Corporation          41.06323
## 565                14701 Not for Profit Corporation          42.48467
## 566                10467 Not for Profit Corporation          40.81823
## 567                   NA Not for Profit Corporation          42.40509
## 568                11042 Not for Profit Corporation          40.77378
## 569                   NA Not for Profit Corporation          40.76386
## 570                   NA       Business Corporation          40.93952
## 571                   NA                        LLC          40.83088
## 572                   NA                        LLC          40.70997
## 573                   NA Not for Profit Corporation          40.60961
## 574                   NA Not for Profit Corporation          42.67141
## 575                   NA       Business Corporation          40.74672
## 576                13326 Not for Profit Corporation          42.40754
## 577                   NA Not for Profit Corporation          40.63585
## 578                14611 Not for Profit Corporation          43.06044
## 579                   NA Not for Profit Corporation          43.69746
## 580                   NA Not for Profit Corporation          40.70563
## 581                   NA                        LLC          41.15951
## 582                   NA               Municipality          40.71722
## 583                   NA Not for Profit Corporation          42.93155
## 584                   NA Not for Profit Corporation          43.04684
## 585                   NA Not for Profit Corporation          40.66184
## 586                   NA                        LLC          43.12175
## 587                13326 Not for Profit Corporation          42.18630
## 588                   NA       Business Corporation          40.91302
## 589                   NA Not for Profit Corporation          41.09449
## 590                14611                        LLC          43.12002
## 591                14620 Not for Profit Corporation          43.19548
## 592                   NA       Business Corporation          40.73992
## 593                   NA       Business Corporation          41.38616
## 594                   NA Not for Profit Corporation          40.74461
## 595                11042 Not for Profit Corporation          40.56930
## 596                   NA       Business Corporation          40.81439
## 597                   NA Not for Profit Corporation          43.30602
## 598                   NA                        LLC          42.86266
## 599                   NA Not for Profit Corporation                NA
## 600                12208 Not for Profit Corporation          42.78958
## 601                12208 Not for Profit Corporation          43.10306
## 602                13326 Not for Profit Corporation          42.44584
## 603                   NA       Business Corporation          42.75349
## 604                48152 Not for Profit Corporation          42.63991
## 605                   NA Not for Profit Corporation          42.87575
## 606                   NA Not for Profit Corporation          42.62940
## 607                   NA                      State          40.96840
## 608                   NA Not for Profit Corporation          43.06590
## 609                   NA Not for Profit Corporation          42.66323
## 610                   NA Not for Profit Corporation          43.95078
## 611                   NA Not for Profit Corporation          40.80871
## 612                   NA Not for Profit Corporation          42.55357
## 613                12540 Not for Profit Corporation          41.78873
## 614                   NA                        LLC          40.84948
## 615                   NA Not for Profit Corporation          42.43655
## 616                10029 Not for Profit Corporation          40.80495
## 617                   NA Not for Profit Corporation          40.87450
## 618                   NA                        LLC          40.88165
## 619                   NA Not for Profit Corporation          41.68502
## 620                13676 Not for Profit Corporation          44.80129
## 621                   NA                        LLC          43.35942
## 622                14850 Not for Profit Corporation          42.35154
## 623                10467 Not for Profit Corporation          40.86064
## 624                   NA Not for Profit Corporation          42.90428
## 625                   NA       Business Corporation          40.75393
## 626                13502 Not for Profit Corporation          43.02639
## 627                18840 Not for Profit Corporation          42.16660
## 628                   NA                        LLC          40.71415
## 629                   NA Not for Profit Corporation          42.01547
## 630                   NA                     County          42.08697
## 631                   NA Not for Profit Corporation          41.29176
## 632                11042 Not for Profit Corporation          40.81165
## 633                48152 Not for Profit Corporation          42.86921
## 634                48152 Not for Profit Corporation          42.70213
## 635                   NA                        LLC          40.60627
## 636                   NA Not for Profit Corporation          40.84616
## 637                   NA                        LLC          40.71365
## 638                   NA                        LLC          40.80494
## 639                11042 Not for Profit Corporation          40.73488
## 640                   NA                        LLC          43.30790
## 641                   NA       Business Corporation          40.73523
## 642                14611 Not for Profit Corporation          43.24602
## 643                   NA       Business Corporation          40.73067
## 644                   NA Not for Profit Corporation          41.33947
## 645                   NA Not for Profit Corporation          41.29176
## 646                   NA Not for Profit Corporation          42.93940
## 647                   NA Not for Profit Corporation          40.83350
## 648                   NA                        LLC          40.62238
## 649                   NA                     County          43.79568
## 650                   NA                     County          42.74726
## 651                   NA Not for Profit Corporation          42.94031
## 652                   NA                        LLC          43.00088
## 653                48152 Not for Profit Corporation          42.95892
## 654                11777 Not for Profit Corporation          40.78773
## 655                   NA Not for Profit Corporation          43.14463
## 656                   NA Not for Profit Corporation          40.71094
## 657                   NA Not for Profit Corporation          41.12438
## 658                   NA               Municipality          40.59388
## 659                14611 Not for Profit Corporation          43.17723
## 660                   NA                        LLC          43.04155
## 661                   NA Not for Profit Corporation          42.48562
## 662                   NA Not for Profit Corporation          42.94081
## 663                   NA Not for Profit Corporation          42.89303
## 664                   NA                      State                NA
## 665                   NA                     County          40.83433
## 666                   NA Not for Profit Corporation          43.09217
## 667                11777 Not for Profit Corporation          40.76716
## 668                   NA Not for Profit Corporation          41.11061
## 669                   NA Not for Profit Corporation          42.97285
## 670                   NA       Business Corporation          40.82077
## 671                   NA Not for Profit Corporation                NA
## 672                10467 Not for Profit Corporation          40.84958
## 673                10467 Not for Profit Corporation          40.84243
## 674                   NA       Business Corporation          40.70470
## 675                   NA Not for Profit Corporation          40.74568
## 676                   NA Not for Profit Corporation          43.23569
## 677                   NA                        LLC          40.70208
## 678                   NA                     County          44.84992
## 679                   NA Not for Profit Corporation          43.06772
## 680                   NA                        LLC          41.13624
## 681                10701 Not for Profit Corporation          41.05915
## 682                   NA       Business Corporation          40.59513
## 683                   NA Not for Profit Corporation          42.11567
## 684                   NA Not for Profit Corporation          43.09403
## 685                   NA Not for Profit Corporation          40.81396
## 686                10029 Not for Profit Corporation          40.59424
## 687                   NA Not for Profit Corporation                NA
## 688                   NA Not for Profit Corporation          40.70290
## 689                   NA Not for Profit Corporation          43.57123
## 690                   NA                        LLC          44.21496
## 691                   NA       Business Corporation          42.98105
## 692                   NA Not for Profit Corporation          40.68832
## 693                14620 Not for Profit Corporation          43.11070
## 694                13326 Not for Profit Corporation          42.27362
## 695                   NA       Business Corporation          40.82821
## 696                   NA Not for Profit Corporation          43.10991
## 697                   NA Not for Profit Corporation          43.09959
## 698                   NA Not for Profit Corporation          43.33234
## 699                13676 Not for Profit Corporation          44.66988
## 700                   NA                        LLC          40.77533
## 701                   NA                        LLC          42.25717
## 702                   NA       Business Corporation          40.78590
## 703                12208 Not for Profit Corporation          42.77599
## 704                   NA Not for Profit Corporation          42.89190
## 705                   NA Not for Profit Corporation          42.33211
## 706                11042 Not for Profit Corporation          40.65073
## 707                   NA Not for Profit Corporation          41.11107
## 708                14701 Not for Profit Corporation          42.09124
## 709                   NA Not for Profit Corporation          43.29539
## 710                   NA Not for Profit Corporation          43.22993
## 711                   NA Not for Profit Corporation          40.82035
## 712                12208 Not for Profit Corporation          42.89990
## 713                   NA Not for Profit Corporation          43.21187
## 714                   NA Not for Profit Corporation          41.07407
## 715                   NA                     County          44.69866
## 716                   NA Not for Profit Corporation          41.17330
## 717                10924 Not for Profit Corporation          41.44953
## 718                   NA                      State          43.04676
## 719                   NA Not for Profit Corporation          40.85490
## 720                   NA Not for Profit Corporation          43.21026
## 721                   NA       Business Corporation                NA
## 722                   NA                        LLC          43.15100
## 723                   NA       Business Corporation          40.73697
## 724                   NA                        LLC          40.59428
## 725                   NA Not for Profit Corporation          40.66463
## 726                   NA Not for Profit Corporation          42.97275
## 727                   NA Not for Profit Corporation          40.82200
## 728                   NA                        LLC          40.89933
## 729                   NA                     County          42.10534
## 730                   NA Not for Profit Corporation          40.72903
## 731                   NA Not for Profit Corporation          40.85810
## 732                14642 Not for Profit Corporation          42.96584
## 733                14203 Not for Profit Corporation          43.12753
## 734                13326 Not for Profit Corporation          42.32607
## 735                   NA Not for Profit Corporation          41.16409
## 736                   NA                        LLC          43.12150
## 737                10013               Municipality          40.67193
## 738                   NA Not for Profit Corporation          40.73735
## 739                   NA Not for Profit Corporation          43.03925
## 740                   NA Not for Profit Corporation          40.64626
## 741                   NA                        LLC          40.76874
## 742                   NA Not for Profit Corporation          42.11940
## 743                48152 Not for Profit Corporation          42.86039
## 744                   NA                      State          40.87401
## 745                   NA                        LLC          43.00299
## 746                   NA                        LLC          40.86785
## 747                   NA Not for Profit Corporation          43.06810
## 748                   NA       Business Corporation          40.60918
## 749                   NA Not for Profit Corporation          42.72927
## 750                   NA                        LLC          43.16264
## 751                   NA Not for Profit Corporation          41.50412
## 752                   NA Not for Profit Corporation          40.74287
## 753                13203 Not for Profit Corporation          43.04335
## 754                12208 Not for Profit Corporation          42.74694
## 755                   NA Not for Profit Corporation                NA
## 756                13326 Not for Profit Corporation                NA
## 757                11212 Not for Profit Corporation          40.67646
## 758                14203 Not for Profit Corporation          42.84929
## 759                   NA                        LLC          40.75520
## 760                   NA Not for Profit Corporation                NA
## 761                11042 Not for Profit Corporation          40.73341
## 762                   NA Not for Profit Corporation                NA
## 763                   NA       Business Corporation          40.85831
## 764                   NA Not for Profit Corporation          40.64193
## 765                48152 Not for Profit Corporation          42.64696
## 766                   NA                     County          43.02885
## 767                   NA Not for Profit Corporation          43.15948
## 768                   NA                        LLC          40.75733
## 769                   NA                        LLC          40.98653
## 770                   NA Not for Profit Corporation          40.89793
## 771                14203 Not for Profit Corporation          42.76498
## 772                   NA Not for Profit Corporation          40.74035
## 773                48152 Not for Profit Corporation          42.82206
## 774                   NA Not for Profit Corporation          42.91207
## 775                   NA Not for Profit Corporation          41.40369
## 776                   NA Not for Profit Corporation          42.44421
## 777                11042 Not for Profit Corporation          40.58664
## 778                14850 Not for Profit Corporation          42.48027
## 779                   NA       Business Corporation          40.70428
## 780                10467 Not for Profit Corporation          40.86936
## 781                   NA Not for Profit Corporation          40.72525
## 782                10467 Not for Profit Corporation          40.88051
## 783                   NA       Business Corporation          43.23205
## 784                   NA Not for Profit Corporation          40.75607
## 785                10467 Not for Profit Corporation          40.81622
## 786                10901 Not for Profit Corporation          41.36792
## 787                10013               Municipality          40.66497
## 788                   NA                        LLC          42.05432
## 789                   NA Not for Profit Corporation          43.12437
## 790                   NA Not for Profit Corporation          40.65208
## 791                   NA Not for Profit Corporation          40.59971
## 792                   NA Not for Profit Corporation          40.69443
## 793                   NA Not for Profit Corporation          43.97626
## 794                10467 Not for Profit Corporation          40.87995
## 795                11042 Not for Profit Corporation          40.79393
## 796                   NA Not for Profit Corporation          43.16816
## 797                12208 Not for Profit Corporation          42.11125
## 798                   NA                        LLC          40.86529
## 799                   NA Not for Profit Corporation          42.80359
## 800                   NA                        LLC                NA
## 801                   NA                        LLC          42.92078
## 802                13676 Not for Profit Corporation          44.67562
## 803                10467 Not for Profit Corporation          40.85874
## 804                   NA                        LLC          40.91597
## 805                   NA Not for Profit Corporation          42.57455
## 806                   NA       Business Corporation          40.57919
## 807                   NA Not for Profit Corporation          40.82123
## 808                   NA Not for Profit Corporation          43.14961
## 809                   NA Not for Profit Corporation          40.65011
## 810                   NA       Business Corporation          43.05067
## 811                   NA Not for Profit Corporation          43.18000
## 812                   NA                        LLC          41.57440
## 813                   NA                        LLC          43.21584
## 814                   NA       Business Corporation          41.03341
## 815                   NA Not for Profit Corporation          40.81553
## 816                   NA Not for Profit Corporation          40.76090
## 817                   NA Not for Profit Corporation                NA
## 818                13326 Not for Profit Corporation          42.44665
## 819                14203 Not for Profit Corporation          42.82737
## 820                   NA                     County          41.79732
## 821                   NA Not for Profit Corporation          42.73236
## 822                11042 Not for Profit Corporation          40.79350
## 823                   NA Not for Profit Corporation          40.65299
## 824                11042 Not for Profit Corporation          40.60525
## 825                   NA Not for Profit Corporation          43.00906
## 826                   NA Not for Profit Corporation          40.68843
## 827                   NA       Business Corporation          40.89521
## 828                   NA Not for Profit Corporation          40.76454
## 829                   NA Not for Profit Corporation          41.29122
## 830                   NA       Business Corporation          40.64526
## 831                   NA                      State          40.87388
## 832                48152 Not for Profit Corporation          42.73296
## 833                10467 Not for Profit Corporation                NA
## 834                   NA Not for Profit Corporation          40.79641
## 835                   NA Not for Profit Corporation          40.84718
## 836                   NA Not for Profit Corporation          43.28074
## 837                11042 Not for Profit Corporation          40.72875
## 838                   NA                     County          42.25309
## 839                   NA Not for Profit Corporation          42.98761
## 840                   NA Not for Profit Corporation          42.48444
## 841                   NA                      State          40.66333
## 842                   NA                        LLP          43.05752
## 843                13326 Not for Profit Corporation          42.90418
## 844                   NA Not for Profit Corporation          42.81160
## 845                14611 Not for Profit Corporation          43.05962
## 846                   NA Not for Profit Corporation          43.06238
## 847                   NA Not for Profit Corporation          41.67083
## 848                13326 Not for Profit Corporation          42.26924
## 849                   NA       Business Corporation          40.63070
## 850                   NA Not for Profit Corporation          40.84551
## 851                   NA                        LLC          42.72776
## 852                   NA       Business Corporation          40.78165
## 853                12208 Not for Profit Corporation          42.65328
## 854                   NA Not for Profit Corporation          41.11967
## 855                   NA Not for Profit Corporation          43.20103
## 856                11777 Not for Profit Corporation          40.94753
## 857                   NA       Business Corporation          43.08610
## 858                   NA Not for Profit Corporation          40.97189
## 859                13502 Not for Profit Corporation          43.11730
## 860                   NA Not for Profit Corporation          40.67850
## 861                   NA Not for Profit Corporation          40.71390
## 862                10467 Not for Profit Corporation          40.84039
## 863                   NA Not for Profit Corporation          42.96611
## 864                   NA       Business Corporation          42.78165
## 865                   NA       Business Corporation                NA
## 866                   NA       Business Corporation          40.84215
## 867                   NA Not for Profit Corporation          40.80979
## 868                   NA                        LLC          42.66867
## 869                   NA               Municipality          40.65582
## 870                   NA Not for Profit Corporation          43.07810
## 871                   NA Not for Profit Corporation          43.13687
## 872                   NA Not for Profit Corporation          40.81211
## 873                   NA Not for Profit Corporation          43.05515
## 874                   NA Not for Profit Corporation          42.80533
## 875                   NA                     County          42.75561
## 876                   NA Not for Profit Corporation          40.71057
## 877                   NA Not for Profit Corporation          40.70500
## 878                   NA Not for Profit Corporation          40.92057
## 879                12208 Not for Profit Corporation          42.89505
## 880                   NA                        LLC          41.44776
## 881                   NA                     County          42.75586
## 882                   NA Not for Profit Corporation          43.55028
## 883                16544 Not for Profit Corporation          42.32796
## 884                10467 Not for Profit Corporation          40.84497
## 885                   NA                        LLC          40.85274
## 886                   NA                        LLC          40.60692
## 887                11212 Not for Profit Corporation          40.67794
## 888                   NA Not for Profit Corporation          40.59065
## 889                12208 Not for Profit Corporation          43.08421
## 890                   NA                        LLC          40.67492
## 891                   NA Not for Profit Corporation          40.71370
## 892                   NA Not for Profit Corporation          43.20758
## 893                10013               Municipality          40.84848
## 894                14203 Not for Profit Corporation          42.82701
## 895                11747 Not for Profit Corporation          40.72585
## 896                   NA Not for Profit Corporation          43.23114
## 897                   NA Not for Profit Corporation          42.94569
## 898                   NA                        LLC          40.57216
## 899                11042 Not for Profit Corporation          40.58414
## 900                   NA                        LLC          43.03998
## 901                   NA Public Benefit Corporation          42.90081
## 902                   NA Not for Profit Corporation          42.88652
## 903                   NA       Business Corporation          41.01103
## 904                14203 Not for Profit Corporation          42.17238
## 905                   NA Not for Profit Corporation          43.00640
## 906                   NA Not for Profit Corporation          43.01579
## 907                   NA Not for Profit Corporation          40.74372
## 908                   NA Not for Profit Corporation          40.69984
## 909                11042 Not for Profit Corporation          40.78522
## 910                   NA                        LLC          42.89037
## 911                12601 Not for Profit Corporation          41.92256
## 912                10013               Municipality          40.80604
## 913                   NA               Municipality          40.74960
## 914                   NA Not for Profit Corporation          40.71600
## 915                   NA Not for Profit Corporation          40.70526
## 916                   NA Not for Profit Corporation          43.83734
## 917                   NA Not for Profit Corporation          40.75358
## 918                   NA Not for Profit Corporation          40.66692
## 919                13326 Not for Profit Corporation          42.69579
## 920                12208 Not for Profit Corporation          42.41245
## 921                10029 Not for Profit Corporation          40.61758
## 922                   NA Not for Profit Corporation          40.90374
## 923                18840 Not for Profit Corporation          42.60905
## 924                   NA               Municipality          40.81127
## 925                   NA                        LLC          42.98071
## 926                   NA                        LLC          40.87849
## 927                   NA Not for Profit Corporation          40.65274
## 928                   NA                        LLC          42.97108
## 929                   NA Not for Profit Corporation          42.89314
## 930                   NA Not for Profit Corporation                NA
## 931                   NA Not for Profit Corporation          40.71425
## 932                   NA Not for Profit Corporation          40.92538
## 933                13326 Not for Profit Corporation          42.30474
## 934                   NA Not for Profit Corporation          40.93310
## 935                48152 Not for Profit Corporation          42.86465
## 936                10013               Municipality          40.72169
## 937                   NA                        LLC          43.09175
## 938                   NA                        LLC          40.70794
## 939                   NA                        LLC          40.85538
## 940                   NA                        LLC          40.80921
## 941                   NA Not for Profit Corporation          42.10934
## 942                   NA                        LLC          42.91717
## 943                14850 Not for Profit Corporation          42.44142
## 944                   NA Not for Profit Corporation          43.20900
## 945                10029 Not for Profit Corporation          40.78516
## 946                   NA Not for Profit Corporation          43.06452
## 947                   NA Public Benefit Corporation          41.56884
## 948                   NA Not for Profit Corporation          44.70028
## 949                   NA Not for Profit Corporation          40.77426
## 950                   NA Not for Profit Corporation                NA
## 951                 5401 Not for Profit Corporation          44.70611
## 952                   NA Not for Profit Corporation          43.15477
## 953                12208 Not for Profit Corporation          42.64549
## 954                   NA Not for Profit Corporation          40.83581
## 955                   NA                        LLC                NA
## 956                   NA Not for Profit Corporation          40.62894
## 957                11747 Not for Profit Corporation          40.86766
## 958                48152 Not for Profit Corporation          42.63611
## 959                   NA                        LLC          40.88096
## 960                   NA Not for Profit Corporation          40.82559
## 961                   NA Not for Profit Corporation          41.11274
## 962                   NA                        LLC          40.76556
## 963                   NA                        LLC          40.63186
## 964                   NA       Business Corporation          40.73530
## 965                   NA Not for Profit Corporation          43.63103
## 966                   NA                        LLC          43.04101
## 967                10467 Not for Profit Corporation          41.12528
## 968                   NA                        LLC          40.85962
## 969                   NA                        LLC          42.43221
## 970                   NA Not for Profit Corporation          43.02615
## 971                   NA                        LLC          42.53487
## 972                14611 Not for Profit Corporation          42.86981
## 973                14760 Not for Profit Corporation          42.08583
## 974                   NA       Business Corporation          43.10299
## 975                11212 Not for Profit Corporation          40.67068
## 976                   NA                      State          40.67185
## 977                   NA Not for Profit Corporation          44.59565
## 978                   NA                     County          43.11225
## 979                   NA Public Benefit Corporation          41.71516
## 980                   NA Not for Profit Corporation          40.70757
## 981                11042 Not for Profit Corporation          41.17747
## 982                   NA Not for Profit Corporation          40.79185
## 983                   NA Not for Profit Corporation          40.57715
## 984                   NA Not for Profit Corporation          42.44853
## 985                   NA                        LLC          40.87996
## 986                10901 Not for Profit Corporation          41.37958
## 987                   NA Not for Profit Corporation          44.92843
## 988                   NA                        LLC          40.63644
## 989                   NA Not for Profit Corporation          42.33248
## 990                   NA Not for Profit Corporation          43.12132
## 991                   NA Not for Profit Corporation          40.84996
## 992                   NA Not for Profit Corporation          40.62744
## 993                   NA Not for Profit Corporation          40.72425
## 994                   NA Not for Profit Corporation                NA
## 995                   NA                        LLC          40.97126
## 996                   NA Not for Profit Corporation          43.07386
## 997                10467 Not for Profit Corporation          40.94294
## 998                   NA Not for Profit Corporation          42.94064
## 999                   NA Not for Profit Corporation          40.74590
## 1000                  NA Not for Profit Corporation          40.57354
## 1001               11042 Not for Profit Corporation          40.81024
## 1002                  NA                        LLC          40.61664
## 1003                  NA Not for Profit Corporation          42.10011
## 1004                  NA                        LLC          42.65888
## 1005                  NA       Business Corporation          43.11088
## 1006                  NA Not for Profit Corporation          42.83629
## 1007                  NA                     County          42.64198
## 1008                  NA Not for Profit Corporation          43.07615
## 1009                  NA Not for Profit Corporation          42.96120
## 1010               10467 Not for Profit Corporation          40.97345
## 1011                  NA                     County          42.25453
## 1012                  NA Not for Profit Corporation          43.22364
## 1013                  NA       Business Corporation          40.87805
## 1014               11042 Not for Profit Corporation          41.01597
## 1015               14611 Not for Profit Corporation          43.08939
## 1016                  NA Not for Profit Corporation          42.90039
## 1017                  NA                     County          41.78434
## 1018               11042 Not for Profit Corporation          40.73080
## 1019                  NA Not for Profit Corporation          43.08839
## 1020                  NA Not for Profit Corporation          42.48430
## 1021               12208 Not for Profit Corporation          42.68586
## 1022                  NA Not for Profit Corporation          40.81078
## 1023                  NA Not for Profit Corporation          40.63446
## 1024                  NA                        LLC          40.69708
## 1025                  NA                        LLC          40.88119
## 1026                  NA       Business Corporation          40.88446
## 1027                  NA                        LLC          40.66388
## 1028                  NA                        LLC          42.46262
## 1029                  NA Not for Profit Corporation                NA
## 1030                  NA Not for Profit Corporation          42.86760
## 1031                  NA Not for Profit Corporation          40.69307
## 1032                  NA       Business Corporation          41.64881
## 1033               10029 Not for Profit Corporation          40.65413
## 1034                  NA                        LLC          40.90795
## 1035                  NA                     County          43.35956
## 1036                  NA Not for Profit Corporation          40.79956
## 1037                  NA Not for Profit Corporation                NA
## 1038                  NA Not for Profit Corporation          42.86800
## 1039                  NA Not for Profit Corporation          40.81780
## 1040                  NA Not for Profit Corporation          44.97145
## 1041                  NA                        LLC          40.89048
## 1042               12208 Not for Profit Corporation          42.65250
## 1043                  NA Not for Profit Corporation          42.25562
## 1044                  NA Not for Profit Corporation          40.92057
## 1045                  NA                        LLC          43.04930
## 1046                  NA                        LLC          40.80866
## 1047                  NA       Business Corporation          40.67810
## 1048                  NA Not for Profit Corporation          40.63397
## 1049               11042 Not for Profit Corporation          40.78590
## 1050                  NA Not for Profit Corporation          40.84153
## 1051                  NA                     County          41.79623
## 1052               10310 Not for Profit Corporation          40.62138
## 1053                  NA Not for Profit Corporation          42.91772
## 1054                  NA Not for Profit Corporation          44.14288
## 1055                  NA               Municipality          40.70436
## 1056                  NA Not for Profit Corporation          40.76710
## 1057                  NA Not for Profit Corporation          43.22364
## 1058                  NA Not for Profit Corporation          41.33666
## 1059               12540 Not for Profit Corporation          41.53185
## 1060                  NA       Business Corporation          40.74558
## 1061                  NA Not for Profit Corporation          40.70915
## 1062                  NA Not for Profit Corporation          43.40340
## 1063                  NA Not for Profit Corporation          40.74593
## 1064                  NA Not for Profit Corporation          43.01030
## 1065                  NA                     County          43.11225
## 1066                  NA                     County          41.40260
## 1067                  NA                        LLC          40.61515
## 1068               10595 Not for Profit Corporation          41.92643
## 1069               14611 Not for Profit Corporation          43.07974
## 1070               48152 Not for Profit Corporation          42.64162
## 1071               11747 Not for Profit Corporation          40.71286
## 1072                  NA Not for Profit Corporation          40.81541
## 1073                  NA Not for Profit Corporation          42.12817
## 1074               13326 Not for Profit Corporation          42.59744
## 1075               12601 Not for Profit Corporation          41.69452
## 1076                  NA                      State          43.04525
## 1077                  NA Not for Profit Corporation          43.08696
## 1078                  NA       Business Corporation          42.45564
## 1079                  NA Not for Profit Corporation          42.97849
## 1080               12208 Not for Profit Corporation          42.24624
## 1081                  NA Not for Profit Corporation          42.82588
## 1082                  NA Not for Profit Corporation          40.70244
## 1083               48152 Not for Profit Corporation          42.77070
## 1084                  NA                        LLC          42.95640
## 1085                  NA                        LLC          41.70524
## 1086               13326 Not for Profit Corporation          42.68187
## 1087               10701 Not for Profit Corporation          41.02845
## 1088                  NA                        LLC          40.64107
## 1089                  NA Not for Profit Corporation          40.80114
## 1090                  NA Not for Profit Corporation          43.95674
## 1091                  NA Not for Profit Corporation          42.94237
## 1092               14611 Not for Profit Corporation          43.13020
## 1093               10013               Municipality          40.73480
## 1094               13326 Not for Profit Corporation          43.02560
## 1095                  NA Not for Profit Corporation          40.75553
## 1096                  NA Not for Profit Corporation          40.82158
## 1097                  NA       Business Corporation          40.79274
## 1098                  NA Not for Profit Corporation          40.77426
## 1099                  NA Not for Profit Corporation          40.59356
## 1100               13326 Not for Profit Corporation          42.17561
## 1101                  NA Not for Profit Corporation          40.63519
## 1102               11042 Not for Profit Corporation          40.76442
## 1103                  NA Not for Profit Corporation          40.75814
## 1104                  NA Not for Profit Corporation          43.07235
## 1105                  NA Not for Profit Corporation          40.76479
## 1106                  NA Not for Profit Corporation          42.31118
## 1107               13326 Not for Profit Corporation          42.69579
## 1108                  NA                        LLC          40.76418
## 1109               14620 Not for Profit Corporation          43.17955
## 1110                  NA                        LLC          40.58581
## 1111               12208 Not for Profit Corporation          42.35048
## 1112                  NA Not for Profit Corporation          43.05376
## 1113                  NA Not for Profit Corporation          41.23604
## 1114                  NA Not for Profit Corporation          44.32552
## 1115                  NA Not for Profit Corporation          40.70182
## 1116                  NA                     County          40.82410
## 1117                  NA Not for Profit Corporation          40.66989
## 1118                  NA               Municipality          40.57610
## 1119                  NA Not for Profit Corporation          41.34617
## 1120                  NA Not for Profit Corporation          40.61730
## 1121               10013               Municipality          40.82154
## 1122                  NA       Business Corporation                NA
## 1123               48152 Not for Profit Corporation          42.77272
## 1124                  NA       Business Corporation          40.72481
## 1125                  NA Not for Profit Corporation          43.31348
## 1126                  NA       Business Corporation          40.60849
## 1127               14642 Not for Profit Corporation          43.11218
## 1128                  NA Not for Profit Corporation                NA
## 1129               10065 Not for Profit Corporation          40.74297
## 1130               11042 Not for Profit Corporation          40.60525
## 1131               10029 Not for Profit Corporation          40.79931
## 1132                  NA Not for Profit Corporation          42.90926
## 1133                  NA                        LLC          40.90529
## 1134               10029 Not for Profit Corporation          40.72310
## 1135                  NA Not for Profit Corporation          41.08859
## 1136                  NA       Business Corporation          40.67343
## 1137               14611 Not for Profit Corporation          43.17073
## 1138                  NA Not for Profit Corporation                NA
## 1139               14611 Not for Profit Corporation          43.16602
## 1140               10029 Not for Profit Corporation          40.79504
## 1141                  NA                        LLC          44.08820
## 1142               11042 Not for Profit Corporation          40.68179
## 1143                  NA Not for Profit Corporation          43.17647
## 1144                  NA       Business Corporation          40.58470
## 1145               11042 Not for Profit Corporation          40.58664
## 1146               11042 Not for Profit Corporation          40.51677
## 1147                  NA                        LLC          43.00555
## 1148                  NA Not for Profit Corporation          42.97289
## 1149                  NA Not for Profit Corporation          40.93289
## 1150                  NA Not for Profit Corporation          42.09261
## 1151                  NA Not for Profit Corporation          43.04181
## 1152                  NA Not for Profit Corporation          41.07482
## 1153                  NA                     County          42.10086
## 1154                  NA                        LLC          40.78194
## 1155                  NA Not for Profit Corporation          40.98422
## 1156                  NA Not for Profit Corporation          41.08387
## 1157                5401 Not for Profit Corporation          44.85677
## 1158               14760 Not for Profit Corporation          42.07709
## 1159               14611 Not for Profit Corporation          43.26612
## 1160               13203 Not for Profit Corporation          43.10193
## 1161                  NA                        LLC          40.59526
## 1162                  NA                        LLC          41.29664
## 1163               10013               Municipality          40.82120
## 1164                  NA                     County          42.65202
## 1165                  NA                     County          40.91237
## 1166                5401 Not for Profit Corporation          44.70268
## 1167                  NA                        LLC          40.82557
## 1168                  NA Not for Profit Corporation          42.63290
## 1169               11554                     County          40.63263
## 1170                  NA Not for Profit Corporation          43.98830
## 1171               10467 Not for Profit Corporation          40.81482
## 1172                  NA Not for Profit Corporation          40.91228
## 1173                  NA Not for Profit Corporation          42.87598
## 1174               14611 Not for Profit Corporation          43.06082
## 1175                  NA       Business Corporation          41.66512
## 1176                  NA                     County          42.72829
## 1177                  NA                     County          42.68854
## 1178               11212 Not for Profit Corporation          40.65944
## 1179                  NA Not for Profit Corporation          40.68962
## 1180               10467 Not for Profit Corporation                NA
## 1181                  NA               Municipality          40.88051
## 1182               11747 Not for Profit Corporation          40.73497
## 1183               14611 Not for Profit Corporation          43.20224
## 1184                  NA Not for Profit Corporation          41.50069
## 1185                  NA Not for Profit Corporation          44.68113
## 1186                  NA Not for Profit Corporation          43.31914
## 1187                  NA Not for Profit Corporation          42.87503
## 1188                  NA Not for Profit Corporation          40.81921
## 1189                  NA       Business Corporation          40.72842
## 1190               11042 Not for Profit Corporation          40.73341
## 1191                  NA                        LLC          42.70221
## 1192                  NA Not for Profit Corporation          42.82618
## 1193               12449 Not for Profit Corporation          41.92256
## 1194                  NA Not for Profit Corporation          40.80533
## 1195                  NA Not for Profit Corporation          42.89389
## 1196                  NA                        LLC          42.89284
## 1197                  NA Not for Profit Corporation          40.71865
## 1198                  NA Not for Profit Corporation          43.02067
## 1199                  NA Not for Profit Corporation          40.67600
## 1200                  NA Not for Profit Corporation          44.74432
## 1201                  NA                        LLC          40.59493
## 1202                5401 Not for Profit Corporation          44.70266
## 1203               12208 Not for Profit Corporation          42.65839
## 1204                  NA Not for Profit Corporation          43.05497
## 1205                  NA Not for Profit Corporation          40.61007
## 1206                  NA Not for Profit Corporation          40.69716
## 1207                  NA       Business Corporation          40.79405
## 1208                  NA Not for Profit Corporation          40.66789
## 1209                  NA Not for Profit Corporation          40.59621
## 1210                  NA Not for Profit Corporation          41.18141
## 1211                  NA                        LLC          42.10098
## 1212                  NA Not for Profit Corporation          40.79006
## 1213                  NA Not for Profit Corporation          43.12807
## 1214                  NA Not for Profit Corporation          40.84651
## 1215                  NA Not for Profit Corporation          40.67452
## 1216                  NA Not for Profit Corporation          40.84073
## 1217                  NA Not for Profit Corporation          41.92614
## 1218                  NA                        LLC                NA
## 1219                  NA Not for Profit Corporation          43.06073
## 1220                  NA                        LLC          40.71208
## 1221               11212 Not for Profit Corporation          40.65436
## 1222                  NA Not for Profit Corporation          42.94411
## 1223               11042 Not for Profit Corporation          40.77044
## 1224                  NA Not for Profit Corporation          40.75889
## 1225                  NA Not for Profit Corporation          40.87695
## 1226                  NA                        LLC          42.59522
## 1227               10029 Not for Profit Corporation          40.79524
## 1228                  NA Not for Profit Corporation                NA
## 1229                  NA                        LLC          40.67629
## 1230                  NA Not for Profit Corporation          40.66581
## 1231               14611 Not for Profit Corporation          43.12002
## 1232                  NA                        LLC          42.31286
## 1233                  NA                        LLC          43.17830
## 1234                  NA Not for Profit Corporation                NA
## 1235                  NA                      State          40.90247
## 1236                  NA Not for Profit Corporation          43.17064
## 1237               10065 Not for Profit Corporation          40.75485
## 1238                  NA                      State          40.74292
## 1239                  NA       Business Corporation          43.21297
## 1240                  NA       Business Corporation          40.59404
## 1241                  NA Not for Profit Corporation          42.12414
## 1242                  NA                        LLC          41.01938
## 1243                  NA Not for Profit Corporation          40.87313
## 1244               14611 Not for Profit Corporation          43.21013
## 1245                  NA Not for Profit Corporation          43.31308
## 1246               12208 Not for Profit Corporation                NA
## 1247                  NA                        LLC          42.91440
## 1248               14611 Not for Profit Corporation          43.15857
## 1249                  NA Not for Profit Corporation          40.81007
## 1250                  NA                        LLC          40.82590
## 1251                  NA       Business Corporation          40.70909
## 1252                  NA Not for Profit Corporation          43.07869
## 1253                  NA Not for Profit Corporation          43.13942
## 1254                  NA Not for Profit Corporation          41.36994
## 1255               14905 Not for Profit Corporation          42.09145
## 1256               13326 Not for Profit Corporation          42.30471
## 1257                  NA Not for Profit Corporation          42.45964
## 1258                  NA                        LLC          41.19659
## 1259                  NA Not for Profit Corporation          40.84729
## 1260                  NA Not for Profit Corporation          42.90828
## 1261               11042 Not for Profit Corporation          40.62706
## 1262               10467 Not for Profit Corporation          40.82548
## 1263               11042 Not for Profit Corporation          40.78183
## 1264               12449 Not for Profit Corporation          42.07649
## 1265                  NA Not for Profit Corporation          42.08654
## 1266                  NA Not for Profit Corporation                NA
## 1267                  NA       Business Corporation          44.68507
## 1268                  NA Not for Profit Corporation          42.87575
## 1269                  NA Not for Profit Corporation          40.79590
## 1270                  NA Not for Profit Corporation          42.60212
## 1271                  NA Not for Profit Corporation          40.86055
## 1272                  NA Not for Profit Corporation                NA
## 1273               13676 Not for Profit Corporation          44.67615
## 1274                  NA                        LLC          40.91285
## 1275                  NA Not for Profit Corporation          41.02507
## 1276                  NA Not for Profit Corporation          40.82971
## 1277                  NA Not for Profit Corporation          40.85355
## 1278               14611 Not for Profit Corporation          42.71801
## 1279               10512 Not for Profit Corporation          41.24473
## 1280               13502 Not for Profit Corporation          43.09494
## 1281                  NA Not for Profit Corporation          41.16157
## 1282                  NA       Business Corporation          40.83062
## 1283               10595 Not for Profit Corporation          42.14769
## 1284                  NA Not for Profit Corporation          40.83129
## 1285                  NA                        LLC          43.08662
## 1286                  NA Not for Profit Corporation          42.94988
## 1287                  NA                     County          43.11157
## 1288               13502 Not for Profit Corporation          43.05390
## 1289                  NA Not for Profit Corporation          40.73537
## 1290                  NA Not for Profit Corporation          43.14952
## 1291                  NA Not for Profit Corporation          40.85830
## 1292                  NA                        LLC          40.87690
## 1293                  NA Not for Profit Corporation                NA
## 1294                  NA Not for Profit Corporation          40.91070
## 1295                  NA                        LLC          40.74162
## 1296                  NA Not for Profit Corporation          40.86603
## 1297                  NA                        LLC                NA
## 1298                  NA                      State          43.04145
## 1299                  NA                      State          41.21389
## 1300                  NA Not for Profit Corporation          43.08825
## 1301               10701 Not for Profit Corporation          40.96826
## 1302                  NA Not for Profit Corporation          40.80791
## 1303                  NA                        LLC          40.58447
## 1304                  NA                        LLC          42.10630
## 1305                  NA       Business Corporation          40.76337
## 1306                  NA Not for Profit Corporation          40.63484
## 1307               12208 Not for Profit Corporation          42.29210
## 1308                  NA Not for Profit Corporation          43.00012
## 1309                  NA Not for Profit Corporation          43.95024
## 1310               11042 Not for Profit Corporation          40.75891
## 1311                  NA Not for Profit Corporation          42.35154
## 1312                  NA       Business Corporation          40.67950
## 1313                  NA Not for Profit Corporation          42.17561
## 1314               48152 Not for Profit Corporation          42.77599
## 1315                  NA Not for Profit Corporation          43.22008
## 1316                  NA                        LLC          40.82717
## 1317                  NA Not for Profit Corporation          40.96985
## 1318                  NA       Business Corporation          41.00857
## 1319                  NA       Business Corporation          43.11218
## 1320                  NA Not for Profit Corporation          40.65489
## 1321               11042 Not for Profit Corporation          40.58249
## 1322                  NA Not for Profit Corporation          40.62080
## 1323                  NA Not for Profit Corporation          40.84141
## 1324                  NA Not for Profit Corporation          43.15723
## 1325                  NA Not for Profit Corporation          44.58916
## 1326               10467 Not for Profit Corporation          40.83416
## 1327                  NA Not for Profit Corporation                NA
## 1328               11212 Not for Profit Corporation          40.65507
## 1329                  NA Not for Profit Corporation          41.02061
## 1330               14203 Not for Profit Corporation          42.93753
## 1331                  NA                      State          40.67970
## 1332                  NA                        LLC          41.73823
## 1333                  NA Not for Profit Corporation          42.97006
## 1334               10467 Not for Profit Corporation          40.86969
## 1335                  NA Not for Profit Corporation          41.73799
## 1336               10013               Municipality          40.70793
## 1337               14611 Not for Profit Corporation          43.05973
## 1338                  NA Not for Profit Corporation          43.97622
## 1339               14611 Not for Profit Corporation          43.06918
## 1340                  NA Not for Profit Corporation          40.69716
## 1341                  NA Not for Profit Corporation          40.85445
## 1342                  NA Not for Profit Corporation          40.76642
## 1343               11042 Not for Profit Corporation          40.99490
## 1344               12208 Not for Profit Corporation          42.73115
## 1345                  NA Not for Profit Corporation          42.95503
## 1346               10990 Not for Profit Corporation          41.27238
## 1347                5401 Not for Profit Corporation          43.94987
## 1348                  NA                     County          42.14146
## 1349                  NA                     County          43.45039
## 1350                  NA                        LLC          40.79064
## 1351                  NA Not for Profit Corporation          42.68082
## 1352                  NA Not for Profit Corporation                NA
## 1353                  NA                        LLC          43.04676
## 1354                  NA                        LLC          40.87519
## 1355                  NA Not for Profit Corporation          43.23591
## 1356                  NA       Business Corporation          40.84345
## 1357                  NA                        LLC          40.76588
## 1358               13502 Not for Profit Corporation          43.09818
## 1359                  NA                        LLC          40.93104
## 1360               10013               Municipality          40.62026
## 1361                  NA Not for Profit Corporation          43.45430
## 1362                  NA Not for Profit Corporation          40.62897
## 1363                  NA                        LLC          43.04011
## 1364                  NA Not for Profit Corporation          40.74655
## 1365                  NA Not for Profit Corporation          42.67847
## 1366                  NA Not for Profit Corporation          40.76535
## 1367                  NA       Business Corporation          40.63229
## 1368                  NA       Business Corporation          43.14928
## 1369                  NA Not for Profit Corporation          41.92693
## 1370               11042 Not for Profit Corporation          40.60405
## 1371                  NA Not for Profit Corporation                NA
## 1372               13326 Not for Profit Corporation                NA
## 1373               48152 Not for Profit Corporation          42.73439
## 1374                  NA Not for Profit Corporation          40.73788
## 1375                  NA Not for Profit Corporation          43.06810
## 1376                  NA Not for Profit Corporation          40.76574
## 1377                  NA                        LLP          42.01222
## 1378                  NA                     County          44.14914
## 1379                  NA Not for Profit Corporation          40.69692
## 1380                  NA Not for Profit Corporation          42.09278
## 1381                  NA               Municipality          40.81354
## 1382               10029 Not for Profit Corporation          40.73267
## 1383               11042 Not for Profit Corporation          40.75363
## 1384                  NA                        LLC          41.79480
## 1385                  NA                        LLC          41.17626
## 1386               10029 Not for Profit Corporation          40.61795
## 1387               11042 Not for Profit Corporation          40.77281
## 1388               11554                     County          40.68501
## 1389                  NA Not for Profit Corporation                NA
## 1390               12208 Not for Profit Corporation          42.97040
## 1391               12208 Not for Profit Corporation          42.73432
## 1392               11042 Not for Profit Corporation          40.76681
## 1393                  NA                     County          43.61854
## 1394                  NA                        LLC          40.65859
## 1395                  NA                        LLC                NA
## 1396                  NA       Business Corporation          40.87598
## 1397                  NA       Business Corporation          40.63428
## 1398               14642 Not for Profit Corporation          43.14239
## 1399                  NA Not for Profit Corporation          42.32906
## 1400                  NA Not for Profit Corporation          40.92372
## 1401                  NA Not for Profit Corporation          43.25534
## 1402               12208 Not for Profit Corporation          43.09248
## 1403               13326 Not for Profit Corporation          42.53102
## 1404               10467 Not for Profit Corporation          40.85728
## 1405                  NA Not for Profit Corporation          40.76131
## 1406               12208 Not for Profit Corporation          42.72533
## 1407               11042 Not for Profit Corporation          40.63484
## 1408               13326 Not for Profit Corporation          42.70253
## 1409                  NA Not for Profit Corporation          40.84905
## 1410               48152 Not for Profit Corporation          42.77599
## 1411                  NA Not for Profit Corporation          40.63065
## 1412               12208 Not for Profit Corporation          42.36534
## 1413                  NA Not for Profit Corporation          40.69698
## 1414               10467 Not for Profit Corporation          40.82099
## 1415                  NA Not for Profit Corporation          43.22993
## 1416                  NA Not for Profit Corporation          43.33118
## 1417                  NA Not for Profit Corporation          40.83026
## 1418               10029 Not for Profit Corporation          40.73907
## 1419               10467 Not for Profit Corporation          40.81911
## 1420                  NA Not for Profit Corporation          42.71245
## 1421               12208 Not for Profit Corporation          42.68003
## 1422                  NA Not for Profit Corporation          40.64032
## 1423               13502 Not for Profit Corporation          42.92683
## 1424                  NA Not for Profit Corporation          43.03240
## 1425                  NA Not for Profit Corporation          40.64247
## 1426                  NA                        LLC          44.26597
## 1427                  NA Not for Profit Corporation          42.67071
## 1428                  NA                        LLC                NA
## 1429               12540 Not for Profit Corporation          41.56211
## 1430                  NA                      State          43.04566
## 1431                  NA                        LLC          41.70305
## 1432               14611 Not for Profit Corporation          43.19551
## 1433                  NA Not for Profit Corporation          43.11348
## 1434               10467 Not for Profit Corporation          40.87995
## 1435                  NA Not for Profit Corporation          41.44852
## 1436                  NA       Business Corporation          40.68281
## 1437                  NA Not for Profit Corporation          43.21511
## 1438               10467 Not for Profit Corporation          40.94287
## 1439                  NA Not for Profit Corporation          43.00084
## 1440               14611 Not for Profit Corporation          43.20887
## 1441               11042 Not for Profit Corporation          40.92629
## 1442                  NA Not for Profit Corporation          43.96853
## 1443                  NA Not for Profit Corporation          40.64479
## 1444                  NA                        LLC          42.68592
## 1445                  NA                        LLC          40.58538
## 1446                  NA Not for Profit Corporation          40.67303
## 1447               12208 Not for Profit Corporation          42.74338
## 1448                  NA Not for Profit Corporation          41.95506
## 1449                  NA Not for Profit Corporation          41.10535
## 1450                  NA Not for Profit Corporation          42.66268
## 1451               10013               Municipality          40.81133
## 1452                  NA       Business Corporation          40.86207
## 1453               10467 Not for Profit Corporation          40.85985
## 1454                  NA                        LLC          40.59902
## 1455                  NA                     County          43.79568
## 1456               14611 Not for Profit Corporation          43.05716
## 1457               48152 Not for Profit Corporation          42.70125
## 1458                  NA       Business Corporation          43.06947
## 1459                  NA Not for Profit Corporation          43.15509
## 1460                  NA                     County          43.89560
## 1461                  NA Not for Profit Corporation          41.74490
## 1462               11042 Not for Profit Corporation          41.10887
## 1463               14905 Not for Profit Corporation                NA
## 1464                  NA Not for Profit Corporation          43.44489
## 1465                  NA                        LLC          40.97074
## 1466                  NA                        LLC          40.91195
## 1467               14203 Not for Profit Corporation          42.82737
## 1468                  NA Not for Profit Corporation          44.08820
## 1469                  NA                        LLC          40.85696
## 1470                  NA Not for Profit Corporation          41.08653
## 1471                  NA                        LLC          40.62212
## 1472               48152 Not for Profit Corporation          42.69647
## 1473                  NA Not for Profit Corporation          42.11581
## 1474                  NA Not for Profit Corporation          43.39719
## 1475                  NA Not for Profit Corporation          42.79698
## 1476                  NA                        LLC          43.07231
## 1477                  NA Not for Profit Corporation          40.80998
## 1478                  NA Not for Profit Corporation                NA
## 1479               10065 Not for Profit Corporation          41.29151
## 1480               11042 Not for Profit Corporation          41.19677
## 1481                  NA                        LLC          40.97219
## 1482                  NA Not for Profit Corporation          42.50858
## 1483                  NA Not for Profit Corporation          40.57964
## 1484                  NA Not for Profit Corporation                NA
## 1485                  NA                        LLC          43.03356
## 1486                  NA                        LLC          41.32119
## 1487                  NA       Business Corporation          40.63070
## 1488                  NA Not for Profit Corporation                NA
## 1489                  NA                        LLC          40.71599
## 1490                  NA       Business Corporation          40.84509
## 1491                  NA Not for Profit Corporation          41.11176
## 1492               11042 Not for Profit Corporation          40.78522
## 1493                  NA Not for Profit Corporation          43.22008
## 1494                  NA Not for Profit Corporation          43.12859
## 1495                  NA                      State          40.90353
## 1496                  NA       Business Corporation          40.74022
## 1497                  NA Not for Profit Corporation          41.10532
## 1498                  NA                     County          40.81451
## 1499                  NA Not for Profit Corporation          43.28713
## 1500                  NA Not for Profit Corporation          42.97695
## 1501                  NA Not for Profit Corporation          43.16917
## 1502               10467 Not for Profit Corporation          40.87995
## 1503                  NA Not for Profit Corporation          41.04437
## 1504                  NA Not for Profit Corporation          42.99556
## 1505               12540 Not for Profit Corporation          41.93422
## 1506                  NA                        LLC          43.07989
## 1507                  NA                     County          42.27729
## 1508                  NA                        LLC          40.70635
## 1509                  NA                        LLC          40.88100
## 1510                  NA Not for Profit Corporation          42.93720
## 1511               14611 Not for Profit Corporation          43.15039
## 1512                  NA Not for Profit Corporation          40.88782
## 1513                  NA Not for Profit Corporation          40.83925
## 1514                  NA Not for Profit Corporation                NA
## 1515                  NA Not for Profit Corporation          42.81160
## 1516               10467 Not for Profit Corporation          40.90020
## 1517                  NA Not for Profit Corporation          42.07837
## 1518                  NA Not for Profit Corporation          40.63169
## 1519                  NA Not for Profit Corporation          40.69343
## 1520                  NA       Business Corporation                NA
## 1521                  NA Not for Profit Corporation          40.84312
## 1522                  NA Public Benefit Corporation          41.50967
## 1523                  NA       Business Corporation          40.70700
## 1524               14618 Not for Profit Corporation          43.10462
## 1525                  NA       Business Corporation          40.62789
## 1526               12601 Not for Profit Corporation          41.69589
## 1527               10467 Not for Profit Corporation          40.81949
## 1528                  NA                        LLC          40.89180
## 1529                  NA       Business Corporation          40.70822
## 1530                  NA Not for Profit Corporation          42.90956
## 1531                  NA Not for Profit Corporation          40.82242
## 1532                  NA Public Benefit Corporation          41.80550
## 1533                  NA                        LLC          43.19023
## 1534               10467 Not for Profit Corporation          40.82243
## 1535                  NA Not for Profit Corporation                NA
## 1536               11042 Not for Profit Corporation          41.27494
## 1537                  NA       Business Corporation          40.88047
## 1538               14611 Not for Profit Corporation          43.18948
## 1539                  NA                        LLC          42.91660
## 1540               14620 Not for Profit Corporation          43.07984
## 1541                  NA                        LLC          40.77985
## 1542               12208 Not for Profit Corporation          42.63991
## 1543                  NA Not for Profit Corporation          44.70028
## 1544                  NA                        LLC          40.72275
## 1545                  NA                        LLC                NA
## 1546                  NA                        LLC          42.45560
## 1547                  NA Not for Profit Corporation          40.76408
## 1548                  NA Not for Profit Corporation          42.99902
## 1549                  NA Not for Profit Corporation          40.74527
## 1550                  NA       Business Corporation          43.11225
## 1551               11042 Not for Profit Corporation          40.93364
## 1552                  NA Not for Profit Corporation          42.95372
## 1553                5401 Not for Profit Corporation          44.15943
## 1554                  NA                     County          42.72924
## 1555                  NA Not for Profit Corporation          40.64957
## 1556                  NA       Business Corporation          41.91711
## 1557                  NA                        LLC          40.81473
## 1558                  NA       Business Corporation          40.88578
## 1559               10701 Not for Profit Corporation          40.97255
## 1560               10029 Not for Profit Corporation          40.74568
## 1561                  NA                        LLC          42.92160
## 1562                  NA Not for Profit Corporation          40.96985
## 1563                  NA               Municipality          40.58662
## 1564                  NA Not for Profit Corporation          40.67495
## 1565                  NA       Business Corporation          42.12127
## 1566                  NA                      State          40.88576
## 1567               10029 Not for Profit Corporation          40.79271
## 1568                  NA                        LLC          40.69101
## 1569                  NA Not for Profit Corporation          43.97622
## 1570               13326 Not for Profit Corporation          43.04975
## 1571               14642 Not for Profit Corporation          43.19070
## 1572                  NA                        LLC          40.74205
## 1573                  NA Not for Profit Corporation          40.90923
## 1574                  NA Not for Profit Corporation          40.64074
## 1575               10467 Not for Profit Corporation          41.00428
## 1576                  NA                        LLC          40.77518
## 1577               11747 Not for Profit Corporation          40.69649
## 1578                  NA Not for Profit Corporation          42.44015
## 1579                  NA                        LLC          40.71914
## 1580                  NA Not for Profit Corporation          40.82471
## 1581               14611 Not for Profit Corporation          43.19524
## 1582                  NA Not for Profit Corporation          43.25294
## 1583               11042 Not for Profit Corporation          40.87951
## 1584                  NA                        LLC          40.75069
## 1585               14611 Not for Profit Corporation          43.09874
## 1586                  NA                      State          40.78044
## 1587                  NA Not for Profit Corporation          42.86084
## 1588                  NA Not for Profit Corporation          42.86039
## 1589                  NA Not for Profit Corporation          42.09584
## 1590                  NA Not for Profit Corporation          43.03186
## 1591                  NA                        LLC          42.94953
## 1592                  NA Not for Profit Corporation          44.33821
## 1593                  NA Not for Profit Corporation          40.75435
## 1594                  NA Not for Profit Corporation          42.21380
## 1595               48152 Not for Profit Corporation          43.08703
## 1596                  NA Not for Profit Corporation          40.82114
## 1597               11777 Not for Profit Corporation          40.85831
## 1598                  NA                        LLC          42.83206
## 1599                  NA Not for Profit Corporation          40.65489
## 1600                  NA Not for Profit Corporation          40.94405
## 1601               10467 Not for Profit Corporation          40.82591
## 1602               12208 Not for Profit Corporation          43.10390
## 1603                  NA                        LLC          40.88100
## 1604                  NA Not for Profit Corporation          40.83654
## 1605               12208 Not for Profit Corporation          42.68315
## 1606                  NA Not for Profit Corporation          40.62358
## 1607               11042 Not for Profit Corporation          40.72707
## 1608                  NA Not for Profit Corporation          41.33968
## 1609               11212 Not for Profit Corporation          40.65317
## 1610                  NA Not for Profit Corporation          40.81581
## 1611                  NA Not for Profit Corporation          40.81376
## 1612                  NA Not for Profit Corporation          40.73788
## 1613                  NA                        LLC          40.87027
## 1614                  NA       Business Corporation          40.69704
## 1615                  NA                     County          40.82613
## 1616               10029 Not for Profit Corporation          40.73867
## 1617               12208 Not for Profit Corporation          43.08375
## 1618                  NA       Business Corporation          43.09750
## 1619                  NA Not for Profit Corporation          43.26702
## 1620                  NA Not for Profit Corporation          40.83497
## 1621                  NA Not for Profit Corporation          42.79794
## 1622                  NA                     County          43.11451
## 1623                  NA                Partnership          40.59485
## 1624                  NA                        LLP          43.08356
## 1625                  NA                        LLC                NA
## 1626               12449 Not for Profit Corporation          42.14769
## 1627                  NA                      State          40.68536
## 1628               10467 Not for Profit Corporation          40.89457
## 1629                  NA                 Individual          40.59373
## 1630                  NA       Business Corporation          42.81553
## 1631                  NA Not for Profit Corporation          42.89905
## 1632                  NA Not for Profit Corporation          40.83395
## 1633                  NA Not for Profit Corporation          40.81722
## 1634                  NA                        LLC          40.84260
## 1635                  NA                        LLC          40.73886
## 1636                  NA                        LLC          40.66311
## 1637                  NA Not for Profit Corporation          42.45584
## 1638                  NA                        LLC          40.87442
## 1639                5401 Not for Profit Corporation          44.82405
## 1640               11042 Not for Profit Corporation          40.77378
## 1641                  NA Not for Profit Corporation          42.25846
## 1642                  NA       Business Corporation          40.63752
## 1643               14620 Not for Profit Corporation          43.06569
## 1644                  NA Not for Profit Corporation          41.73219
## 1645                  NA Not for Profit Corporation          42.08654
## 1646                  NA Not for Profit Corporation          40.99763
## 1647                  NA       Business Corporation          40.84832
## 1648                  NA Not for Profit Corporation          40.81542
## 1649               10013               Municipality          40.69807
## 1650                  NA                        LLC          41.38907
## 1651                  NA Not for Profit Corporation          40.69704
## 1652                  NA               Municipality          40.69181
## 1653               10924 Not for Profit Corporation          41.74115
## 1654                  NA                     County          41.02899
## 1655               10029 Not for Profit Corporation          40.65342
## 1656                  NA       Business Corporation          40.59535
## 1657               13502 Not for Profit Corporation          43.04831
## 1658                  NA Not for Profit Corporation          41.70396
## 1659               11042 Not for Profit Corporation          40.75891
## 1660                  NA Not for Profit Corporation          43.33856
## 1661                  NA Not for Profit Corporation          40.76033
## 1662               12208 Not for Profit Corporation          42.68621
## 1663                5401 Not for Profit Corporation          44.70022
## 1664                  NA Not for Profit Corporation          40.65899
## 1665                  NA Not for Profit Corporation          43.32690
## 1666                  NA Not for Profit Corporation          43.03535
## 1667                  NA Not for Profit Corporation          40.71873
## 1668               14203 Not for Profit Corporation          42.73224
## 1669                  NA Not for Profit Corporation          42.14800
## 1670                  NA Not for Profit Corporation          40.83656
## 1671                  NA                        LLC          40.89982
## 1672               48152 Not for Profit Corporation          42.71217
## 1673               13502 Not for Profit Corporation          43.08016
## 1674                  NA Not for Profit Corporation          42.90175
## 1675                  NA Not for Profit Corporation          43.44298
## 1676                  NA       Business Corporation          41.45294
## 1677                  NA Not for Profit Corporation          42.97416
## 1678                  NA       Business Corporation          40.74432
## 1679               13326 Not for Profit Corporation          42.45723
## 1680                  NA                     County          40.91326
## 1681               13326 Not for Profit Corporation          42.75246
## 1682                  NA Not for Profit Corporation          40.87248
## 1683                  NA Not for Profit Corporation          42.94146
## 1684                  NA                        LLC          40.88160
## 1685                  NA       Business Corporation          40.67979
## 1686               14611 Not for Profit Corporation          43.19784
## 1687               11777 Not for Profit Corporation          40.89691
## 1688                  NA Not for Profit Corporation          40.73852
## 1689               14611 Not for Profit Corporation          43.19126
## 1690               14203 Not for Profit Corporation          43.10101
## 1691                  NA                     County          42.10534
## 1692                  NA Not for Profit Corporation          40.67839
## 1693                  NA                        LLC          40.77669
## 1694                  NA Not for Profit Corporation          43.55331
## 1695                  NA       Business Corporation          40.61514
## 1696               13502 Not for Profit Corporation          43.11724
## 1697                  NA Not for Profit Corporation          42.14507
## 1698                  NA Not for Profit Corporation          40.80055
## 1699                  NA                     County          42.66364
## 1700                  NA Not for Profit Corporation          40.66544
## 1701                  NA                        LLC          43.00865
## 1702                  NA Not for Profit Corporation          43.34635
## 1703                  NA                        LLC          40.64805
## 1704                  NA Not for Profit Corporation          40.64644
## 1705               13676 Not for Profit Corporation          44.33764
## 1706                  NA Not for Profit Corporation          40.82772
## 1707                  NA Not for Profit Corporation          40.82228
## 1708                  NA                        LLC          40.60116
## 1709                  NA       Business Corporation          40.75734
## 1710                  NA                        LLC          40.64106
## 1711                  NA Not for Profit Corporation          40.86088
## 1712               12208 Not for Profit Corporation          42.86921
## 1713               48152 Not for Profit Corporation          42.65330
## 1714                  NA       Business Corporation                NA
## 1715                  NA       Business Corporation          40.58419
## 1716                  NA                        LLC          42.92111
## 1717                  NA Not for Profit Corporation          43.31399
## 1718                  NA       Business Corporation          40.58260
## 1719                  NA       Business Corporation          40.66359
## 1720                  NA               Municipality          40.73961
## 1721                  NA                        LLC          40.78198
## 1722               13676 Not for Profit Corporation          44.50563
## 1723                  NA                        LLC          40.78338
## 1724               10013               Municipality          40.75439
## 1725                  NA Not for Profit Corporation          40.91973
## 1726                  NA Not for Profit Corporation          42.75858
## 1727               13326 Not for Profit Corporation                NA
## 1728                  NA Not for Profit Corporation          40.80032
## 1729               14850 Not for Profit Corporation          42.49109
## 1730               11747 Not for Profit Corporation          40.71000
## 1731                  NA                        LLC          43.05871
## 1732                  NA Not for Profit Corporation          41.01081
## 1733               10467 Not for Profit Corporation          40.84438
## 1734                  NA Not for Profit Corporation          40.76592
## 1735                  NA Not for Profit Corporation          42.98892
## 1736                  NA Not for Profit Corporation          42.79680
## 1737                  NA                     County          43.35956
## 1738               10467 Not for Profit Corporation          40.84550
## 1739                  NA                        LLC          40.88165
## 1740                  NA Not for Profit Corporation          43.13073
## 1741                  NA                        LLC          42.23096
## 1742                  NA Not for Profit Corporation          40.68335
## 1743                  NA       Business Corporation          43.11843
## 1744                  NA                     County          42.08697
## 1745                  NA Not for Profit Corporation          40.71106
## 1746               11042 Not for Profit Corporation          41.19396
## 1747                  NA                      State          43.04756
## 1748                  NA Not for Profit Corporation                NA
## 1749                  NA Not for Profit Corporation          40.63623
## 1750                  NA Not for Profit Corporation          42.94116
## 1751               14642 Not for Profit Corporation          43.16165
## 1752                  NA                        LLC          41.52588
## 1753                  NA Not for Profit Corporation          40.75959
## 1754               10595 Not for Profit Corporation          41.92609
## 1755                  NA Not for Profit Corporation          43.04420
## 1756                  NA Not for Profit Corporation          43.40340
## 1757               11042 Not for Profit Corporation          40.93364
## 1758                  NA Not for Profit Corporation          41.04868
## 1759                  NA Not for Profit Corporation          40.69533
## 1760               48152 Not for Profit Corporation          42.73115
## 1761               10467 Not for Profit Corporation          40.90462
## 1762               11212 Not for Profit Corporation          40.66303
## 1763               10467 Not for Profit Corporation          40.82762
## 1764                  NA Not for Profit Corporation          40.82456
## 1765                  NA       Business Corporation          44.67083
## 1766                  NA Not for Profit Corporation          40.97026
## 1767               10467 Not for Profit Corporation          41.12075
## 1768               14203 Not for Profit Corporation          42.97785
## 1769               13326 Not for Profit Corporation          42.41177
## 1770               10029 Not for Profit Corporation          40.70736
## 1771               14905 Not for Profit Corporation          42.37593
## 1772                  NA Not for Profit Corporation          40.82878
## 1773                  NA Not for Profit Corporation          42.31323
## 1774               13326 Not for Profit Corporation          42.69885
## 1775                  NA Not for Profit Corporation                NA
## 1776                  NA                     County          42.53135
## 1777                  NA Not for Profit Corporation          43.15848
## 1778                  NA                        LLC          42.97703
## 1779                  NA                     County          43.04581
## 1780               14611 Not for Profit Corporation          43.19155
## 1781                  NA                        LLC          40.88102
## 1782                  NA Not for Profit Corporation          40.76455
## 1783                  NA                        LLC          44.70490
## 1784                  NA Not for Profit Corporation          42.86566
## 1785               10013               Municipality          40.67850
## 1786                  NA                        LLC          41.69598
## 1787                  NA                        LLC          43.12960
## 1788                  NA       Business Corporation          43.06020
## 1789                  NA                        LLC          42.34627
## 1790                  NA               Municipality          40.80298
## 1791               48152 Not for Profit Corporation          42.67427
## 1792               10029 Not for Profit Corporation          40.64201
## 1793               11042 Not for Profit Corporation          40.64739
## 1794                  NA                      State          43.04533
## 1795               11042 Not for Profit Corporation          40.79350
## 1796                  NA Not for Profit Corporation          42.93039
## 1797                  NA       Business Corporation          42.47207
## 1798                  NA Not for Profit Corporation          40.74170
## 1799               10595 Not for Profit Corporation          42.14769
## 1800                  NA Not for Profit Corporation          42.52577
## 1801                  NA                        LLC          40.59520
## 1802                  NA Not for Profit Corporation          43.09920
## 1803                  NA Not for Profit Corporation          40.83116
## 1804               48152 Not for Profit Corporation          42.64162
## 1805               14611 Not for Profit Corporation          42.96054
## 1806                  NA Not for Profit Corporation          40.72552
## 1807               11042 Not for Profit Corporation          40.72875
## 1808                  NA Not for Profit Corporation          43.12434
## 1809                  NA                      State          40.85572
## 1810                  NA                        LLC          40.87914
## 1811                  NA Not for Profit Corporation          40.70748
## 1812                  NA Not for Profit Corporation          40.85300
## 1813               12208 Not for Profit Corporation          43.07798
## 1814                  NA Not for Profit Corporation          43.02615
## 1815                  NA Not for Profit Corporation          40.66111
## 1816                  NA Not for Profit Corporation          41.70954
## 1817                  NA Not for Profit Corporation          40.74671
## 1818                  NA Not for Profit Corporation          42.58553
## 1819                  NA       Business Corporation          40.84268
## 1820                  NA Not for Profit Corporation          43.30735
## 1821               11042 Not for Profit Corporation          40.93364
## 1822                  NA                        LLC          40.88051
## 1823                  NA       Business Corporation          40.92209
## 1824                  NA Not for Profit Corporation          40.71723
## 1825                  NA Not for Profit Corporation          44.86464
## 1826                  NA Not for Profit Corporation          42.96149
## 1827                  NA       Business Corporation          40.67929
## 1828                  NA                        LLC          42.68889
## 1829               48152 Not for Profit Corporation          42.67954
## 1830                  NA Not for Profit Corporation          41.71129
## 1831                  NA Not for Profit Corporation          42.31318
## 1832                  NA Not for Profit Corporation          44.58916
## 1833               10029 Not for Profit Corporation          40.74604
## 1834                  NA Not for Profit Corporation          40.83078
## 1835               12208 Not for Profit Corporation          42.86039
## 1836               10512 Not for Profit Corporation          41.38477
## 1837                  NA Not for Profit Corporation          42.12421
## 1838                  NA                      State          43.04703
## 1839                  NA Not for Profit Corporation          43.85397
## 1840               10065 Not for Profit Corporation          41.29151
## 1841                  NA Not for Profit Corporation          43.00640
## 1842                  NA               Municipality          40.66023
## 1843               11042 Not for Profit Corporation          40.72474
## 1844                  NA       Business Corporation          40.65403
## 1845                  NA                        LLC          40.82655
## 1846                5401 Not for Profit Corporation          44.69470
## 1847                  NA Not for Profit Corporation          42.95403
## 1848               48152 Not for Profit Corporation          42.77272
## 1849                  NA Not for Profit Corporation          43.04759
## 1850               48152 Not for Profit Corporation          43.04335
## 1851                  NA Not for Profit Corporation          41.21319
## 1852                  NA Not for Profit Corporation          42.77933
## 1853                  NA       Business Corporation          40.61633
## 1854               12449 Not for Profit Corporation          41.94406
## 1855                  NA       Business Corporation          40.75755
## 1856                  NA Not for Profit Corporation          43.16148
## 1857               10595 Not for Profit Corporation          41.93264
## 1858                  NA Not for Profit Corporation          40.84234
## 1859               10467 Not for Profit Corporation          40.87594
## 1860                  NA Not for Profit Corporation          40.82251
## 1861               10029 Not for Profit Corporation          40.73247
## 1862                  NA Not for Profit Corporation          40.87545
## 1863                  NA Not for Profit Corporation          40.74629
## 1864                  NA       Business Corporation          40.86486
## 1865                  NA Not for Profit Corporation          42.07788
## 1866                  NA Not for Profit Corporation          41.73799
## 1867                  NA Not for Profit Corporation          40.63058
## 1868                  NA Not for Profit Corporation          42.87268
## 1869                  NA Not for Profit Corporation          40.70661
## 1870                  NA                        LLC          40.81502
## 1871                  NA Not for Profit Corporation          40.91583
## 1872               14611 Not for Profit Corporation          43.14030
## 1873               48152 Not for Profit Corporation          42.73413
## 1874                  NA                        LLC          40.85408
## 1875                  NA Not for Profit Corporation          43.08356
## 1876                  NA Not for Profit Corporation          42.89500
## 1877                  NA                     County          43.21287
## 1878                  NA                        LLC          40.59961
## 1879                  NA               Municipality          40.70654
## 1880                  NA Not for Profit Corporation          42.90428
## 1881               14203 Not for Profit Corporation          42.89549
## 1882               48152 Not for Profit Corporation          42.68586
## 1883                  NA Not for Profit Corporation          43.10222
## 1884                  NA Not for Profit Corporation          41.13995
## 1885               13676 Not for Profit Corporation          44.32585
## 1886                  NA Not for Profit Corporation          40.73947
## 1887                  NA                     County          43.98564
## 1888                  NA       Business Corporation          40.84798
## 1889                  NA Not for Profit Corporation          40.67963
## 1890                  NA                        LLC          40.81860
## 1891                  NA Not for Profit Corporation          42.09892
## 1892                  NA Not for Profit Corporation          42.22725
## 1893                  NA Not for Profit Corporation          43.31203
## 1894                  NA Not for Profit Corporation          43.48265
## 1895                  NA                        LLC          42.79360
## 1896               12208 Not for Profit Corporation          43.12615
## 1897                  NA Not for Profit Corporation          40.79755
## 1898                  NA                        LLC          42.99694
## 1899                  NA               Municipality          40.78478
## 1900                  NA Not for Profit Corporation          42.09971
## 1901                  NA Not for Profit Corporation          43.12073
## 1902                  NA Not for Profit Corporation          40.86069
## 1903                  NA Not for Profit Corporation          40.68165
## 1904                  NA Not for Profit Corporation          42.66238
## 1905               13326 Not for Profit Corporation          42.54637
## 1906                  NA Not for Profit Corporation          40.74316
## 1907                  NA Not for Profit Corporation          40.69658
## 1908                  NA                     County          41.16159
## 1909               10029 Not for Profit Corporation          40.73734
## 1910                  NA Not for Profit Corporation          41.11107
## 1911                  NA                        LLC          41.79488
## 1912                  NA Not for Profit Corporation          42.10326
## 1913                  NA Not for Profit Corporation          40.80087
## 1914                  NA                        LLC          40.76186
## 1915               13676 Not for Profit Corporation          44.93636
## 1916                  NA Not for Profit Corporation          40.90157
## 1917               12208 Not for Profit Corporation          42.77070
## 1918               10467 Not for Profit Corporation          40.87760
## 1919               12208 Not for Profit Corporation          42.63611
## 1920                  NA                        LLC          42.79074
## 1921               11777 Not for Profit Corporation          40.76868
## 1922                  NA                      State          40.91210
## 1923                  NA                        LLC          40.60354
## 1924                  NA Not for Profit Corporation          40.63546
## 1925                  NA Not for Profit Corporation                NA
## 1926                  NA Not for Profit Corporation          40.66251
## 1927               14203 Not for Profit Corporation          42.92430
## 1928               10901 Not for Profit Corporation          41.23745
## 1929                  NA Not for Profit Corporation          40.78614
## 1930                  NA                        LLP          42.09090
## 1931                  NA Not for Profit Corporation                NA
## 1932                  NA       Business Corporation          40.78354
## 1933                  NA Not for Profit Corporation          40.79249
## 1934                  NA       Business Corporation          40.77389
## 1935                  NA Not for Profit Corporation          43.11409
## 1936                  NA                      State                NA
## 1937                  NA Not for Profit Corporation          40.66919
## 1938                  NA Not for Profit Corporation          40.81972
## 1939                  NA Not for Profit Corporation          43.01553
## 1940                  NA Not for Profit Corporation          42.11093
## 1941                  NA                        LLC          42.11252
## 1942               13326 Not for Profit Corporation          43.02787
## 1943                  NA                        LLC          43.03913
## 1944                  NA Not for Profit Corporation          42.06604
## 1945                  NA Not for Profit Corporation          42.99649
## 1946                  NA Not for Profit Corporation          40.85423
## 1947               11042 Not for Profit Corporation          40.78225
## 1948                  NA       Business Corporation          40.69782
## 1949               14203 Not for Profit Corporation          42.87231
## 1950                  NA Not for Profit Corporation          40.80004
## 1951               12208 Not for Profit Corporation                NA
## 1952                  NA                     County          42.42586
## 1953               14203 Not for Profit Corporation          42.78174
## 1954                  NA Not for Profit Corporation          40.92645
## 1955                  NA Not for Profit Corporation          44.85729
## 1956                  NA Not for Profit Corporation          40.76538
## 1957               14203 Not for Profit Corporation          42.89626
## 1958               11554                     County          40.70903
## 1959               14905 Not for Profit Corporation          42.09929
## 1960                  NA                        LLC          43.08214
## 1961                  NA Not for Profit Corporation          40.70996
## 1962                  NA Not for Profit Corporation          42.82804
## 1963                  NA Not for Profit Corporation          40.82571
## 1964                  NA Not for Profit Corporation          42.66290
## 1965                  NA                        LLC          40.73431
## 1966               14203 Not for Profit Corporation                NA
## 1967                  NA Not for Profit Corporation          40.71706
## 1968                  NA Not for Profit Corporation          43.09149
## 1969                  NA Not for Profit Corporation          42.09776
## 1970                  NA Not for Profit Corporation          40.89690
## 1971                  NA       Business Corporation          40.86058
## 1972                  NA                        LLC          43.02633
## 1973                  NA Not for Profit Corporation          40.63942
## 1974                  NA       Business Corporation          40.66785
## 1975                  NA Not for Profit Corporation          40.63018
## 1976               12208 Not for Profit Corporation          42.73240
## 1977                  NA Not for Profit Corporation          42.69990
## 1978                  NA Not for Profit Corporation          40.66999
## 1979               48152 Not for Profit Corporation          42.68075
## 1980               12208 Not for Profit Corporation          42.82206
## 1981                  NA Not for Profit Corporation          41.44852
## 1982                  NA Not for Profit Corporation          40.83883
## 1983                  NA Not for Profit Corporation          42.90178
## 1984                  NA                        LLC          42.83955
## 1985               14905 Not for Profit Corporation          42.43980
## 1986                  NA       Business Corporation          42.64676
## 1987               10467 Not for Profit Corporation          40.88406
## 1988               10901 Not for Profit Corporation          41.26059
## 1989                  NA                        LLC          40.60935
## 1990                  NA Not for Profit Corporation          40.75286
## 1991                  NA Not for Profit Corporation          43.30762
## 1992                  NA Not for Profit Corporation          43.10251
## 1993                  NA Not for Profit Corporation          40.98927
## 1994                  NA Not for Profit Corporation          40.92951
## 1995               10467 Not for Profit Corporation          41.12075
## 1996                  NA                     County          43.98564
## 1997               12208 Not for Profit Corporation          42.24556
## 1998                  NA Not for Profit Corporation          40.75395
## 1999               10467 Not for Profit Corporation          41.02633
## 2000                  NA Not for Profit Corporation          43.09217
## 2001                  NA Not for Profit Corporation          40.62637
## 2002                  NA Not for Profit Corporation          40.74098
## 2003                  NA Not for Profit Corporation          42.90966
## 2004                  NA Not for Profit Corporation          41.61823
## 2005                  NA                        LLC          42.23179
## 2006                  NA Not for Profit Corporation          40.65596
## 2007                  NA                        LLC          40.71853
## 2008                  NA Not for Profit Corporation          43.24163
## 2009                  NA                      State          40.89685
## 2010                  NA                        LLC          41.14936
## 2011                  NA                        LLC          41.53236
## 2012                  NA                        LLC          40.77046
## 2013               11212 Not for Profit Corporation          40.65944
## 2014               12601 Not for Profit Corporation          41.53185
## 2015                  NA Not for Profit Corporation          42.10656
## 2016                  NA                        LLC          42.90770
## 2017                  NA Not for Profit Corporation          41.69624
## 2018               48152 Not for Profit Corporation          42.74338
## 2019                  NA Not for Profit Corporation          43.05711
## 2020               10065 Not for Profit Corporation          41.19341
## 2021                  NA Not for Profit Corporation          42.79357
## 2022               10310 Not for Profit Corporation                NA
## 2023                  NA Not for Profit Corporation          43.08580
## 2024                  NA Not for Profit Corporation          43.13577
## 2025                  NA                        LLC          40.72667
## 2026                  NA                        LLC          43.10825
## 2027                  NA                        LLC          40.69496
## 2028                  NA Not for Profit Corporation          40.66324
## 2029                  NA                     County          42.22496
## 2030                  NA Not for Profit Corporation          40.75351
## 2031                  NA Not for Profit Corporation          43.41494
## 2032               10016 Not for Profit Corporation          40.81908
## 2033               14611 Not for Profit Corporation          43.13085
## 2034                  NA                        LLC          42.15758
## 2035                  NA Not for Profit Corporation          40.67478
## 2036                  NA Not for Profit Corporation          43.22552
## 2037                  NA Not for Profit Corporation          42.86017
## 2038                  NA Not for Profit Corporation          40.63377
## 2039                  NA       Business Corporation          40.60004
## 2040                  NA Not for Profit Corporation          40.81460
## 2041               11042 Not for Profit Corporation          40.58123
## 2042                  NA Not for Profit Corporation          42.81401
## 2043               11042 Not for Profit Corporation          40.72893
## 2044                  NA Not for Profit Corporation          40.84412
## 2045                  NA Not for Profit Corporation          40.75395
## 2046                  NA Not for Profit Corporation          40.73560
## 2047                  NA Not for Profit Corporation          40.79423
## 2048                  NA Not for Profit Corporation          40.73202
## 2049               10595 Not for Profit Corporation          41.92256
## 2050                  NA Not for Profit Corporation          43.10272
## 2051               12208 Not for Profit Corporation          42.25716
## 2052                  NA Not for Profit Corporation          43.23051
## 2053                  NA Not for Profit Corporation          40.78695
## 2054               11042 Not for Profit Corporation          40.77924
## 2055               48152 Not for Profit Corporation          43.12073
## 2056               14642 Not for Profit Corporation          43.06615
## 2057                  NA                        LLC          43.11526
## 2058               18840 Not for Profit Corporation          42.16190
## 2059               10013               Municipality          40.70981
## 2060                  NA Not for Profit Corporation          43.03556
## 2061                  NA                        LLC                NA
## 2062                  NA Public Benefit Corporation          42.99633
## 2063                  NA Not for Profit Corporation          40.85479
## 2064               11042 Not for Profit Corporation          40.76442
## 2065                  NA Not for Profit Corporation          43.04340
## 2066               14203 Not for Profit Corporation          43.12073
## 2067                  NA       Business Corporation          40.61219
## 2068                  NA Not for Profit Corporation          40.76437
## 2069                  NA Not for Profit Corporation          40.82193
## 2070                  NA               Municipality          40.81435
## 2071               10016 Not for Profit Corporation          40.59621
## 2072                  NA                        LLC          40.61016
## 2073                  NA Not for Profit Corporation          41.16132
## 2074                  NA                        LLC          40.57345
## 2075                  NA Not for Profit Corporation          41.17323
## 2076               11042 Not for Profit Corporation          40.81024
## 2077                  NA                        LLC           0.00000
## 2078               14611 Not for Profit Corporation          43.08371
## 2079               14611 Not for Profit Corporation          43.12350
## 2080                  NA Not for Profit Corporation          40.76928
## 2081                  NA Not for Profit Corporation          44.84810
## 2082               10029 Not for Profit Corporation          40.81839
## 2083                  NA Not for Profit Corporation          42.11425
## 2084                  NA Not for Profit Corporation          43.30545
## 2085                  NA Not for Profit Corporation          42.90072
## 2086               14760 Not for Profit Corporation          42.17238
## 2087                  NA Not for Profit Corporation          42.35704
## 2088                  NA Not for Profit Corporation          44.73269
## 2089                  NA Not for Profit Corporation          40.67240
## 2090                  NA                        LLC          40.74558
## 2091                  NA Not for Profit Corporation          43.49210
## 2092                  NA Not for Profit Corporation          40.81436
## 2093                  NA       Business Corporation          42.67286
## 2094                  NA Not for Profit Corporation          40.82334
## 2095                  NA Not for Profit Corporation                NA
## 2096                  NA Not for Profit Corporation          43.06510
## 2097                  NA Not for Profit Corporation          43.20103
## 2098                  NA       Business Corporation          40.69114
## 2099               14611 Not for Profit Corporation          43.14901
## 2100               13326 Not for Profit Corporation          42.59789
## 2101                  NA Not for Profit Corporation          41.71700
## 2102                  NA                        LLC          40.60107
## 2103                  NA                        LLC          43.69440
## 2104               13326 Not for Profit Corporation          43.10345
## 2105               14611 Not for Profit Corporation          43.19656
## 2106                  NA       Business Corporation          40.58441
## 2107                  NA Not for Profit Corporation          40.65034
## 2108                  NA Not for Profit Corporation          42.08806
## 2109               13676 Not for Profit Corporation          44.60510
## 2110               10467 Not for Profit Corporation          40.82278
## 2111                  NA Not for Profit Corporation          41.20230
## 2112                  NA       Business Corporation          40.79615
## 2113                  NA       Business Corporation          40.84872
## 2114                  NA Not for Profit Corporation          42.44183
## 2115                  NA Not for Profit Corporation          43.04467
## 2116                  NA Not for Profit Corporation          40.66634
## 2117                  NA Not for Profit Corporation          42.54181
## 2118                  NA Not for Profit Corporation          42.45741
## 2119                  NA       Business Corporation          43.09310
## 2120                  NA                Partnership          40.89216
## 2121               10013               Municipality          40.75346
## 2122                  NA Not for Profit Corporation          42.95489
## 2123               12208 Not for Profit Corporation          42.65330
## 2124                  NA Not for Profit Corporation          40.72608
## 2125               10013               Municipality          40.66054
## 2126                  NA Not for Profit Corporation          43.13360
## 2127               11777 Not for Profit Corporation          40.85572
## 2128                  NA Not for Profit Corporation          42.80165
## 2129                  NA Not for Profit Corporation          40.63857
## 2130               10467 Not for Profit Corporation          40.91105
## 2131                  NA Not for Profit Corporation          44.97849
## 2132               10013               Municipality          40.69709
## 2133                  NA                        LLC          43.21307
## 2134                  NA Not for Profit Corporation          42.48077
## 2135               10595 Not for Profit Corporation          41.94406
## 2136                  NA Public Benefit Corporation          41.79324
## 2137               11554                     County          40.76112
## 2138                  NA Not for Profit Corporation          40.67362
## 2139               14203 Not for Profit Corporation          43.15466
## 2140                  NA Not for Profit Corporation          43.97452
## 2141                  NA                        LLC          40.76920
## 2142               48152 Not for Profit Corporation          42.65839
## 2143                  NA       Business Corporation          40.68970
## 2144               13326 Not for Profit Corporation          42.54624
## 2145                  NA Not for Profit Corporation          40.83991
## 2146                  NA                      State          40.90214
## 2147                  NA Public Benefit Corporation          43.08465
## 2148                  NA Not for Profit Corporation          42.90178
## 2149                  NA       Business Corporation          42.34760
## 2150                  NA                     County          42.75351
## 2151                  NA Not for Profit Corporation          42.10647
## 2152                  NA Not for Profit Corporation          41.49635
## 2153                  NA                        LLC          40.70197
## 2154                  NA Not for Profit Corporation          43.00917
## 2155               14760 Not for Profit Corporation          42.08454
## 2156                  NA Not for Profit Corporation          43.15516
## 2157               12601 Not for Profit Corporation          41.71516
## 2158               11212 Not for Profit Corporation          40.65505
## 2159                  NA Not for Profit Corporation          42.08597
## 2160               13502 Not for Profit Corporation          43.08098
## 2161                  NA Not for Profit Corporation          40.77921
## 2162               11042 Not for Profit Corporation          41.14471
## 2163               14203 Not for Profit Corporation          43.08580
## 2164                  NA                        LLC          41.38616
## 2165               11212 Not for Profit Corporation          40.66779
## 2166                  NA                        LLC          40.64280
## 2167                  NA                        LLC          40.87264
## 2168                  NA Not for Profit Corporation          42.00064
## 2169                  NA                        LLC          43.07352
## 2170                  NA Not for Profit Corporation          40.82821
## 2171               12208 Not for Profit Corporation          42.73413
## 2172               10013               Municipality          40.80530
## 2173                  NA Not for Profit Corporation          40.89226
## 2174                  NA Not for Profit Corporation          42.93459
## 2175                  NA Not for Profit Corporation          40.63828
## 2176                  NA Not for Profit Corporation          42.99683
## 2177               13326 Not for Profit Corporation          42.31291
## 2178               11042 Not for Profit Corporation          40.85869
## 2179               10467 Not for Profit Corporation          40.82853
## 2180                  NA Not for Profit Corporation          43.11095
## 2181                  NA Not for Profit Corporation          42.31444
## 2182                  NA Not for Profit Corporation          40.70677
## 2183                  NA Not for Profit Corporation                NA
## 2184               10013               Municipality          40.68563
## 2185                  NA Not for Profit Corporation          43.16483
## 2186                  NA Not for Profit Corporation          40.64297
## 2187                  NA Not for Profit Corporation          40.69692
## 2188                  NA Not for Profit Corporation          42.75639
## 2189                  NA Not for Profit Corporation          42.10827
## 2190               14611 Not for Profit Corporation          43.14901
## 2191                  NA       Business Corporation          43.12844
## 2192                  NA                        LLC          41.52220
## 2193                  NA Not for Profit Corporation          40.69764
## 2194               14642 Not for Profit Corporation          43.13077
## 2195                  NA Not for Profit Corporation          43.11328
## 2196                  NA       Business Corporation          41.45332
## 2197                  NA       Business Corporation          41.52472
## 2198                  NA Not for Profit Corporation          44.05493
## 2199               10065 Not for Profit Corporation          40.74752
## 2200               13326 Not for Profit Corporation          43.04396
## 2201               10013               Municipality          40.81330
## 2202                  NA                        LLC          40.60152
## 2203                  NA Not for Profit Corporation          42.55144
## 2204                  NA Not for Profit Corporation          43.78301
## 2205                  NA               Municipality          40.57666
## 2206               10595 Not for Profit Corporation          42.07649
## 2207                  NA Not for Profit Corporation          40.75730
## 2208                  NA Not for Profit Corporation          40.60770
## 2209               10029 Not for Profit Corporation          40.80495
## 2210                  NA                      State          40.87785
## 2211                  NA Not for Profit Corporation          42.81244
## 2212               14611 Not for Profit Corporation          43.13389
## 2213                  NA                        LLC          41.70262
## 2214                  NA Not for Profit Corporation          44.70542
## 2215                  NA       Business Corporation          40.65585
## 2216                  NA Not for Profit Corporation          42.09655
## 2217                  NA Not for Profit Corporation          42.52489
## 2218               13502 Not for Profit Corporation          43.00200
## 2219                  NA Not for Profit Corporation          42.66822
## 2220               14611 Not for Profit Corporation          43.21497
## 2221                  NA                        LLC          42.42632
## 2222                  NA Not for Profit Corporation          40.66578
## 2223                  NA Not for Profit Corporation          42.90225
## 2224                  NA                        LLC          41.70392
## 2225                  NA                        LLC          42.24898
## 2226                  NA                        LLC          40.60563
## 2227                  NA Not for Profit Corporation          44.34393
## 2228                  NA                        LLC          40.83141
## 2229                  NA       Business Corporation          40.84163
## 2230                  NA Not for Profit Corporation          40.79123
## 2231                  NA Not for Profit Corporation          40.66417
## 2232                  NA Public Benefit Corporation          41.08773
## 2233                  NA Not for Profit Corporation          41.73786
## 2234                  NA Not for Profit Corporation          40.99762
## 2235                  NA                        LLC          40.76416
## 2236               10029 Not for Profit Corporation          40.65367
## 2237                  NA Not for Profit Corporation          40.81448
## 2238                  NA Not for Profit Corporation          42.10500
## 2239               12208 Not for Profit Corporation          42.70125
## 2240                  NA                        LLC          40.71326
## 2241                  NA                        LLC          43.98676
## 2242               10901 Not for Profit Corporation          41.36792
## 2243                  NA Not for Profit Corporation          40.86048
## 2244                  NA Not for Profit Corporation          43.10297
## 2245                  NA                        LLC          42.60096
## 2246                  NA                     County          40.91326
## 2247                  NA                     County          42.72880
## 2248                  NA Public Benefit Corporation          42.95902
## 2249                  NA                        LLC          43.00978
## 2250                  NA                        LLC          40.72259
## 2251                  NA                        LLC          41.52141
## 2252                  NA                        LLC          40.85986
## 2253                  NA                        LLC          40.89661
## 2254               10924 Not for Profit Corporation          41.44776
## 2255                  NA                      State          40.63181
## 2256                  NA Not for Profit Corporation          40.92208
## 2257                  NA       Business Corporation          40.62528
## 2258               11042 Not for Profit Corporation          40.62706
## 2259                  NA Not for Profit Corporation          40.61016
## 2260                  NA Not for Profit Corporation          40.80259
## 2261                  NA                        LLC          40.68924
## 2262               13326 Not for Profit Corporation          42.59178
## 2263               14620 Not for Profit Corporation          43.16816
## 2264                  NA Not for Profit Corporation          42.92315
## 2265                  NA Not for Profit Corporation          40.76400
## 2266                  NA                        LLC          42.99139
## 2267                  NA                        LLC          40.78881
## 2268                  NA Not for Profit Corporation          43.19126
## 2269                  NA Not for Profit Corporation          40.62688
## 2270               10467 Not for Profit Corporation          40.87861
## 2271                  NA                        LLC          41.43586
## 2272                  NA       Business Corporation          40.89318
## 2273                  NA Not for Profit Corporation          40.75395
## 2274               12449 Not for Profit Corporation          41.93264
## 2275                  NA Not for Profit Corporation          41.71127
## 2276                  NA                        LLC          42.10098
## 2277                  NA       Business Corporation          40.77414
## 2278               10065 Not for Profit Corporation          40.70688
## 2279                  NA                        LLC          40.88191
## 2280                  NA Not for Profit Corporation          40.87785
## 2281                  NA       Business Corporation          40.69135
## 2282                  NA Not for Profit Corporation          42.93089
## 2283                  NA Not for Profit Corporation          42.45670
## 2284                  NA                        LLC          40.81497
## 2285               13502 Not for Profit Corporation          43.09961
## 2286                  NA Not for Profit Corporation          41.16310
## 2287                  NA                        LLC                NA
## 2288                  NA Not for Profit Corporation          40.95146
## 2289                  NA Not for Profit Corporation          40.87966
## 2290                  NA Not for Profit Corporation          40.76092
## 2291                  NA       Business Corporation          44.70354
## 2292                  NA Not for Profit Corporation          40.92439
## 2293                  NA Not for Profit Corporation          40.74302
## 2294                  NA Not for Profit Corporation          40.69528
## 2295               14203 Not for Profit Corporation          42.08984
## 2296                  NA                        LLC          40.75433
## 2297                  NA Not for Profit Corporation          42.90094
## 2298                  NA                        LLC          40.70029
## 2299                  NA Not for Profit Corporation          43.08465
## 2300                  NA                        LLC          40.84633
## 2301                  NA Not for Profit Corporation          40.88641
## 2302                  NA                        LLC          41.54560
## 2303                  NA Not for Profit Corporation          40.81354
## 2304               10013               Municipality          40.71330
## 2305                  NA                     County          40.72535
## 2306                  NA                        LLC          40.91317
## 2307                  NA Not for Profit Corporation          40.74778
## 2308                  NA                        LLC          40.87698
## 2309               14203 Not for Profit Corporation          42.94636
## 2310                  NA       Business Corporation          42.99145
## 2311                  NA Not for Profit Corporation          42.89219
## 2312               14203 Not for Profit Corporation          42.90379
## 2313               14203 Not for Profit Corporation          43.02816
## 2314                  NA Not for Profit Corporation          40.72151
## 2315               11042 Not for Profit Corporation          40.75363
## 2316                  NA       Business Corporation          43.12574
## 2317                  NA Not for Profit Corporation          43.22004
## 2318               48152 Not for Profit Corporation          42.86559
## 2319                  NA Not for Profit Corporation          43.31247
## 2320                  NA                     County          42.88482
## 2321                  NA       Business Corporation          42.77642
## 2322                5401 Not for Profit Corporation          44.70028
## 2323                  NA                        LLC          41.02362
## 2324                  NA Not for Profit Corporation          42.65634
## 2325                  NA Not for Profit Corporation          40.68949
## 2326                  NA Not for Profit Corporation          42.66202
## 2327                  NA       Business Corporation          40.70498
## 2328               14611 Not for Profit Corporation          43.18061
## 2329               13326 Not for Profit Corporation          42.69922
## 2330                  NA                        LLC          40.75290
## 2331                  NA Not for Profit Corporation          41.78873
## 2332                  NA Not for Profit Corporation          40.85429
## 2333                  NA                        LLC          40.75725
## 2334                  NA Not for Profit Corporation          40.82305
## 2335                  NA                        LLC          43.21764
## 2336                  NA Not for Profit Corporation          42.69915
## 2337                  NA Not for Profit Corporation          40.90197
## 2338               11042 Not for Profit Corporation          40.73093
## 2339                  NA                     County          44.21989
## 2340               14760 Not for Profit Corporation          42.08984
## 2341                  NA Not for Profit Corporation          40.81510
## 2342                  NA Not for Profit Corporation          40.59847
## 2343               13676 Not for Profit Corporation          44.33821
## 2344               10467 Not for Profit Corporation          41.53453
## 2345               13326 Not for Profit Corporation          42.45816
## 2346               14611 Not for Profit Corporation          43.17412
## 2347               10901 Not for Profit Corporation          41.33395
## 2348                  NA Not for Profit Corporation          42.14737
## 2349                  NA Not for Profit Corporation          42.67071
## 2350                  NA                     County          43.17350
## 2351               11042 Not for Profit Corporation          40.58664
## 2352                  NA Not for Profit Corporation          40.85860
## 2353               11042 Not for Profit Corporation          40.68179
## 2354                  NA Not for Profit Corporation          43.45326
## 2355               12208 Not for Profit Corporation          43.04420
## 2356               12540 Not for Profit Corporation          41.24473
## 2357               10512 Not for Profit Corporation          41.56211
## 2358                  NA Not for Profit Corporation          41.49635
## 2359                  NA Not for Profit Corporation          43.19221
## 2360               10065 Not for Profit Corporation          40.67267
## 2361                  NA                        LLC          42.93637
## 2362                  NA                        LLC          41.12398
## 2363               13676 Not for Profit Corporation          44.66967
## 2364                  NA Not for Profit Corporation          42.32487
## 2365               14611 Not for Profit Corporation          43.19458
## 2366                  NA                        LLC          40.62853
## 2367               11554                     County          40.65382
## 2368                  NA Not for Profit Corporation          40.71093
## 2369                  NA                     County          43.79568
## 2370               11042 Not for Profit Corporation          40.51677
## 2371               10924 Not for Profit Corporation          41.89939
## 2372                  NA Not for Profit Corporation          42.90691
## 2373                  NA                        LLC          41.43994
## 2374                  NA Not for Profit Corporation          40.62637
## 2375               10013               Municipality          40.67343
## 2376                  NA Not for Profit Corporation          42.78947
## 2377               14611 Not for Profit Corporation          43.12458
## 2378               14611 Not for Profit Corporation          43.19347
## 2379                  NA                      State          41.11096
## 2380                  NA                      State          43.09175
## 2381                  NA                        LLC          42.14476
## 2382                  NA Not for Profit Corporation          42.11496
## 2383                  NA                        LLC          43.44484
## 2384                  NA Not for Profit Corporation          40.64095
## 2385                  NA Not for Profit Corporation          40.85897
## 2386                  NA Not for Profit Corporation          40.66862
## 2387                  NA                        LLC          40.85538
## 2388                  NA                        LLC          43.11542
## 2389               13326 Not for Profit Corporation          42.59110
## 2390                  NA Not for Profit Corporation          43.09926
## 2391                  NA Not for Profit Corporation          40.66497
## 2392                  NA Not for Profit Corporation          40.81670
## 2393                  NA               Municipality          40.59388
## 2394                  NA Not for Profit Corporation          40.76296
## 2395                  NA Not for Profit Corporation          40.74473
## 2396               13502 Not for Profit Corporation          43.02639
## 2397                  NA Not for Profit Corporation          43.21118
## 2398               14203 Not for Profit Corporation          43.15324
## 2399                  NA Not for Profit Corporation          43.03956
## 2400                  NA                        LLC          40.77346
## 2401                  NA                        LLC          40.59541
## 2402                  NA Not for Profit Corporation          41.44590
## 2403                  NA       Business Corporation          40.83141
## 2404                  NA Not for Profit Corporation          42.89400
## 2405               14611 Not for Profit Corporation          43.06234
## 2406                  NA Not for Profit Corporation          43.71531
## 2407                  NA Not for Profit Corporation          41.00820
## 2408                  NA Not for Profit Corporation          41.98562
## 2409               10467 Not for Profit Corporation          40.87833
## 2410                  NA Not for Profit Corporation          40.75513
## 2411               14642 Not for Profit Corporation          43.06580
## 2412                  NA Not for Profit Corporation          40.70580
## 2413                  NA                     County          41.70396
## 2414                  NA                        LLC          41.30150
## 2415               14611                        LLC          43.12608
## 2416                  NA Not for Profit Corporation          42.67984
## 2417               13502 Not for Profit Corporation          43.08356
## 2418               10467 Not for Profit Corporation          40.88342
## 2419                  NA       Business Corporation          40.87279
## 2420                  NA                        LLP          43.09380
## 2421                  NA Not for Profit Corporation          40.66501
## 2422                  NA Not for Profit Corporation          43.12437
## 2423               48152 Not for Profit Corporation          42.65557
## 2424               14620 Not for Profit Corporation          42.83328
## 2425                  NA Not for Profit Corporation          42.68623
## 2426               10013               Municipality          40.70408
## 2427                  NA                        LLC          41.21560
## 2428                  NA                        LLC          42.76810
## 2429                  NA Not for Profit Corporation          40.70141
## 2430                  NA Not for Profit Corporation          42.81475
## 2431               10467 Not for Profit Corporation                NA
## 2432                  NA                        LLC          42.76261
## 2433                  NA Not for Profit Corporation          43.16046
## 2434                  NA Not for Profit Corporation          43.95546
## 2435                  NA                        LLC          40.58138
## 2436                  NA                      State          40.86694
## 2437                  NA               Municipality          40.85739
## 2438                  NA Not for Profit Corporation          41.10152
## 2439                  NA                        LLC          42.61156
## 2440               14611 Not for Profit Corporation          43.19514
## 2441                  NA                      State          40.65622
## 2442                  NA                      State          40.91353
## 2443                  NA                        LLC          40.75680
## 2444                  NA Not for Profit Corporation          42.67833
## 2445                  NA Not for Profit Corporation          40.69718
## 2446                  NA                     County          42.14146
## 2447               14905 Not for Profit Corporation          42.09145
## 2448                  NA Not for Profit Corporation          43.22963
## 2449               14611 Not for Profit Corporation          43.19155
## 2450                  NA                      State                NA
## 2451                  NA                     County          42.95297
## 2452                  NA       Business Corporation          40.71331
## 2453               11747 Not for Profit Corporation          40.69549
## 2454               14850 Not for Profit Corporation          42.47871
## 2455               48152 Not for Profit Corporation          42.73432
## 2456                  NA Not for Profit Corporation          40.70399
## 2457                  NA                        LLC          42.98864
## 2458               48152 Not for Profit Corporation          42.77599
## 2459                  NA Not for Profit Corporation          40.76591
## 2460                  NA                        LLP          43.09432
## 2461               13502 Not for Profit Corporation          43.08841
## 2462                  NA                     County          40.93310
## 2463                  NA Not for Profit Corporation          42.70370
## 2464                  NA       Business Corporation          40.59871
## 2465                  NA Not for Profit Corporation          41.74074
## 2466                  NA Not for Profit Corporation          40.85391
## 2467                  NA Not for Profit Corporation          40.57827
## 2468                  NA Not for Profit Corporation          43.09659
## 2469                  NA Not for Profit Corporation                NA
## 2470               10701 Not for Profit Corporation          40.91184
## 2471                  NA                        LLC          40.78706
## 2472                  NA Not for Profit Corporation          40.72406
## 2473                  NA       Business Corporation          40.63568
## 2474                  NA Not for Profit Corporation          42.06377
## 2475               12208 Not for Profit Corporation          42.96007
## 2476                  NA Not for Profit Corporation          41.01083
## 2477               13676 Not for Profit Corporation          44.59645
## 2478               10016 Not for Profit Corporation          40.79421
## 2479                  NA       Business Corporation          40.73734
## 2480                  NA                        LLC          40.92847
## 2481                  NA                        LLC          43.12752
## 2482                  NA Not for Profit Corporation          40.76545
## 2483                  NA                        LLC          42.09776
## 2484                  NA                        LLC          41.98048
## 2485                  NA                        LLC          40.86122
## 2486                  NA                        LLC          43.84948
## 2487               11212 Not for Profit Corporation          40.65944
## 2488                  NA Not for Profit Corporation          43.07871
## 2489               13326 Not for Profit Corporation          42.38383
## 2490                  NA                        LLC          42.54740
## 2491               14611 Not for Profit Corporation          43.20191
## 2492               10065 Not for Profit Corporation          40.62069
## 2493               10512 Not for Profit Corporation          41.93422
## 2494                  NA                        LLC          43.09102
## 2495               10467 Not for Profit Corporation          40.96240
## 2496               11042 Not for Profit Corporation          40.58304
## 2497               13210 Not for Profit Corporation          43.10079
## 2498                  NA                     County          42.90680
## 2499                  NA Not for Profit Corporation          42.52614
## 2500                  NA                        LLC          43.12281
## 2501               13502 Not for Profit Corporation          43.08291
## 2502                  NA Not for Profit Corporation                NA
## 2503               11747 Not for Profit Corporation          40.71005
## 2504                  NA Not for Profit Corporation          43.02574
## 2505               14642 Not for Profit Corporation          42.80306
## 2506               14905 Not for Profit Corporation          42.10015
## 2507                  NA Not for Profit Corporation          40.83935
## 2508               10591 Not for Profit Corporation          42.47630
## 2509                  NA Not for Profit Corporation          41.49566
## 2510                  NA Not for Profit Corporation          40.61342
## 2511                  NA Not for Profit Corporation          42.10537
## 2512                  NA Not for Profit Corporation          40.85500
## 2513                  NA Not for Profit Corporation          40.76591
## 2514               14611 Not for Profit Corporation          43.02638
## 2515                  NA                        LLC          43.16868
## 2516                  NA Not for Profit Corporation          40.80735
## 2517                  NA               Municipality          40.58390
## 2518                  NA Not for Profit Corporation          42.69254
## 2519               14611                        LLC          43.11147
## 2520                  NA                      State          40.90922
## 2521                  NA Not for Profit Corporation          40.72916
## 2522                  NA                        LLC          40.76414
## 2523                  NA       Business Corporation          40.65649
## 2524               12540 Not for Profit Corporation          41.52472
## 2525               12540 Not for Profit Corporation          41.38477
## 2526               13326 Not for Profit Corporation          42.63290
## 2527               11042 Not for Profit Corporation          40.78590
## 2528                  NA                        LLC          40.65136
## 2529               18840 Not for Profit Corporation          42.60060
## 2530               13676 Not for Profit Corporation          44.80756
## 2531                  NA Not for Profit Corporation          41.23325
## 2532                  NA               Municipality          40.79623
## 2533               14611 Not for Profit Corporation          43.14710
## 2534                  NA Not for Profit Corporation          41.85080
## 2535                  NA Not for Profit Corporation          42.94220
## 2536                  NA Not for Profit Corporation          44.59493
## 2537                  NA       Business Corporation          42.94257
## 2538                  NA Not for Profit Corporation          41.43420
## 2539                  NA Not for Profit Corporation          40.80254
## 2540               10013               Municipality          40.74648
## 2541               11042 Not for Profit Corporation          40.67407
## 2542                  NA                        LLC          40.76556
## 2543                  NA Not for Profit Corporation          44.26721
## 2544                  NA Not for Profit Corporation          40.63059
## 2545               13326 Not for Profit Corporation          42.52790
## 2546                  NA       Business Corporation          43.18947
## 2547               10013               Municipality          40.83721
## 2548                  NA Not for Profit Corporation          43.15186
## 2549                  NA Not for Profit Corporation          42.95289
## 2550                  NA Not for Profit Corporation          40.70452
## 2551               48152 Not for Profit Corporation          42.77272
## 2552                  NA       Business Corporation          42.93740
## 2553                  NA Not for Profit Corporation          41.00766
## 2554                  NA Not for Profit Corporation          40.67955
## 2555                  NA                      State          43.03251
## 2556                  NA Not for Profit Corporation          43.95754
## 2557                  NA       Business Corporation          40.66756
## 2558                  NA Not for Profit Corporation          43.10523
## 2559                  NA                        LLC          40.72243
## 2560               16544 Not for Profit Corporation          42.20896
## 2561                  NA Not for Profit Corporation          40.85477
## 2562               10029 Not for Profit Corporation          40.65489
## 2563                  NA                        LLC           0.00000
## 2564               13502 Not for Profit Corporation          43.08655
## 2565                  NA Not for Profit Corporation          42.79357
## 2566                  NA       Business Corporation          40.63403
## 2567               12208 Not for Profit Corporation          42.73629
## 2568                  NA Not for Profit Corporation          40.61657
## 2569                  NA                        LLC                NA
## 2570                  NA       Business Corporation          41.92920
## 2571               11212 Not for Profit Corporation          40.64373
## 2572                  NA Not for Profit Corporation          42.99122
## 2573                  NA                        LLC          43.07584
## 2574                  NA                        LLC          41.32890
## 2575                  NA Not for Profit Corporation          43.14017
## 2576                  NA                        LLC          41.19196
## 2577                  NA Not for Profit Corporation          42.08458
## 2578                  NA                        LLC          42.45291
## 2579                  NA Not for Profit Corporation          40.68315
## 2580                  NA Not for Profit Corporation          43.09405
## 2581                  NA       Business Corporation          40.71484
## 2582                  NA Not for Profit Corporation                NA
## 2583               14203 Not for Profit Corporation          42.97800
## 2584                  NA Not for Profit Corporation          43.18695
## 2585                  NA Not for Profit Corporation          40.73788
## 2586                  NA Not for Profit Corporation          43.85917
## 2587                  NA Not for Profit Corporation          43.11851
## 2588               10467 Not for Profit Corporation          41.01519
## 2589               48152 Not for Profit Corporation          42.74301
## 2590                  NA Not for Profit Corporation          40.83483
## 2591               10467 Not for Profit Corporation          40.84550
## 2592                  NA Not for Profit Corporation          42.44310
## 2593               14203 Not for Profit Corporation          42.08588
## 2594               10467 Not for Profit Corporation          40.85245
## 2595               13502 Not for Profit Corporation          43.08913
## 2596                  NA Not for Profit Corporation          43.09240
## 2597                  NA Not for Profit Corporation          41.16066
## 2598               10310 Not for Profit Corporation          40.63467
## 2599                  NA                        LLC          40.77390
## 2600               10701 Not for Profit Corporation          40.93939
## 2601               10013               Municipality          40.87458
## 2602               12540 Not for Profit Corporation          41.69589
## 2603               10467 Not for Profit Corporation          41.32597
## 2604                  NA       Business Corporation          40.82393
## 2605               48152 Not for Profit Corporation          42.72533
## 2606                  NA Not for Profit Corporation          43.15425
## 2607               12208 Not for Profit Corporation          42.67427
## 2608                  NA Not for Profit Corporation          42.09788
## 2609                  NA Not for Profit Corporation          44.13070
## 2610                  NA Public Benefit Corporation          41.69144
## 2611                  NA       Business Corporation          41.06394
## 2612                  NA                  (unknown)          40.67629
## 2613               10467 Not for Profit Corporation          40.86433
## 2614                  NA Not for Profit Corporation          40.76718
## 2615               11747 Not for Profit Corporation          40.68841
## 2616                  NA Not for Profit Corporation          43.01537
## 2617                  NA       Business Corporation          40.70852
## 2618                  NA                      State          40.89686
## 2619                  NA Not for Profit Corporation          42.07735
## 2620                  NA                        LLC          40.93068
## 2621                  NA Not for Profit Corporation          43.03280
## 2622                  NA Not for Profit Corporation          40.77432
## 2623               14611 Not for Profit Corporation          43.16800
## 2624                  NA                     County          43.08283
## 2625               11212 Not for Profit Corporation          40.67726
## 2626                  NA       Business Corporation          44.94731
## 2627                  NA                        LLC          43.25299
## 2628                  NA                        LLC          44.68278
## 2629                  NA       Business Corporation          40.85909
## 2630                  NA Not for Profit Corporation                NA
## 2631                  NA Not for Profit Corporation                NA
## 2632                  NA Not for Profit Corporation          42.99693
## 2633                  NA Not for Profit Corporation          40.76506
## 2634                  NA Not for Profit Corporation          43.00095
## 2635                  NA Not for Profit Corporation          42.11855
## 2636                  NA Not for Profit Corporation          40.82173
## 2637                  NA Not for Profit Corporation          43.11637
## 2638                  NA Not for Profit Corporation          42.11506
## 2639                  NA Not for Profit Corporation          42.91156
## 2640                  NA Not for Profit Corporation          41.13995
## 2641               11042 Not for Profit Corporation          40.72956
## 2642                  NA                        LLC          40.88000
## 2643               14850 Not for Profit Corporation          42.60509
## 2644                  NA Not for Profit Corporation          43.15525
## 2645                  NA Not for Profit Corporation          43.04731
## 2646                  NA Not for Profit Corporation          43.24066
## 2647                  NA                        LLC          43.95089
## 2648                  NA Not for Profit Corporation          40.67751
## 2649                  NA                        LLC          40.68414
## 2650                  NA Not for Profit Corporation          41.38979
## 2651                  NA Not for Profit Corporation                NA
## 2652                  NA       Business Corporation          40.66861
## 2653                  NA Not for Profit Corporation          40.74834
## 2654                  NA Not for Profit Corporation          43.07727
## 2655                  NA                      State          40.80687
## 2656                  NA                        LLC          40.62839
## 2657                  NA Not for Profit Corporation          42.93039
## 2658               14611 Not for Profit Corporation          43.07695
## 2659                  NA Not for Profit Corporation          42.52924
## 2660                  NA Not for Profit Corporation          41.49360
## 2661                  NA Not for Profit Corporation          40.77650
## 2662                  NA                        LLC          40.85679
## 2663                  NA Not for Profit Corporation          42.81484
## 2664                  NA Not for Profit Corporation          43.11246
## 2665               11042 Not for Profit Corporation          40.75889
## 2666                  NA Not for Profit Corporation          43.00571
## 2667                  NA       Business Corporation          40.73576
## 2668                  NA Not for Profit Corporation          42.15959
## 2669                  NA       Business Corporation          41.54085
## 2670                  NA       Business Corporation          40.71225
## 2671                  NA Not for Profit Corporation          40.86373
## 2672                  NA Not for Profit Corporation          43.07944
## 2673                  NA Not for Profit Corporation          40.81517
## 2674                  NA Not for Profit Corporation          42.73855
## 2675               11747 Not for Profit Corporation          40.80720
## 2676                  NA Not for Profit Corporation          41.11596
## 2677                  NA Not for Profit Corporation                NA
## 2678                  NA Not for Profit Corporation          42.09561
## 2679               14611 Not for Profit Corporation          43.22680
## 2680                  NA Not for Profit Corporation          42.07888
## 2681                  NA Not for Profit Corporation          43.04448
## 2682               13326 Not for Profit Corporation          42.45720
## 2683                  NA                        LLC          40.92984
## 2684                  NA                     County          44.84992
## 2685                  NA Not for Profit Corporation          40.63968
## 2686               10595 Not for Profit Corporation          41.92228
## 2687               10065 Not for Profit Corporation          40.73945
## 2688                  NA Not for Profit Corporation          40.69253
## 2689                  NA Not for Profit Corporation          42.94781
## 2690                  NA                        LLC          40.78677
## 2691                  NA Not for Profit Corporation          40.80453
## 2692                  NA Not for Profit Corporation          40.74423
## 2693               14611 Not for Profit Corporation          43.11231
## 2694                  NA Not for Profit Corporation          40.69691
## 2695                  NA Not for Profit Corporation          40.61906
## 2696                  NA                        LLC          40.87905
## 2697               13326 Not for Profit Corporation          42.44701
## 2698                  NA       Business Corporation          40.61383
## 2699                  NA                      State          43.17722
## 2700                  NA Not for Profit Corporation          40.77548
## 2701                  NA                        LLC          43.40447
## 2702                  NA Not for Profit Corporation          40.69868
## 2703                  NA                     County          43.63630
## 2704                  NA                      State          41.24361
## 2705               10029 Not for Profit Corporation          40.79470
## 2706                  NA Not for Profit Corporation          40.73819
## 2707               12208 Not for Profit Corporation          42.63847
## 2708                  NA                     County          41.35558
## 2709               12208 Not for Profit Corporation                NA
## 2710               11042 Not for Profit Corporation          40.87173
## 2711                  NA                        LLC          40.73026
## 2712                  NA Not for Profit Corporation          40.81984
## 2713                  NA Not for Profit Corporation          40.83968
## 2714                  NA Not for Profit Corporation          41.88692
## 2715                  NA Not for Profit Corporation          43.49230
## 2716               13326 Not for Profit Corporation          43.04396
## 2717                  NA Not for Profit Corporation          41.02412
## 2718                  NA Not for Profit Corporation          40.88948
## 2719                  NA                        LLC          40.76920
## 2720                  NA Not for Profit Corporation          43.12501
## 2721                  NA                        LLC          40.80871
## 2722               48152 Not for Profit Corporation          42.63160
## 2723                  NA Not for Profit Corporation          41.92652
## 2724                  NA Not for Profit Corporation          40.69953
## 2725                  NA Not for Profit Corporation          40.86799
## 2726                  NA                        LLC          42.32812
## 2727                  NA Not for Profit Corporation          40.76439
## 2728               13676 Not for Profit Corporation          44.80747
## 2729                  NA       Business Corporation                NA
## 2730               12601 Not for Profit Corporation          41.69192
## 2731               11747 Not for Profit Corporation          40.81141
## 2732               11042 Not for Profit Corporation          40.87460
## 2733                  NA                     County          42.66309
## 2734                  NA                      State          40.75432
## 2735                  NA Not for Profit Corporation          42.85999
## 2736                  NA Not for Profit Corporation          40.81578
## 2737               11042 Not for Profit Corporation          40.70658
## 2738                  NA                        LLC          43.10905
## 2739               12208 Not for Profit Corporation                NA
## 2740                  NA Not for Profit Corporation          42.85980
## 2741                  NA Not for Profit Corporation          43.07892
## 2742               14203 Not for Profit Corporation          42.92905
## 2743               13326 Not for Profit Corporation          42.85411
## 2744               10310 Not for Profit Corporation          40.61258
## 2745                  NA Not for Profit Corporation          40.80738
## 2746                  NA Not for Profit Corporation          42.80191
## 2747                  NA                        LLC          40.74985
## 2748                  NA Not for Profit Corporation          40.64531
## 2749                  NA Not for Profit Corporation          40.69063
## 2750                  NA Not for Profit Corporation          40.63105
## 2751                  NA       Business Corporation          43.79568
## 2752                  NA Not for Profit Corporation          40.91927
## 2753               10467 Not for Profit Corporation          41.00850
## 2754               10029 Not for Profit Corporation          40.73219
## 2755                  NA       Business Corporation          43.06226
## 2756                  NA Not for Profit Corporation          42.24580
## 2757                  NA Not for Profit Corporation          40.75911
## 2758                  NA Not for Profit Corporation          42.47526
## 2759                  NA       Business Corporation          40.81978
## 2760               13502 Not for Profit Corporation          43.48542
## 2761                  NA       Business Corporation          40.77518
## 2762                  NA       Business Corporation          40.74040
## 2763                  NA Not for Profit Corporation          42.95662
## 2764                  NA Not for Profit Corporation          40.84729
## 2765                  NA                        LLC          42.82608
## 2766                  NA Not for Profit Corporation          42.09088
## 2767               14203 Not for Profit Corporation          42.91464
## 2768                  NA Not for Profit Corporation          42.94457
## 2769                  NA Not for Profit Corporation          43.25064
## 2770                  NA Not for Profit Corporation          41.03741
## 2771               11554                     County                NA
## 2772                  NA Not for Profit Corporation          40.84193
## 2773                  NA Not for Profit Corporation          40.84635
## 2774                  NA                        LLC          40.84102
## 2775                  NA Not for Profit Corporation          42.86566
## 2776                  NA Not for Profit Corporation          40.72552
## 2777                  NA       Business Corporation          40.76738
##      Facility.Longitude       Facility.Location
## 1             -75.97524 (42.097095, -75.975243)
## 2             -75.22883  (43.05497, -75.228828)
## 3                    NA                        
## 4             -78.12867  (42.738979, -78.12867)
## 5             -77.96783 (42.126461, -77.967834)
## 6             -78.68856  (42.956268, -78.68856)
## 7             -73.59129 (40.733765, -73.591286)
## 8             -78.87582 (42.893864, -78.875824)
## 9             -73.42833 (40.725994, -73.428329)
## 10            -73.98323 (40.734818, -73.983231)
## 11            -73.60797 (40.732571, -73.607971)
## 12            -75.65352  (43.07695, -75.653519)
## 13            -74.02017 (40.638981, -74.020172)
## 14            -76.05997 (42.094955, -76.059975)
## 15            -78.82411 (42.825882, -78.824112)
## 16            -72.42769 (41.073666, -72.427689)
## 17            -78.83438 (42.941837, -78.834381)
## 18            -73.98748   (40.76363, -73.98748)
## 19            -74.04248 (41.435483, -74.042484)
## 20            -74.46201 (44.216591, -74.462013)
## 21            -75.41339 (43.209602, -75.413391)
## 22            -78.46013 (42.077095, -78.460129)
## 23            -77.94099 (43.220142, -77.940994)
## 24            -73.49689 (44.702244, -73.496895)
## 25                   NA                        
## 26            -73.89396   (40.9399, -73.893956)
## 27            -73.97161 (40.750033, -73.971612)
## 28            -73.19323 (40.740743, -73.193226)
## 29            -73.63368  (40.80756, -73.633685)
## 30            -73.73620 (42.739939, -73.736204)
## 31            -73.74891 (42.661339, -73.748909)
## 32            -73.88845 (40.884361, -73.888451)
## 33            -73.93474 (40.584164, -73.934738)
## 34            -76.85422 (42.162086, -76.854225)
## 35            -73.91679 (40.810146, -73.916794)
## 36             43.21162 (-75.459349, 43.211623)
## 37            -75.06347  (42.45277, -75.063469)
## 38            -74.35780 (41.450043, -74.357803)
## 39            -73.93442 (41.691917, -73.934418)
## 40                   NA                        
## 41            -73.98225 (40.691814, -73.982254)
## 42            -78.99051 (43.113121, -78.990509)
## 43            -73.78253 (40.683594, -73.782532)
## 44            -73.87211 (40.754082, -73.872108)
## 45                   NA                        
## 46            -75.49815 (43.795677, -75.498146)
## 47            -73.62596 (40.711121, -73.625961)
## 48            -73.68811  (42.696468, -73.68811)
## 49            -73.92531  (40.70039, -73.925308)
## 50                   NA                        
## 51            -74.01238 (40.649162, -74.012375)
## 52            -73.84824 (40.840431, -73.848244)
## 53                   NA                        
## 54            -73.98769 (40.660053, -73.987686)
## 55            -74.07817 (40.579605, -74.078171)
## 56            -78.77950 (42.832264, -78.779503)
## 57            -77.21177 (42.884579, -77.211769)
## 58            -73.93044 (40.815704, -73.930443)
## 59            -73.84473 (40.851326, -73.844727)
## 60            -78.75150 (42.965672, -78.751503)
## 61            -77.87979 (42.727592, -77.879791)
## 62            -75.42737 (43.226517, -75.427368)
## 63            -73.86040 (41.144116, -73.860401)
## 64            -73.97626 (40.695091, -73.976257)
## 65            -73.24937 (40.721145, -73.249374)
## 66            -78.66408 (43.154987, -78.664078)
## 67            -77.09353 (43.046654, -77.093529)
## 68            -73.60868   (40.73338, -73.60868)
## 69            -73.96164 (40.805912, -73.961639)
## 70            -73.87820 (42.231709, -73.878197)
## 71            -73.93580 (41.694523, -73.935799)
## 72            -73.78432 (41.337845, -73.784317)
## 73            -76.40585 (43.314819, -76.405846)
## 74            -78.16265  (42.42638, -78.162651)
## 75            -73.80722  (41.08506, -73.807222)
## 76            -74.10734 (40.569302, -74.107338)
## 77            -78.87013 (42.892633, -78.870128)
## 78            -73.59712 (44.215958, -73.597115)
## 79            -73.62358 (40.706181, -73.623581)
## 80            -77.60765 (43.113632, -77.607651)
## 81            -73.97321 (40.590153, -73.973213)
## 82            -73.99126 (40.695219, -73.991256)
## 83            -73.84073 (40.885578, -73.840729)
## 84            -73.83697  (40.678603, -73.83697)
## 85            -77.63444 (43.158569, -77.634438)
## 86            -73.84209 (40.846287, -73.842094)
## 87              0.00000              (0.0, 0.0)
## 88            -73.05389  (40.93816, -73.053894)
## 89            -73.95590 (40.603871, -73.955902)
## 90            -73.95708 (40.770443, -73.957077)
## 91            -72.93374 (40.772404, -72.933739)
## 92            -76.07580 (43.036987, -76.075798)
## 93            -75.39707 (44.620853, -75.397072)
## 94            -74.03145 (41.149361, -74.031448)
## 95            -73.85768 (40.844166, -73.857681)
## 96            -73.58278 (43.269222, -73.582777)
## 97            -74.98678 (44.670826, -74.986778)
## 98            -73.87168 (40.726879, -73.871681)
## 99            -75.27553 (43.099613, -75.275528)
## 100           -77.64252 (43.142277, -77.642517)
## 101           -75.28001 (43.086676, -75.280007)
## 102           -73.93313 (40.798484, -73.933131)
## 103           -73.96067  (40.805019, -73.96067)
## 104                  NA                        
## 105           -73.89062 (41.204334, -73.890617)
## 106           -74.21619 (42.953758, -74.216194)
## 107           -73.42484 (40.767159, -73.424843)
## 108           -73.88403 (40.858544, -73.884028)
## 109           -73.99395   (40.76181, -73.99395)
## 110           -73.77247  (41.098178, -73.77247)
## 111           -75.81302 (42.920025, -75.813019)
## 112           -73.99202 (40.574428, -73.992017)
## 113           -73.96039 (40.781437, -73.960388)
## 114                  NA                        
## 115           -73.82736 (40.900517, -73.827358)
## 116           -74.04147 (41.435596, -74.041466)
## 117           -77.44179 (43.133369, -77.441788)
## 118                  NA                        
## 119           -73.90021 (40.859722, -73.900208)
## 120           -73.08920 (40.900539, -73.089203)
## 121           -73.93713 (40.824013, -73.937134)
## 122           -76.02235 (43.039871, -76.022354)
## 123                  NA                        
## 124           -73.90311 (40.832577, -73.903114)
## 125           -77.05699  (42.14257, -77.056992)
## 126           -73.97360 (40.604397, -73.973602)
## 127           -77.27866 (42.372952, -77.278656)
## 128           -73.81065 (42.765404, -73.810654)
## 129           -76.86007 (42.352196, -76.860071)
## 130           -73.99585  (40.713638, -73.99585)
## 131           -73.87017  (40.76886, -73.870171)
## 132           -73.74264 (40.730801, -73.742638)
## 133           -73.77383  (42.65337, -73.773834)
## 134                  NA                        
## 135           -73.65407 (43.306038, -73.654068)
## 136           -76.23280 (43.471275, -76.232803)
## 137           -73.94003 (40.750938, -73.940033)
## 138           -73.18273 (40.855995, -73.182725)
## 139           -77.02856 (43.065098, -77.028557)
## 140           -73.83903 (40.881653, -73.839035)
## 141           -76.79501 (42.093815, -76.795006)
## 142           -76.16211 (43.121719, -76.162109)
## 143           -73.81405 (42.686153, -73.814049)
## 144           -75.28711 (43.118931, -75.287109)
## 145           -73.78491 (42.139454, -73.784914)
## 146           -76.99490 (42.123384, -76.994901)
## 147           -75.04869 (42.457962, -75.048691)
## 148           -77.63566 (43.150307, -77.635658)
## 149           -77.58451  (43.19281, -77.584511)
## 150           -75.27553 (43.099613, -75.275528)
## 151           -75.93822 (43.974911, -75.938217)
## 152           -73.07147 (40.934849, -73.071465)
## 153           -76.20820 (43.035419, -76.208199)
## 154           -73.96576 (40.757862, -73.965759)
## 155           -73.97613 (40.724564, -73.976128)
## 156           -74.41487 (41.444469, -74.414871)
## 157           -78.86798 (42.905473, -78.867984)
## 158           -73.85517 (40.858292, -73.855171)
## 159           -73.94788 (40.636341, -73.947876)
## 160           -73.86656 (40.878051, -73.866557)
## 161           -76.05903  (43.101935, -76.05903)
## 162           -77.56405 (43.179188, -77.564049)
## 163           -73.69636 (42.697277, -73.696358)
## 164           -73.79941 (40.705341, -73.799408)
## 165           -78.17748  (43.00404, -78.177475)
## 166           -73.75918  (42.77153, -73.759177)
## 167           -76.13663 (43.046608, -76.136635)
## 168           -76.53690 (42.469826, -76.536896)
## 169           -73.89931 (40.856369, -73.899307)
## 170           -74.32973  (42.59557, -74.329735)
## 171           -73.97200    (40.752319, -73.972)
## 172           -73.67744 (40.993641, -73.677444)
## 173           -73.95383 (40.766956, -73.953827)
## 174           -73.94081 (40.802979, -73.940811)
## 175           -76.09327 (43.060844, -76.093269)
## 176           -74.00125 (40.718872, -74.001251)
## 177           -73.93667 (40.795704, -73.936668)
## 178           -73.66410    (43.30203, -73.6641)
## 179           -73.96381 (40.713039, -73.963806)
## 180           -73.71630 (40.782249, -73.716301)
## 181           -73.33577  (40.900703, -73.33577)
## 182           -73.99342 (40.685398, -73.993423)
## 183           -73.93364   (41.83255, -73.93364)
## 184           -75.18942  (43.08913, -75.189423)
## 185           -78.78944 (43.015245, -78.789439)
## 186           -73.97746 (40.689842, -73.977455)
## 187           -73.99873 (40.638924, -73.998734)
## 188           -77.27866 (42.372952, -77.278656)
## 189           -77.17067 (43.234003, -77.170669)
## 190           -77.61779  (43.195732, -77.61779)
## 191           -73.63150   (40.649601, -73.6315)
## 192           -73.91783   (40.8321, -73.917831)
## 193           -78.84208 (42.732929, -78.842084)
## 194           -73.67092 (42.734924, -73.670921)
## 195           -73.71484 (40.745637, -73.714841)
## 196           -73.72471  (41.19828, -73.724709)
## 197                  NA                        
## 198           -76.08262 (44.232113, -76.082619)
## 199           -73.75682 (40.668883, -73.756819)
## 200           -73.77631 (42.246239, -73.776306)
## 201           -73.94373 (40.707959, -73.943728)
## 202           -74.00441  (41.929821, -74.00441)
## 203           -73.84713  (40.828777, -73.84713)
## 204           -73.80771 (43.086483, -73.807709)
## 205           -77.94809  (42.121834, -77.94809)
## 206           -75.81283 (42.922762, -75.812833)
## 207           -73.91064 (40.696823, -73.910637)
## 208           -77.10079 (43.059635, -77.100792)
## 209           -73.89618 (40.860882, -73.896179)
## 210           -73.80366 (40.695549, -73.803658)
## 211           -73.89156 (40.851963, -73.891558)
## 212           -73.85135 (42.699524, -73.851347)
## 213           -78.83539 (42.942528, -78.835388)
## 214           -73.95106 (40.794212, -73.951065)
## 215           -73.64967 (43.309181, -73.649674)
## 216           -73.88920 (40.860298, -73.889198)
## 217           -74.06794  (41.742107, -74.06794)
## 218           -76.13881 (43.042622, -76.138809)
## 219           -73.91388 (40.805367, -73.913879)
## 220           -74.18829 (42.973042, -74.188293)
## 221           -73.89617 (40.846844, -73.896172)
## 222           -73.20649  (40.82114, -73.206486)
## 223           -73.74932 (40.604053, -73.749321)
## 224           -74.01108 (40.713146, -74.011078)
## 225           -73.94161 (40.792862, -73.941612)
## 226           -79.04997 (43.096458, -79.049965)
## 227           -78.75442 (42.890629, -78.754417)
## 228           -73.63821 (40.739185, -73.638214)
## 229           -72.80154 (40.799637, -72.801536)
## 230                  NA                        
## 231           -74.00076 (40.744518, -74.000763)
## 232                  NA                        
## 233           -73.50999 (40.811646, -73.509987)
## 234           -73.97651 (40.739605, -73.976509)
## 235           -73.34514 (40.690781, -73.345139)
## 236           -78.77472 (42.764557, -78.774719)
## 237           -73.20359  (40.869057, -73.20359)
## 238           -74.32669  (43.04282, -74.326691)
## 239           -73.77115 (42.855709, -73.771149)
## 240                  NA                        
## 241           -73.80388 (42.657539, -73.803879)
## 242           -73.52569 (40.776691, -73.525688)
## 243           -73.94097  (40.70039, -73.940971)
## 244           -74.09217 (40.633396, -74.092171)
## 245           -75.49967  (44.69302, -75.499672)
## 246           -79.35283 (42.484352, -79.352829)
## 247           -73.93304 (42.792469, -73.933044)
## 248           -78.81286  (42.84853, -78.812859)
## 249           -73.79308 (40.685352, -73.793083)
## 250           -73.99143 (40.716114, -73.991425)
## 251           -74.18627 (42.961201, -74.186272)
## 252           -73.93480 (40.693974, -73.934799)
## 253           -73.82960 (40.860195, -73.829597)
## 254           -74.06145 (41.758102, -74.061455)
## 255           -73.03472 (40.780437, -73.034721)
## 256           -78.21661 (43.240555, -78.216614)
## 257           -73.92899 (40.638084, -73.928993)
## 258           -73.79566 (42.678467, -73.795662)
## 259           -73.85365 (42.996357, -73.853653)
## 260           -73.84326 (40.865871, -73.843262)
## 261           -75.87577 (42.097765, -75.875766)
## 262           -74.69003 (41.654942, -74.690025)
## 263           -73.82991  (40.761761, -73.82991)
## 264           -74.10902 (40.634666, -74.109016)
## 265           -73.83453 (42.680035, -73.834526)
## 266           -73.98588 (40.637465, -73.985878)
## 267           -73.84089 (40.845941, -73.840885)
## 268           -73.97403  (40.759846, -73.97403)
## 269           -73.89034 (40.852428, -73.890343)
## 270           -77.31003 (42.898872, -77.310028)
## 271           -73.65119 (40.664047, -73.651192)
## 272           -76.83271  (42.183548, -76.83271)
## 273           -73.79774 (41.108444, -73.797737)
## 274           -77.60754 (43.135769, -77.607544)
## 275           -73.87924 (41.007656, -73.879242)
## 276           -73.90463 (40.836246, -73.904633)
## 277           -76.18619 (42.609051, -76.186195)
## 278           -73.83386 (40.579437, -73.833862)
## 279           -74.89100  (44.92297, -74.891002)
## 280           -79.33164 (42.484875, -79.331635)
## 281           -73.94428 (40.788795, -73.944283)
## 282           -79.23436 (42.090007, -79.234356)
## 283           -73.84378 (40.857151, -73.843781)
## 284           -76.49056 (43.450497, -76.490562)
## 285           -74.99844 (43.025597, -74.998444)
## 286           -78.73307  (43.185364, -78.73307)
## 287           -76.15965 (43.107254, -76.159653)
## 288           -75.91892 (43.985638, -75.918922)
## 289           -73.70036 (42.775986, -73.700363)
## 290           -73.96649 (40.797367, -73.966492)
## 291           -77.44044 (43.214034, -77.440436)
## 292           -73.99949 (41.929648, -73.999494)
## 293           -78.90615 (43.092342, -78.906151)
## 294           -73.90507 (40.702795, -73.905071)
## 295           -73.92913 (40.640694, -73.929131)
## 296           -74.15706 (40.626499, -74.157064)
## 297           -76.49083 (43.450394, -76.490829)
## 298           -76.48520 (43.466839, -76.485199)
## 299           -79.24509 (42.091541, -79.245094)
## 300           -78.19847 (43.009151, -78.198471)
## 301           -74.02989 (41.495663, -74.029892)
## 302           -73.70902 (42.281307, -73.709018)
## 303           -73.62301 (40.874603, -73.623009)
## 304           -75.93567 (42.092597, -75.935671)
## 305           -75.34428 (43.070301, -75.344276)
## 306           -73.98171 (40.668816, -73.981712)
## 307           -73.82319 (40.764179, -73.823189)
## 308           -73.60099  (40.715366, -73.60099)
## 309           -73.85306 (40.924877, -73.853058)
## 310           -73.99545  (41.92643, -73.995453)
## 311           -73.95980 (40.678535, -73.959801)
## 312           -73.76243 (42.732956, -73.762428)
## 313           -78.75491 (42.959568, -78.754906)
## 314           -78.45741 (42.077087, -78.457413)
## 315           -73.08845 (40.901283, -73.088455)
## 316           -73.78657 (40.710953, -73.786575)
## 317           -73.94649 (40.807384, -73.946495)
## 318                  NA                        
## 319           -73.48667 (43.203681, -73.486671)
## 320           -73.38179 (40.682709, -73.381792)
## 321           -74.08391    (41.4857, -74.08391)
## 322           -78.65919 (42.508579, -78.659195)
## 323           -73.95244 (40.791565, -73.952438)
## 324           -77.05440   (42.1423, -77.054403)
## 325           -77.59740  (43.14917, -77.597397)
## 326           -78.82036 (42.955959, -78.820358)
## 327           -73.24115  (40.782433, -73.24115)
## 328           -73.98508 (40.576527, -73.985085)
## 329           -77.94469 (43.220116, -77.944695)
## 330           -78.87881 (42.959305, -78.878807)
## 331           -73.64041 (40.742096, -73.640411)
## 332           -73.88572  (40.74432, -73.885719)
## 333           -76.09492 (43.042938, -76.094917)
## 334           -77.28606 (42.874735, -77.286061)
## 335           -73.97121 (40.685375, -73.971214)
## 336           -73.70309 (42.631599, -73.703094)
## 337           -73.95943 (40.700439, -73.959435)
## 338           -75.28576 (43.090382, -75.285759)
## 339           -77.51692  (43.126027, -77.51692)
## 340           -76.87241 (43.084709, -76.872414)
## 341           -75.91363 (43.959759, -75.913628)
## 342           -73.90820 (40.676464, -73.908203)
## 343           -73.82549 (42.702126, -73.825493)
## 344           -73.41004 (40.689098, -73.410042)
## 345           -73.79080 (40.711798, -73.790796)
## 346           -73.47930   (40.7995, -73.479301)
## 347           -76.45897  (43.395937, -76.45897)
## 348           -73.76999  (40.77618, -73.769989)
## 349           -73.75398 (40.600086, -73.753983)
## 350           -73.99289 (40.765225, -73.992892)
## 351           -74.10675   (40.63546, -74.10675)
## 352           -74.00314 (40.606895, -74.003136)
## 353           -73.91063  (40.85471, -73.910629)
## 354           -78.19388  (43.23838, -78.193878)
## 355           -73.76870   (43.492516, -73.7687)
## 356           -73.55682 (41.849525, -73.556816)
## 357           -74.91528 (44.923389, -74.915283)
## 358           -73.92876 (40.835983, -73.928757)
## 359           -77.66323  (42.354985, -77.66323)
## 360           -73.90132 (40.820606, -73.901321)
## 361           -75.94320 (42.113314, -75.943202)
## 362           -75.27553 (43.099613, -75.275528)
## 363           -73.95514 (40.788605, -73.955139)
## 364           -73.96785  (41.361748, -73.96785)
## 365           -73.96063 (40.773907, -73.960632)
## 366           -74.38261 (41.452526, -74.382607)
## 367           -73.80596 (40.696922, -73.805962)
## 368           -73.79229 (40.725778, -73.792292)
## 369           -79.31006 (42.345772, -79.310059)
## 370           -73.77177 (40.759819, -73.771767)
## 371           -73.57967 (43.103691, -73.579674)
## 372           -73.99642 (40.671593, -73.996422)
## 373           -73.82886  (40.76248, -73.828856)
## 374           -73.77091 (40.715927, -73.770912)
## 375           -73.65404 (43.343609, -73.654045)
## 376           -74.84746 (43.043964, -74.847458)
## 377           -73.94223  (40.842072, -73.94223)
## 378           -74.09924 (41.728039, -74.099243)
## 379           -77.68703 (43.184101, -77.687035)
## 380           -73.98455  (44.266376, -73.98455)
## 381           -77.60712 (43.149251, -77.607117)
## 382           -73.74886 (42.672863, -73.748863)
## 383           -73.91020 (40.854454, -73.910202)
## 384                  NA                        
## 385           -73.94096  (40.84153, -73.940964)
## 386           -73.93153 (40.849228, -73.931534)
## 387           -73.84904 (40.845921, -73.849037)
## 388           -73.85340   (43.0448, -73.853401)
## 389           -73.97736 (40.676399, -73.977364)
## 390           -73.84133 (40.721714, -73.841331)
## 391           -73.55379 (40.725781, -73.553791)
## 392           -78.22672 (43.007389, -78.226723)
## 393           -73.65730 (43.557465, -73.657295)
## 394           -73.67145 (42.733574, -73.671455)
## 395           -73.99460 (40.769203, -73.994598)
## 396           -73.99006 (41.145039, -73.990059)
## 397           -73.97027 (40.759251, -73.970268)
## 398           -73.76620 (42.751701, -73.766205)
## 399           -73.97785 (41.092449, -73.977852)
## 400           -75.91999 (44.337296, -75.919991)
## 401           -73.93645 (40.843231, -73.936455)
## 402           -73.81915 (41.294663, -73.819146)
## 403           -73.70332 (40.753628, -73.703323)
## 404           -78.68636 (42.901447, -78.686363)
## 405           -73.89633  (41.52434, -73.896334)
## 406           -77.73339 (42.911144, -77.733391)
## 407           -73.89698 (40.910623, -73.896982)
## 408           -75.89560 (42.542934, -75.895599)
## 409           -76.18208 (42.601243, -76.182078)
## 410           -74.18745 (42.974472, -74.187447)
## 411           -76.13602 (43.122902, -76.136024)
## 412           -73.73837 (40.955406, -73.738368)
## 413           -78.94045 (43.084431, -78.940453)
## 414           -73.95615 (40.814529, -73.956153)
## 415           -78.85992 (42.879992, -78.859916)
## 416           -73.64053 (40.740757, -73.640533)
## 417           -77.69673 (43.223164, -77.696732)
## 418           -73.92625 (40.865959, -73.926247)
## 419           -73.91731   (41.23604, -73.91731)
## 420           -73.25240 (40.812447, -73.252403)
## 421                  NA                        
## 422           -73.94042 (42.811867, -73.940422)
## 423           -77.11105 (43.044286, -77.111046)
## 424           -78.83438 (42.941837, -78.834381)
## 425           -74.15864 (40.626427, -74.158638)
## 426                  NA                        
## 427           -73.98709 (40.686268, -73.987091)
## 428           -73.94688 (40.826344, -73.946877)
## 429           -73.95770 (40.639965, -73.957695)
## 430           -73.93324 (40.849182, -73.933243)
## 431           -73.95376 (40.652481, -73.953758)
## 432           -77.58432  (43.189716, -77.58432)
## 433           -73.84830  (40.77457, -73.848305)
## 434           -74.33945 (41.394457, -74.339446)
## 435           -74.13300 (41.112255, -74.133003)
## 436           -78.28751 (42.213474, -78.287506)
## 437           -78.20280 (43.240894, -78.202805)
## 438           -75.05997  (42.45564, -75.059975)
## 439           -78.87217 (43.053071, -78.872174)
## 440           -73.95383 (40.656282, -73.953833)
## 441           -76.20820 (43.035419, -76.208199)
## 442           -73.69016 (40.843124, -73.690155)
## 443           -74.35899 (41.262131, -74.358994)
## 444           -78.87864 (42.972507, -78.878639)
## 445           -73.89482 (40.667526, -73.894821)
## 446           -72.65095 (40.936703, -72.650948)
## 447                  NA                        
## 448           -73.79195 (40.739769, -73.791946)
## 449           -73.91979  (40.69873, -73.919785)
## 450           -72.37774 (40.886555, -72.377739)
## 451           -73.24611 (40.772499, -73.246109)
## 452           -74.00485 (40.655552, -74.004845)
## 453           -73.68758  (42.73439, -73.687584)
## 454           -73.89936  (40.83889, -73.899361)
## 455           -77.62960   (43.0658, -77.629601)
## 456           -73.61844 (40.757295, -73.618444)
## 457           -73.84478  (40.847191, -73.84478)
## 458           -73.84772 (40.851233, -73.847719)
## 459           -73.65593  (40.599171, -73.65593)
## 460                  NA                        
## 461           -73.80873 (40.729652, -73.808731)
## 462           -77.28429 (42.891716, -77.284294)
## 463           -73.79021 (41.045986, -73.790207)
## 464           -73.90483 (42.701206, -73.904831)
## 465           -75.45244 (43.236221, -75.452438)
## 466           -75.96363  (44.192075, -75.96363)
## 467           -73.88935 (42.828289, -73.889351)
## 468           -73.78859 (41.040558, -73.788589)
## 469           -73.04301 (40.927387, -73.043007)
## 470           -73.95338 (40.771263, -73.953384)
## 471           -76.18539 (42.233566, -76.185387)
## 472           -78.82922  (42.92717, -78.829224)
## 473           -73.92506 (40.811897, -73.925056)
## 474           -75.83109 (44.054939, -75.831085)
## 475           -73.98428 (40.718544, -73.984283)
## 476           -73.71667 (40.781834, -73.716667)
## 477           -73.96648  (40.630352, -73.96648)
## 478           -75.05581 (44.162724, -75.055809)
## 479           -74.52383 (44.958481, -74.523834)
## 480                  NA                        
## 481                  NA                        
## 482           -73.92248 (40.836143, -73.922478)
## 483           -75.95882  (42.10033, -75.958817)
## 484           -74.34368  (41.39661, -74.343681)
## 485           -73.78173 (42.868931, -73.781731)
## 486           -77.69433 (43.188568, -77.694328)
## 487           -73.77063  (40.682823, -73.77063)
## 488           -73.94550 (40.650967, -73.945496)
## 489           -73.99170   (40.7425, -73.991699)
## 490           -76.17524 (43.097196, -76.175236)
## 491           -73.04810 (40.933846, -73.048096)
## 492           -74.03543  (41.13995, -74.035431)
## 493           -73.49905 (44.687858, -73.499051)
## 494           -77.94997 (42.122921, -77.949974)
## 495           -74.32451 (42.640671, -74.324509)
## 496           -74.00031 (40.737834, -74.000312)
## 497           -74.02371 (40.615116, -74.023712)
## 498           -73.68568 (40.747787, -73.685677)
## 499           -73.91732  (40.883064, -73.91732)
## 500           -73.90546 (40.814877, -73.905464)
## 501           -73.62303 (40.874683, -73.623032)
## 502           -73.75918  (42.77153, -73.759177)
## 503                  NA                        
## 504           -77.54723 (43.225882, -77.547233)
## 505           -73.95481 (40.765495, -73.954811)
## 506           -76.12064 (43.570259, -76.120636)
## 507           -73.84664 (40.845688, -73.846642)
## 508           -74.11741 (40.635918, -74.117409)
## 509           -76.42278 (42.714851, -76.422775)
## 510           -73.78931 (42.679539, -73.789314)
## 511           -73.84991 (40.917374, -73.849907)
## 512           -73.96453 (40.622074, -73.964531)
## 513           -74.00191 (40.640873, -74.001915)
## 514           -78.76113 (42.990945, -78.761133)
## 515           -78.94070 (43.086246, -78.940697)
## 516           -73.91222 (40.758976, -73.912224)
## 517           -73.89972  (40.83136, -73.899719)
## 518           -73.80502 (42.653301, -73.805016)
## 519           -74.01589 (41.916138, -74.015892)
## 520                  NA                        
## 521           -74.08438 (40.582493, -74.084381)
## 522           -73.99390  (40.60194, -73.993904)
## 523                  NA                        
## 524           -73.93955 (40.839375, -73.939552)
## 525           -77.57855 (43.137878, -77.578552)
## 526           -73.82632 (40.912399, -73.826324)
## 527           -74.69539 (41.658881, -74.695391)
## 528           -73.91662 (42.819191, -73.916618)
## 529           -73.99532 (40.727074, -73.995316)
## 530           -73.83201  (40.70023, -73.832008)
## 531           -72.97823 (40.779404, -72.978226)
## 532           -73.98151 (40.738209, -73.981506)
## 533           -73.11190   (40.743107, -73.1119)
## 534           -73.77964  (43.087032, -73.77964)
## 535           -73.73260 (42.732399, -73.732597)
## 536           -75.91415 (43.964409, -75.914154)
## 537           -78.82169 (42.860371, -78.821693)
## 538           -73.37279 (43.024326, -73.372795)
## 539           -73.80743 (43.085854, -73.807434)
## 540           -72.64171 (40.820945, -72.641707)
## 541           -73.70008 (40.758907, -73.700081)
## 542           -73.61056 (41.395714, -73.610565)
## 543           -73.80392 (42.683147, -73.803917)
## 544           -73.99287 (40.752907, -73.992867)
## 545           -74.26788 (43.109242, -74.267879)
## 546           -78.86597 (43.074463, -78.865974)
## 547           -73.94363 (40.801773, -73.943626)
## 548           -73.91832 (40.694283, -73.918319)
## 549           -73.87835  (40.83139, -73.878349)
## 550           -77.22353 (42.755005, -77.223526)
## 551           -73.92111 (40.662094, -73.921112)
## 552           -74.04176 (41.435772, -74.041756)
## 553           -73.92090 (40.806316, -73.920898)
## 554           -72.66823 (40.912382, -72.668228)
## 555           -73.95827 (41.509468, -73.958267)
## 556           -73.84269 (40.849448, -73.842687)
## 557           -75.96760   (42.0956, -75.967598)
## 558           -73.91137 (41.934959, -73.911369)
## 559           -73.79495  (40.73914, -73.794952)
## 560           -74.02572 (40.630716, -74.025721)
## 561           -73.79040 (40.674678, -73.790395)
## 562           -73.89843    (41.6936, -73.89843)
## 563           -78.82321 (42.938929, -78.823213)
## 564           -73.83979 (41.063234, -73.839789)
## 565           -79.33479  (42.484669, -79.33479)
## 566           -73.91110 (40.818226, -73.911102)
## 567           -76.48777   (42.40509, -76.48777)
## 568           -73.69999 (40.773783, -73.699986)
## 569           -73.97114 (40.763859, -73.971138)
## 570           -73.89478 (40.939518, -73.894783)
## 571           -73.92927 (40.830883, -73.929268)
## 572           -74.00580 (40.709972, -74.005803)
## 573           -73.95946 (40.609608, -73.959465)
## 574           -77.06281  (42.67141, -77.062813)
## 575           -73.71170   (40.746719, -73.7117)
## 576           -74.61089 (42.407539, -74.610893)
## 577           -73.98881 (40.635853, -73.988808)
## 578           -77.09972 (43.060444, -77.099724)
## 579           -73.99169 (43.697456, -73.991692)
## 580           -73.94457 (40.705627, -73.944572)
## 581           -74.03829 (41.159513, -74.038291)
## 582           -73.80358  (40.71722, -73.803581)
## 583           -78.77470 (42.931553, -78.774704)
## 584           -76.13382  (43.046837, -76.13382)
## 585           -73.94014 (40.661837, -73.940141)
## 586           -76.16160 (43.121746, -76.161598)
## 587           -74.78777 (42.186298, -74.787773)
## 588           -73.78709 (40.913021, -73.787086)
## 589           -73.92803 (41.094491, -73.928035)
## 590           -77.50922 (43.120018, -77.509216)
## 591           -77.58954 (43.195478, -77.589542)
## 592           -73.81459 (40.739917, -73.814594)
## 593           -73.66424 (41.386158, -73.664238)
## 594           -73.97594 (40.744606, -73.975945)
## 595           -74.10734 (40.569302, -74.107338)
## 596           -73.95536  (40.814388, -73.95536)
## 597           -73.65567 (43.306021, -73.655671)
## 598           -73.78516 (42.862658, -73.785164)
## 599                  NA                        
## 600           -73.68941 (42.789577, -73.689415)
## 601           -73.74403 (43.103058, -73.744034)
## 602           -75.08351 (42.445839, -75.083511)
## 603           -78.85755 (42.753494, -78.857552)
## 604           -73.75780 (42.639912, -73.757797)
## 605           -76.98743 (42.875748, -76.987427)
## 606           -73.76620 (42.629398, -73.766197)
## 607           -72.17000 (40.968404, -72.169997)
## 608           -77.63085 (43.065896, -77.630849)
## 609           -73.74812 (42.663231, -73.748124)
## 610           -75.91474 (43.950783, -75.914742)
## 611           -73.58178 (40.808709, -73.581777)
## 612           -77.69508  (42.55357, -77.695084)
## 613           -73.91277 (41.788734, -73.912766)
## 614           -73.15868  (40.84948, -73.158676)
## 615           -76.51051  (42.43655, -76.510513)
## 616           -73.93863 (40.804955, -73.938629)
## 617           -73.83375   (40.8745, -73.833755)
## 618           -73.83903 (40.881653, -73.839035)
## 619           -73.86862 (41.685022, -73.868618)
## 620           -74.99132 (44.801289, -74.991318)
## 621           -73.70601 (43.359421, -73.706009)
## 622           -76.85863 (42.351536, -76.858627)
## 623           -73.89023  (40.86064, -73.890228)
## 624           -78.85390 (42.904278, -78.853905)
## 625           -73.98760 (40.753926, -73.987598)
## 626           -74.98369  (43.02639, -74.983688)
## 627           -77.11104 (42.166599, -77.111038)
## 628           -73.80161 (40.714149, -73.801613)
## 629           -79.62990 (42.015469, -79.629898)
## 630           -78.45039 (42.086971, -78.450386)
## 631           -73.91869 (41.291759, -73.918686)
## 632           -73.50999 (40.811646, -73.509987)
## 633           -73.77746 (42.869205, -73.777458)
## 634           -73.82549 (42.702126, -73.825493)
## 635           -73.96088 (40.606271, -73.960884)
## 636           -73.90466 (40.846165, -73.904655)
## 637           -73.78011 (40.713646, -73.780113)
## 638           -73.52183 (40.804937, -73.521832)
## 639           -73.68809 (40.734882, -73.688087)
## 640           -73.65480     (43.3079, -73.6548)
## 641           -73.98568  (40.735233, -73.98568)
## 642           -77.61905  (43.246021, -77.61905)
## 643           -73.27624 (40.730665, -73.276243)
## 644           -74.39938  (41.33947, -74.399376)
## 645           -73.91869 (41.291759, -73.918686)
## 646           -78.81260 (42.939404, -78.812599)
## 647           -73.90443 (40.833504, -73.904429)
## 648           -74.07838 (40.622379, -74.078377)
## 649           -75.49815 (43.795677, -75.498146)
## 650           -73.81724 (42.747261, -73.817245)
## 651           -78.75416 (42.940311, -78.754158)
## 652           -78.72984 (43.000877, -78.729836)
## 653           -74.18903  (42.95892, -74.189034)
## 654           -73.13203 (40.787727, -73.132027)
## 655           -76.34473 (43.144634, -76.344734)
## 656           -73.77068 (40.710941, -73.770683)
## 657           -73.93208 (41.124378, -73.932076)
## 658           -74.13534 (40.593884, -74.135338)
## 659           -77.66979 (43.177231, -77.669785)
## 660           -76.26138 (43.041546, -76.261375)
## 661           -79.34665 (42.485615, -79.346649)
## 662           -76.56476 (42.940811, -76.564758)
## 663           -78.74812 (42.893028, -78.748116)
## 664                  NA                        
## 665           -73.38535 (40.834328, -73.385345)
## 666           -77.58205 (43.092171, -77.582054)
## 667           -73.42484 (40.767159, -73.424843)
## 668           -73.78879 (41.110611, -73.788795)
## 669           -77.31958 (42.972852, -77.319578)
## 670           -73.01990  (40.82077, -73.019897)
## 671                  NA                        
## 672           -73.84506 (40.849575, -73.845055)
## 673           -73.91619 (40.842426, -73.916191)
## 674           -73.67712 (40.704697, -73.677116)
## 675           -73.99438 (40.745678, -73.994385)
## 676           -75.43642 (43.235687, -75.436417)
## 677           -73.85545  (40.70208, -73.855453)
## 678           -74.29516  (44.849921, -74.29516)
## 679           -77.62965 (43.067722, -77.629646)
## 680           -74.03716 (41.136238, -74.037163)
## 681           -73.79494 (41.059147, -73.794945)
## 682           -73.94105  (40.59513, -73.941054)
## 683           -75.96749 (42.115669, -75.967491)
## 684           -75.24644 (43.094032, -75.246437)
## 685           -73.94391 (40.813964, -73.943913)
## 686           -73.65496 (40.594237, -73.654958)
## 687                  NA                        
## 688           -73.95439 (40.702898, -73.954386)
## 689           -76.13618 (43.571228, -76.136185)
## 690           -73.59618 (44.214958, -73.596176)
## 691           -78.87825  (42.981045, -78.87825)
## 692           -73.91985 (40.688325, -73.919851)
## 693           -77.44820 (43.110699, -77.448196)
## 694           -74.91573 (42.273621, -74.915733)
## 695           -73.29990 (40.828209, -73.299896)
## 696           -77.44170 (43.109913, -77.441704)
## 697           -77.63025 (43.099594, -77.630249)
## 698           -73.66307 (43.332344, -73.663071)
## 699           -74.98570 (44.669884, -74.985695)
## 700           -73.91208  (40.77533, -73.912079)
## 701           -74.94871 (42.257166, -74.948713)
## 702           -73.70510   (40.7859, -73.705101)
## 703           -73.70036 (42.775986, -73.700363)
## 704           -73.90266 (42.891899, -73.902657)
## 705           -77.66104 (42.332108, -77.661041)
## 706           -73.89819  (40.65073, -73.898193)
## 707           -74.06490 (41.111069, -74.064903)
## 708           -79.23287 (42.091236, -79.232872)
## 709           -73.68883 (43.295386, -73.688827)
## 710           -75.44347 (43.229935, -75.443466)
## 711           -73.89886 (40.820351, -73.898857)
## 712           -73.92996 (42.899899, -73.929955)
## 713           -75.46005 (43.211866, -75.460051)
## 714           -73.80003 (41.074072, -73.800032)
## 715           -73.45306 (44.698658, -73.453064)
## 716           -73.84335 (41.173298, -73.843346)
## 717           -74.35829 (41.449535, -74.358292)
## 718           -76.13647 (43.046757, -76.136467)
## 719           -73.90505   (40.8549, -73.905052)
## 720           -77.70384 (43.210262, -77.703842)
## 721                  NA                        
## 722           -77.57838 (43.151005, -77.578384)
## 723           -73.99702 (40.736973, -73.997025)
## 724           -73.65350 (40.594276, -73.653496)
## 725           -73.87539 (40.664629, -73.875386)
## 726           -77.31928 (42.972755, -77.319275)
## 727           -73.91696 (40.821999, -73.916962)
## 728           -73.85823 (40.899326, -73.858231)
## 729           -75.91564 (42.105343, -75.915642)
## 730           -73.85862  (40.729031, -73.85862)
## 731           -73.42271   (40.8581, -73.422713)
## 732           -77.84175 (42.965843, -77.841751)
## 733           -79.01650 (43.127529, -79.016502)
## 734           -75.31676 (42.326069, -75.316757)
## 735           -73.93465 (41.164089, -73.934654)
## 736           -77.44170 (43.121498, -77.441704)
## 737           -73.89522 (40.671932, -73.895218)
## 738           -73.97977  (40.73735, -73.979767)
## 739           -76.17277 (43.039253, -76.172768)
## 740           -74.00184 (40.646263, -74.001839)
## 741           -72.99565 (40.768742, -72.995651)
## 742           -79.31050   (42.1194, -79.310501)
## 743           -73.93444 (42.860389, -73.934439)
## 744           -72.53725 (40.874008, -72.537254)
## 745           -76.12756 (43.002991, -76.127563)
## 746           -73.41077 (40.867847, -73.410774)
## 747           -74.33064 (43.068096, -74.330643)
## 748           -73.91409 (40.609184, -73.914093)
## 749           -73.70102 (42.729271, -73.701023)
## 750           -75.41751 (43.162643, -75.417513)
## 751           -73.96980  (41.50412, -73.969795)
## 752           -73.97416 (40.742874, -73.974159)
## 753           -76.15907 (43.043354, -76.159073)
## 754           -73.75889 (42.746944, -73.758889)
## 755                  NA                        
## 756                  NA                        
## 757           -73.90820 (40.676464, -73.908203)
## 758           -78.81388 (42.849285, -78.813881)
## 759           -73.80462 (40.755203, -73.804619)
## 760                  NA                        
## 761           -73.60804 (40.733413, -73.608038)
## 762                  NA                        
## 763           -73.88409 (40.858307, -73.884094)
## 764           -74.07725 (40.641933, -74.077248)
## 765           -73.84815 (42.646961, -73.848145)
## 766           -74.98719  (43.028847, -74.98719)
## 767           -78.94327 (43.159481, -78.943268)
## 768           -73.78297 (40.757332, -73.782974)
## 769           -73.83578 (40.986526, -73.835777)
## 770           -73.77896 (40.897931, -73.778959)
## 771           -78.60788  (42.764977, -78.60788)
## 772           -73.94974 (40.740353, -73.949745)
## 773           -73.91365  (42.82206, -73.913651)
## 774           -78.89992 (42.912072, -78.899919)
## 775           -74.33493  (41.403687, -74.33493)
## 776           -75.59576 (42.444214, -75.595757)
## 777           -74.08671 (40.586643, -74.086708)
## 778           -76.46343 (42.480274, -76.463425)
## 779           -73.96252 (40.704281, -73.962517)
## 780           -73.82605  (40.869362, -73.82605)
## 781           -73.59287 (40.725254, -73.592873)
## 782           -73.88154 (40.880512, -73.881538)
## 783           -75.46606 (43.232052, -75.466057)
## 784           -73.94634 (40.756073, -73.946342)
## 785           -73.92275 (40.816223, -73.922745)
## 786           -74.68249 (41.367916, -74.682487)
## 787           -73.91138  (40.66497, -73.911385)
## 788           -76.02114  (42.05432, -76.021143)
## 789           -77.62277 (43.124374, -77.622765)
## 790           -74.00696 (40.652085, -74.006959)
## 791           -73.75438 (40.599712, -73.754379)
## 792           -73.97662 (40.694435, -73.976624)
## 793           -75.91283 (43.976256, -75.912829)
## 794           -73.88056 (40.879951, -73.880562)
## 795           -73.68910 (40.793934, -73.689102)
## 796           -77.60332 (43.168159, -77.603317)
## 797           -73.55213 (42.111248, -73.552129)
## 798           -73.87001  (40.865292, -73.87001)
## 799           -73.91464 (42.803593, -73.914639)
## 800                  NA                        
## 801           -74.57043 (42.920784, -74.570427)
## 802           -74.97370 (44.675617, -74.973701)
## 803           -73.88711 (40.858738, -73.887108)
## 804           -73.03468  (40.91597, -73.034683)
## 805           -76.21696 (42.574554, -76.216957)
## 806           -73.83470 (40.579185, -73.834702)
## 807           -73.95194 (40.821228, -73.951935)
## 808           -77.43712 (43.149612, -77.437121)
## 809           -73.95541 (40.650112, -73.955406)
## 810           -76.13782 (43.050674, -76.137817)
## 811           -77.70370     (43.18, -77.703697)
## 812           -73.59189 (41.574398, -73.591888)
## 813           -77.69587 (43.215839, -77.695869)
## 814           -73.76304 (41.033409, -73.763039)
## 815           -73.91525 (40.815529, -73.915253)
## 816           -73.79391 (40.760899, -73.793915)
## 817                  NA                        
## 818           -75.05456 (42.446655, -75.054558)
## 819           -78.82095 (42.827366, -78.820946)
## 820           -74.70613 (41.797321, -74.706131)
## 821           -73.67181 (42.732361, -73.671814)
## 822           -73.69641 (40.793499, -73.696411)
## 823           -73.95422 (40.652994, -73.954223)
## 824           -73.75195 (40.605255, -73.751953)
## 825           -76.13277 (43.009064, -76.132774)
## 826           -73.99777 (40.688433, -73.997774)
## 827           -73.78155 (40.895214, -73.781548)
## 828           -73.98824 (40.764542, -73.988243)
## 829           -73.91885 (41.291225, -73.918853)
## 830           -74.02287 (40.645264, -74.022873)
## 831           -72.42863 (40.873882, -72.428635)
## 832           -73.76243 (42.732956, -73.762428)
## 833                  NA                        
## 834           -73.93021 (40.796406, -73.930206)
## 835           -73.89930   (40.847176, -73.8993)
## 836           -73.58649 (43.280739, -73.586494)
## 837           -73.85104 (40.728745, -73.851036)
## 838           -73.78976 (42.253094, -73.789764)
## 839           -73.85228  (42.987606, -73.85228)
## 840           -79.33489  (42.48444, -79.334892)
## 841           -73.93417 (40.663326, -73.934166)
## 842           -76.13782 (43.057522, -76.137817)
## 843           -74.56902 (42.904175, -74.569016)
## 844           -73.94938 (42.811604, -73.949379)
## 845           -77.10079 (43.059616, -77.100792)
## 846           -76.14650   (43.062378, -76.1465)
## 847           -73.93034 (41.670827, -73.930338)
## 848           -74.91555  (42.269238, -74.91555)
## 849           -73.96645 (40.630699, -73.966454)
## 850           -73.89329 (40.845509, -73.893288)
## 851           -78.88958 (42.727759, -78.889579)
## 852           -73.82444  (40.781647, -73.82444)
## 853           -73.77346 (42.653284, -73.773462)
## 854           -72.36352 (41.119667, -72.363518)
## 855           -77.49766 (43.201027, -77.497665)
## 856           -73.06008 (40.947533, -73.060081)
## 857           -73.81714 (43.086102, -73.817136)
## 858           -73.70068 (40.971893, -73.700676)
## 859           -75.21048  (43.117302, -75.21048)
## 860           -73.95869 (40.678497, -73.958687)
## 861           -73.98350 (40.713905, -73.983505)
## 862           -73.91098  (40.840389, -73.91098)
## 863           -78.59422  (42.96611, -78.594223)
## 864           -78.77651 (42.781647, -78.776512)
## 865                  NA                        
## 866           -73.88438 (40.842155, -73.884384)
## 867           -73.94676 (40.809789, -73.946765)
## 868           -74.95364 (42.668671, -74.953636)
## 869           -73.94410 (40.655823, -73.944099)
## 870           -75.75236 (43.078098, -75.752365)
## 871           -76.12680 (43.136869, -76.126795)
## 872           -73.95014 (40.812108, -73.950141)
## 873           -76.13307 (43.055153, -76.133072)
## 874           -73.91727 (42.805328, -73.917274)
## 875           -78.13158 (42.755611, -78.131584)
## 876           -73.61304 (40.710575, -73.613045)
## 877           -73.63742 (40.705002, -73.637421)
## 878           -73.81313 (40.920574, -73.813126)
## 879           -73.68904 (42.895054, -73.689035)
## 880           -74.36064 (41.447765, -74.360641)
## 881           -78.13185 (42.755863, -78.131851)
## 882           -73.39701 (43.550278, -73.397011)
## 883           -79.56941 (42.327965, -79.569412)
## 884           -73.84566 (40.844967, -73.845665)
## 885           -73.84640 (40.852742, -73.846402)
## 886           -74.13183 (40.606915, -74.131828)
## 887           -73.93752  (40.67794, -73.937515)
## 888           -73.98402 (40.590649, -73.984024)
## 889           -73.79744 (43.084209, -73.797444)
## 890           -73.94571 (40.674923, -73.945709)
## 891           -73.99516 (40.713696, -73.995163)
## 892           -77.68243  (43.20758, -77.682432)
## 893           -73.90850 (40.848476, -73.908501)
## 894           -78.84312 (42.827011, -78.843117)
## 895           -73.47871 (40.725853, -73.478714)
## 896           -75.44133  (43.231136, -75.44133)
## 897           -78.76516 (42.945688, -78.765159)
## 898           -73.99034 (40.572156, -73.990344)
## 899           -74.08700 (40.584141, -74.086998)
## 900           -76.29301 (43.039978, -76.293015)
## 901           -78.86529 (42.900808, -78.865285)
## 902           -77.27828 (42.886517, -77.278282)
## 903           -73.84850 (41.011028, -73.848503)
## 904           -78.69133  (42.172379, -78.69133)
## 905           -74.37132 (43.006397, -74.371323)
## 906           -78.78227 (43.015785, -78.782272)
## 907           -73.97321 (40.743725, -73.973213)
## 908           -73.95888 (40.699837, -73.958878)
## 909           -73.70917 (40.785221, -73.709167)
## 910           -78.88364 (42.890366, -78.883644)
## 911           -73.99955  (41.922565, -73.99955)
## 912           -73.93555 (40.806042, -73.935555)
## 913           -73.99914 (40.749596, -73.999138)
## 914           -73.98721    (40.716, -73.987213)
## 915           -73.79835 (40.705261, -73.798347)
## 916           -73.75899 (43.837345, -73.758987)
## 917           -73.86030 (40.753578, -73.860298)
## 918           -73.89948 (40.666916, -73.899483)
## 919           -74.92268 (42.695793, -74.922684)
## 920           -73.68155 (42.412449, -73.681549)
## 921           -73.94358 (40.617576, -73.943583)
## 922           -73.82961 (40.903736, -73.829605)
## 923           -76.18619 (42.609051, -76.186195)
## 924           -73.92381 (40.811272, -73.923813)
## 925           -78.82978 (42.980705, -78.829781)
## 926           -73.87449  (40.87849, -73.874489)
## 927           -74.00473   (40.65274, -74.00473)
## 928           -77.99449 (42.971077, -77.994492)
## 929           -78.83663  (42.893136, -78.83663)
## 930                  NA                        
## 931           -73.99548 (40.714252, -73.995476)
## 932           -73.89703 (40.925381, -73.897026)
## 933           -75.39471 (42.304741, -75.394714)
## 934           -73.89860 (40.933105, -73.898598)
## 935           -73.78880 (42.864647, -73.788803)
## 936           -73.99577 (40.721695, -73.995766)
## 937           -76.05922 (43.091747, -76.059219)
## 938           -73.69169 (40.707943, -73.691689)
## 939           -73.38932  (40.855377, -73.38932)
## 940           -73.51547 (40.809208, -73.515465)
## 941           -75.94144 (42.109341, -75.941437)
## 942           -73.89193 (42.917172, -73.891928)
## 943           -76.51263 (42.441422, -76.512627)
## 944           -77.46973    (43.209, -77.469734)
## 945           -73.97298 (40.785164, -73.972977)
## 946           -77.32772 (43.064522, -77.327721)
## 947           -74.02307 (41.568837, -74.023067)
## 948           -75.46655 (44.700283, -75.466553)
## 949           -73.98805  (40.774257, -73.98805)
## 950                  NA                        
## 951           -73.49380 (44.706108, -73.493805)
## 952           -78.66655   (43.15477, -78.66655)
## 953           -73.77829  (42.645485, -73.77829)
## 954           -73.88542 (40.835808, -73.885422)
## 955                  NA                        
## 956           -73.99167  (40.628939, -73.99167)
## 957           -73.22020   (40.867664, -73.2202)
## 958           -73.74717 (42.636105, -73.747169)
## 959           -73.90852 (40.880962, -73.908524)
## 960           -73.94726 (40.825588, -73.947258)
## 961           -74.12603 (41.112744, -74.126034)
## 962           -73.82570 (40.765556, -73.825699)
## 963           -73.98492  (40.63186, -73.984917)
## 964           -73.98799 (40.735302, -73.987991)
## 965           -75.39069 (43.631031, -75.390694)
## 966           -76.13779 (43.041012, -76.137787)
## 967           -73.69638 (41.125275, -73.696381)
## 968           -73.21339 (40.859619, -73.213394)
## 969           -76.49194 (42.432209, -76.491943)
## 970           -78.86246 (43.026154, -78.862457)
## 971           -75.51282 (42.534866, -75.512817)
## 972           -78.27766 (42.869814, -78.277665)
## 973           -78.43002 (42.085827, -78.430016)
## 974           -77.58260 (43.102992, -77.582603)
## 975           -73.95513 (40.670677, -73.955132)
## 976           -73.98414 (40.671848, -73.984138)
## 977           -75.16979  (44.59565, -75.169792)
## 978           -77.61616 (43.112251, -77.616165)
## 979           -73.93320  (41.71516, -73.933197)
## 980           -73.96453 (40.707573, -73.964531)
## 981           -73.75108 (41.177467, -73.751076)
## 982           -73.64493 (40.791851, -73.644928)
## 983           -73.98306  (40.577153, -73.98306)
## 984           -76.03642 (42.448532, -76.036423)
## 985           -73.40085 (40.879955, -73.400848)
## 986           -74.68651 (41.379583, -74.686514)
## 987           -74.89187 (44.928432, -74.891869)
## 988           -73.94771  (40.63644, -73.947713)
## 989           -75.77213 (42.332481, -75.772125)
## 990           -78.94926 (43.121315, -78.949265)
## 991           -73.91437 (40.849964, -73.914368)
## 992           -74.16740 (40.627441, -74.167397)
## 993           -73.98122 (40.724247, -73.981216)
## 994                  NA                        
## 995           -73.74262 (40.971264, -73.742615)
## 996           -76.14878  (43.07386, -76.148781)
## 997           -73.74007 (40.942944, -73.740074)
## 998           -74.19497 (42.940636, -74.194969)
## 999           -73.98000 (40.745899, -73.979996)
## 1000          -73.99599  (40.57354, -73.995994)
## 1001          -73.50861 (40.810238, -73.508614)
## 1002          -73.97862 (40.616638, -73.978615)
## 1003          -75.90595 (42.100109, -75.905945)
## 1004          -78.89577 (42.658882, -78.895767)
## 1005          -77.59789 (43.110882, -77.597885)
## 1006          -73.95436 (42.836292, -73.954361)
## 1007          -73.75441  (42.641979, -73.75441)
## 1008          -75.65218 (43.076153, -75.652176)
## 1009          -74.18627 (42.961201, -74.186272)
## 1010          -73.87620  (40.97345, -73.876197)
## 1011          -79.50544  (42.254534, -79.50544)
## 1012          -78.39714 (43.223637, -78.397141)
## 1013          -73.86656 (40.878051, -73.866557)
## 1014          -73.86832 (41.015968, -73.868323)
## 1015          -77.66876 (43.089387, -77.668761)
## 1016          -78.86571 (42.900394, -78.865707)
## 1017          -74.71149 (41.784344, -74.711487)
## 1018          -73.74264 (40.730801, -73.742638)
## 1019          -73.78925  (43.08839, -73.789253)
## 1020          -79.33434 (42.484305, -79.334339)
## 1021          -73.81355 (42.685863, -73.813545)
## 1022          -73.24350   (40.810783, -73.2435)
## 1023          -74.01414 (40.634457, -74.014145)
## 1024          -73.31141 (40.697083, -73.311409)
## 1025          -73.87736 (40.881191, -73.877365)
## 1026          -73.83157 (40.884458, -73.831571)
## 1027          -73.65028 (40.663876, -73.650276)
## 1028          -76.53296 (42.462624, -76.532959)
## 1029                 NA                        
## 1030          -77.01098 (42.867603, -77.010979)
## 1031          -73.95312 (40.693066, -73.953125)
## 1032          -74.70204 (41.648808, -74.702042)
## 1033          -73.63344 (40.654132, -73.633437)
## 1034          -73.89664 (40.907948, -73.896637)
## 1035          -73.70147 (43.359562, -73.701469)
## 1036          -73.96375 (40.799557, -73.963753)
## 1037                 NA                        
## 1038          -73.80316 (42.868004, -73.803162)
## 1039          -73.85671 (40.817799, -73.856705)
## 1040          -74.66921 (44.971455, -74.669205)
## 1041          -73.78716  (40.89048, -73.787163)
## 1042          -73.77466   (42.6525, -73.774663)
## 1043          -73.77739  (42.255623, -73.77739)
## 1044          -73.81313 (40.920574, -73.813126)
## 1045          -75.86961 (43.049301, -75.869614)
## 1046          -73.93685 (40.808659, -73.936847)
## 1047          -73.94573 (40.678101, -73.945732)
## 1048          -73.96639 (40.633968, -73.966389)
## 1049          -73.70510   (40.7859, -73.705101)
## 1050          -73.94096  (40.84153, -73.940964)
## 1051          -74.71004 (41.796227, -74.710045)
## 1052          -74.07476  (40.621376, -74.07476)
## 1053          -78.89438 (42.917721, -78.894379)
## 1054          -75.71889 (44.142883, -75.718887)
## 1055          -73.80070 (40.704361, -73.800705)
## 1056          -73.95235 (40.767101, -73.952354)
## 1057          -78.39714 (43.223637, -78.397141)
## 1058          -74.16622 (41.336658, -74.166222)
## 1059          -73.88723 (41.531853, -73.887226)
## 1060          -73.58708 (40.745575, -73.587082)
## 1061          -73.96417 (40.709152, -73.964172)
## 1062          -76.11509 (43.403404, -76.115089)
## 1063          -73.97875 (40.745934, -73.978752)
## 1064          -76.08621 (43.010296, -76.086212)
## 1065          -77.61616 (43.112251, -77.616165)
## 1066          -74.32154 (41.402603, -74.321541)
## 1067          -74.02378  (40.61515, -74.023781)
## 1068          -73.99545  (41.92643, -73.995453)
## 1069          -77.58286 (43.079738, -77.582861)
## 1070          -73.69927 (42.641621, -73.699272)
## 1071          -73.32132  (40.712856, -73.32132)
## 1072          -73.94411 (40.815411, -73.944115)
## 1073          -76.02856  (42.12817, -76.028564)
## 1074          -74.33352 (42.597443, -74.333519)
## 1075          -73.93580 (41.694523, -73.935799)
## 1076          -76.13770  (43.04525, -76.137703)
## 1077          -76.07251 (43.086962, -76.072515)
## 1078          -75.05997  (42.45564, -75.059975)
## 1079          -78.73891 (42.978493, -78.738914)
## 1080          -73.77631 (42.246239, -73.776306)
## 1081          -78.82411 (42.825882, -78.824112)
## 1082          -73.81519 (40.702442, -73.815186)
## 1083          -73.82144 (42.770695, -73.821442)
## 1084          -78.75489  (42.956402, -78.75489)
## 1085          -73.93368 (41.705238, -73.933678)
## 1086          -74.47961  (42.68187, -74.479614)
## 1087          -73.76627  (41.02845, -73.766273)
## 1088          -73.97285 (40.641071, -73.972849)
## 1089          -73.94620 (40.801136, -73.946198)
## 1090          -75.91400 (43.956741, -75.914001)
## 1091          -76.56503 (42.942368, -76.565025)
## 1092          -77.69000 (43.130204, -77.690004)
## 1093          -73.86668 (40.734802, -73.866678)
## 1094          -74.99844 (43.025597, -74.998444)
## 1095          -73.81548 (40.755531, -73.815475)
## 1096          -73.85822 (40.821575, -73.858223)
## 1097          -73.94731 (40.792744, -73.947311)
## 1098          -73.98805  (40.774257, -73.98805)
## 1099          -73.79046 (40.593563, -73.790459)
## 1100          -75.12513  (42.175606, -75.12513)
## 1101          -73.96416 (40.635189, -73.964157)
## 1102          -73.96382 (40.764416, -73.963821)
## 1103          -73.97063 (40.758144, -73.970634)
## 1104          -75.34291 (43.072346, -75.342911)
## 1105          -73.95535 (40.764794, -73.955346)
## 1106          -77.65963   (42.31118, -77.65963)
## 1107          -74.92268 (42.695793, -74.922684)
## 1108          -73.82319 (40.764179, -73.823189)
## 1109          -77.70360 (43.179549, -77.703596)
## 1110          -73.81747 (40.585808, -73.817467)
## 1111          -73.60407 (42.350479, -73.604073)
## 1112          -76.17216 (43.053761, -76.172157)
## 1113          -73.91731   (41.23604, -73.91731)
## 1114          -74.13032 (44.325516, -74.130325)
## 1115          -73.80478  (40.70182, -73.804779)
## 1116          -73.22470   (40.8241, -73.224701)
## 1117          -73.88139 (40.669888, -73.881386)
## 1118          -73.98565 (40.576097, -73.985646)
## 1119          -73.92434  (41.34617, -73.924338)
## 1120          -73.96315  (40.617302, -73.96315)
## 1121          -73.94108 (40.821541, -73.941078)
## 1122                 NA                        
## 1123          -73.72508 (42.772724, -73.725082)
## 1124          -73.83807 (40.724815, -73.838074)
## 1125          -73.64356 (43.313484, -73.643555)
## 1126          -73.95306 (40.608494, -73.953056)
## 1127          -77.59747 (43.112175, -77.597466)
## 1128                 NA                        
## 1129          -73.82730   (40.742966, -73.8273)
## 1130          -73.75195 (40.605255, -73.751953)
## 1131          -73.93310 (40.799306, -73.933101)
## 1132          -78.86654  (42.90926, -78.866539)
## 1133          -73.84943 (40.905293, -73.849434)
## 1134          -73.98560 (40.723099, -73.985603)
## 1135          -73.80115 (41.088585, -73.801147)
## 1136          -73.98634 (40.673431, -73.986343)
## 1137          -77.60867 (43.170728, -77.608669)
## 1138                 NA                        
## 1139          -77.62452 (43.166023, -77.624519)
## 1140          -73.93194 (40.795041, -73.931943)
## 1141          -76.00840     (44.0882, -76.0084)
## 1142          -73.68581 (40.681789, -73.685814)
## 1143          -78.67100 (43.176472, -78.670998)
## 1144          -73.68288 (40.584705, -73.682884)
## 1145          -74.08671 (40.586643, -74.086708)
## 1146          -74.19681 (40.516773, -74.196808)
## 1147          -76.16653 (43.005547, -76.166534)
## 1148          -74.18879 (42.972889, -74.188789)
## 1149          -73.89872  (40.932888, -73.89872)
## 1150          -75.93565 (42.092606, -75.935646)
## 1151          -76.16386 (43.041813, -76.163864)
## 1152          -73.77513 (41.074819, -73.775133)
## 1153          -75.98585 (42.100857, -75.985847)
## 1154          -72.97228 (40.781944, -72.972282)
## 1155          -73.87955 (40.984222, -73.879555)
## 1156          -73.86378 (41.083874, -73.863777)
## 1157          -74.29189  (44.85677, -74.291893)
## 1158          -78.46013 (42.077095, -78.460129)
## 1159          -77.66377 (43.266117, -77.663773)
## 1160          -76.05903  (43.101935, -76.05903)
## 1161          -73.78110 (40.595257, -73.781097)
## 1162          -73.89134 (41.296635, -73.891342)
## 1163          -73.91729  (40.821201, -73.91729)
## 1164          -74.94624 (42.652016, -74.946236)
## 1165          -72.66821 (40.912373, -72.668213)
## 1166          -73.49992 (44.702683, -73.499917)
## 1167          -73.47008 (40.825569, -73.470085)
## 1168          -75.31650   (42.6329, -75.316498)
## 1169          -73.64067 (40.632632, -73.640671)
## 1170          -75.64490 (43.988304, -75.644897)
## 1171          -73.85649 (40.814825, -73.856491)
## 1172          -73.83731 (40.912277, -73.837311)
## 1173          -77.29283 (42.875976, -77.292831)
## 1174          -77.09862 (43.060822, -77.098625)
## 1175          -73.93001 (41.665115, -73.930008)
## 1176          -77.88008 (42.728291, -77.880081)
## 1177          -73.68224 (42.688541, -73.682236)
## 1178          -73.93404 (40.659435, -73.934036)
## 1179          -73.99748 (40.689615, -73.997478)
## 1180                 NA                        
## 1181          -73.88154 (40.880512, -73.881538)
## 1182          -73.17370 (40.734974, -73.173698)
## 1183          -77.56579  (43.20224, -77.565788)
## 1184          -74.02045 (41.500694, -74.020454)
## 1185          -75.51701 (44.681126, -75.517014)
## 1186          -78.38869 (43.319138, -78.388695)
## 1187          -77.28982 (42.875027, -77.289818)
## 1188          -73.88937  (40.81921, -73.889374)
## 1189          -73.44822 (40.728416, -73.448219)
## 1190          -73.60804 (40.733413, -73.608038)
## 1191          -73.96168 (42.702211, -73.961676)
## 1192          -73.93374 (42.826179, -73.933738)
## 1193          -73.99955  (41.922565, -73.99955)
## 1194          -73.91592 (40.805325, -73.915924)
## 1195          -75.63845  (42.89389, -75.638451)
## 1196          -78.68479 (42.892838, -78.684792)
## 1197          -74.00243 (40.718651, -74.002434)
## 1198          -74.36867 (43.020668, -74.368668)
## 1199          -73.89918  (40.676003, -73.89918)
## 1200          -75.12767 (44.744319, -75.127668)
## 1201          -73.77906  (40.594929, -73.77906)
## 1202          -73.50009 (44.702656, -73.500092)
## 1203          -73.83850  (42.65839, -73.838501)
## 1204          -75.22883  (43.05497, -75.228828)
## 1205          -73.96113 (40.610073, -73.961128)
## 1206          -73.80573 (40.697163, -73.805733)
## 1207          -73.71239 (40.794048, -73.712387)
## 1208          -73.90014 (40.667889, -73.900139)
## 1209          -74.09060 (40.596214, -74.090599)
## 1210          -73.75279 (41.181407, -73.752789)
## 1211          -75.91690 (42.100979, -75.916901)
## 1212          -73.93811 (40.790065, -73.938109)
## 1213          -79.00556 (43.128074, -79.005564)
## 1214          -73.90967 (40.846509, -73.909665)
## 1215          -73.92798  (40.674521, -73.92798)
## 1216          -73.88558 (40.840729, -73.885582)
## 1217          -73.99443 (41.926144, -73.994431)
## 1218                 NA                        
## 1219          -76.13321 (43.060727, -76.133209)
## 1220          -73.76441 (40.712078, -73.764412)
## 1221          -73.91273 (40.654362, -73.912735)
## 1222          -76.44704 (42.944115, -76.447044)
## 1223          -73.95708 (40.770443, -73.957077)
## 1224          -73.70000 (40.758892, -73.699997)
## 1225          -73.91251 (40.876953, -73.912514)
## 1226          -76.16007 (42.595219, -76.160072)
## 1227          -73.94823 (40.795238, -73.948235)
## 1228                 NA                        
## 1229          -73.89811 (40.676289, -73.898109)
## 1230          -73.90981 (40.665806, -73.909813)
## 1231          -77.50922 (43.120018, -77.509216)
## 1232          -77.65859 (42.312862, -77.658585)
## 1233          -73.72138 (43.178303, -73.721382)
## 1234                 NA                        
## 1235          -73.08688  (40.90247, -73.086884)
## 1236          -77.57886 (43.170639, -77.578865)
## 1237          -73.89323 (40.754845, -73.893234)
## 1238          -73.20083  (40.74292, -73.200829)
## 1239          -77.43505 (43.212967, -77.435051)
## 1240          -73.78437   (40.59404, -73.78437)
## 1241          -77.94933 (42.124142, -77.949333)
## 1242          -73.77646 (41.019382, -73.776459)
## 1243          -72.98362  (40.873131, -72.98362)
## 1244          -77.69926 (43.210129, -77.699257)
## 1245          -73.57777  (43.31308, -73.577766)
## 1246                 NA                        
## 1247          -74.10435 (42.914402, -74.104347)
## 1248          -77.63444 (43.158569, -77.634438)
## 1249          -73.91785 (40.810066, -73.917847)
## 1250          -72.67804  (40.825905, -72.67804)
## 1251          -73.86977 (40.709092, -73.869771)
## 1252          -75.65445  (43.07869, -75.654449)
## 1253          -78.69681 (43.139423, -78.696808)
## 1254          -74.68549 (41.369942, -74.685493)
## 1255          -76.79686  (42.091446, -76.79686)
## 1256          -75.39492   (42.30471, -75.39492)
## 1257          -79.33244 (42.459639, -79.332441)
## 1258          -73.72267 (41.196594, -73.722672)
## 1259          -73.84466 (40.847294, -73.844658)
## 1260          -78.82898 (42.908279, -78.828979)
## 1261          -74.07762  (40.62706, -74.077621)
## 1262          -73.91899  (40.825482, -73.91899)
## 1263          -73.71667 (40.781834, -73.716667)
## 1264          -73.95483 (42.076492, -73.954826)
## 1265          -75.91400  (42.08654, -75.914001)
## 1266                 NA                        
## 1267          -73.44935 (44.685066, -73.449348)
## 1268          -76.98743 (42.875748, -76.987427)
## 1269          -73.96894 (40.795902, -73.968941)
## 1270          -76.20167 (42.602123, -76.201675)
## 1271          -73.89790 (40.860546, -73.897896)
## 1272                 NA                        
## 1273          -74.98153 (44.676151, -74.981529)
## 1274          -73.03075 (40.912853, -73.030746)
## 1275          -73.74381 (41.025066, -73.743813)
## 1276          -73.88446  (40.829708, -73.88446)
## 1277          -73.89151  (40.853554, -73.89151)
## 1278          -77.99595 (42.718011, -77.995949)
## 1279          -73.68422 (41.244732, -73.684219)
## 1280          -75.65152 (43.094943, -75.651522)
## 1281          -73.86270 (41.161568, -73.862704)
## 1282          -73.41528 (40.830616, -73.415281)
## 1283          -74.64309 (42.147694, -74.643089)
## 1284          -73.94214 (40.831286, -73.942145)
## 1285          -75.25468 (43.086617, -75.254684)
## 1286          -78.88838 (42.949883, -78.888382)
## 1287          -77.61614 (43.111568, -77.616142)
## 1288          -75.27145 (43.053902, -75.271446)
## 1289          -73.90645 (40.735371, -73.906448)
## 1290          -77.59901 (43.149521, -77.599014)
## 1291          -73.39326 (40.858297, -73.393264)
## 1292          -73.83611 (40.876904, -73.836105)
## 1293                 NA                        
## 1294          -73.82668 (40.910697, -73.826682)
## 1295          -73.90349 (40.741615, -73.903488)
## 1296          -73.92490 (40.866032, -73.924896)
## 1297                 NA                        
## 1298          -76.13778 (43.041451, -76.137779)
## 1299          -73.98600    (41.213886, -73.986)
## 1300          -73.79861 (43.088245, -73.798615)
## 1301          -73.88503 (40.968262, -73.885033)
## 1302          -73.92230 (40.807907, -73.922295)
## 1303          -73.93313 (40.584465, -73.933128)
## 1304          -76.24953 (42.106297, -76.249535)
## 1305          -73.82049 (40.763371, -73.820488)
## 1306          -74.01371 (40.634837, -74.013714)
## 1307          -74.21885 (42.292103, -74.218849)
## 1308          -78.79887  (43.00012, -78.798865)
## 1309          -76.11089 (43.950241, -76.110893)
## 1310          -73.70008 (40.758907, -73.700081)
## 1311          -76.85863 (42.351536, -76.858627)
## 1312          -73.95279 (40.679501, -73.952789)
## 1313          -75.12513  (42.175606, -75.12513)
## 1314          -73.70036 (42.775986, -73.700363)
## 1315          -77.95065 (43.220085, -77.950653)
## 1316          -73.39362 (40.827171, -73.393616)
## 1317          -73.80693 (40.969849, -73.806931)
## 1318          -73.69518 (41.008566, -73.695178)
## 1319          -77.59747 (43.112175, -77.597466)
## 1320          -73.61030 (40.654888, -73.610298)
## 1321          -74.08438 (40.582493, -74.084381)
## 1322          -74.02691   (40.6208, -74.026909)
## 1323          -73.94070 (40.841415, -73.940704)
## 1324          -77.60631 (43.157234, -77.606308)
## 1325          -75.17754 (44.589157, -75.177544)
## 1326          -73.85247  (40.834164, -73.85247)
## 1327                 NA                        
## 1328          -73.91258 (40.655066, -73.912579)
## 1329          -73.72924  (41.020613, -73.72924)
## 1330          -78.83499 (42.937531, -78.834991)
## 1331          -74.00160 (40.679703, -74.001602)
## 1332          -73.90790  (41.73823, -73.907896)
## 1333          -75.58842 (42.970061, -75.588417)
## 1334          -73.85738 (40.869689, -73.857381)
## 1335          -74.63232 (41.737995, -74.632324)
## 1336          -73.80277 (40.707926, -73.802773)
## 1337          -77.10224 (43.059728, -77.102244)
## 1338          -75.91548 (43.976223, -75.915482)
## 1339          -77.28342 (43.069183, -77.283424)
## 1340          -73.80575  (40.697155, -73.80575)
## 1341          -73.91020 (40.854454, -73.910202)
## 1342          -73.95258 (40.766422, -73.952576)
## 1343          -73.87838    (40.9949, -73.87838)
## 1344          -73.66297 (42.731152, -73.662971)
## 1345          -74.36824 (42.955029, -74.368238)
## 1346          -74.33014 (41.272377, -74.330139)
## 1347          -73.42065 (43.949874, -73.420649)
## 1348          -76.26425 (42.141457, -76.264252)
## 1349          -76.49083 (43.450394, -76.490829)
## 1350          -73.97977 (40.790638, -73.979767)
## 1351          -74.48051  (42.68082, -74.480515)
## 1352                 NA                        
## 1353          -76.13647 (43.046757, -76.136467)
## 1354          -73.88582 (40.875186, -73.885819)
## 1355          -75.43636 (43.235905, -75.436356)
## 1356          -73.94292 (40.843445, -73.942924)
## 1357          -73.72426 (40.765881, -73.724258)
## 1358          -75.27538 (43.098179, -75.275383)
## 1359          -73.89855 (40.931042, -73.898552)
## 1360          -74.07694 (40.620261, -74.076938)
## 1361          -76.54407 (43.454305, -76.544068)
## 1362          -73.99956 (40.628975, -73.999557)
## 1363          -76.02213 (43.040108, -76.022133)
## 1364          -73.94615 (40.746553, -73.946145)
## 1365          -73.79566 (42.678467, -73.795662)
## 1366          -73.95442 (40.765354, -73.954422)
## 1367          -73.70786 (40.632293, -73.707864)
## 1368          -77.54477 (43.149281, -77.544769)
## 1369          -74.88290 (41.926929, -74.882904)
## 1370          -73.74932 (40.604053, -73.749321)
## 1371                 NA                        
## 1372                 NA                        
## 1373          -73.68758  (42.73439, -73.687584)
## 1374          -73.97866 (40.737877, -73.978661)
## 1375          -74.33064 (43.068096, -74.330643)
## 1376          -73.95834 (40.765739, -73.958339)
## 1377          -76.52760 (42.012218, -76.527603)
## 1378          -75.32483 (44.149136, -75.324829)
## 1379          -73.80596 (40.696922, -73.805962)
## 1380          -76.02122 (42.092782, -76.021221)
## 1381          -73.93713 (40.813541, -73.937134)
## 1382          -73.98160 (40.732666, -73.981598)
## 1383          -73.70332 (40.753628, -73.703323)
## 1384          -74.74880 (41.794799, -74.748804)
## 1385          -73.86690 (41.176262, -73.866898)
## 1386          -73.94323  (40.617954, -73.94323)
## 1387          -73.56116 (40.772808, -73.561164)
## 1388          -73.58019 (40.685013, -73.580193)
## 1389                 NA                        
## 1390          -73.80664 (42.970404, -73.806644)
## 1391          -73.67162 (42.734315, -73.671615)
## 1392          -73.54103 (40.766811, -73.541031)
## 1393          -75.37099 (43.618542, -75.370995)
## 1394          -73.67725 (40.658588, -73.677254)
## 1395                 NA                        
## 1396          -73.84860 (40.875984, -73.848602)
## 1397          -74.08762 (40.634281, -74.087616)
## 1398          -77.59891 (43.142391, -77.598907)
## 1399          -75.96769  (42.329063, -75.96769)
## 1400          -72.65043 (40.923716, -72.650429)
## 1401          -77.06696 (43.255342, -77.066957)
## 1402          -73.74301 (43.092483, -73.743009)
## 1403          -75.08901 (42.531017, -75.089005)
## 1404          -73.84547 (40.857277, -73.845474)
## 1405          -73.97299 (40.761307, -73.972992)
## 1406          -73.93688 (42.725334, -73.936882)
## 1407          -74.14202 (40.634843, -74.142015)
## 1408          -75.20675 (42.702532, -75.206748)
## 1409          -73.91605 (40.849052, -73.916054)
## 1410          -73.70036 (42.775986, -73.700363)
## 1411          -73.97347 (40.630653, -73.973465)
## 1412          -73.83111 (42.365345, -73.831108)
## 1413          -73.95538  (40.69698, -73.955376)
## 1414          -73.90101 (40.820988, -73.901009)
## 1415          -75.44347 (43.229935, -75.443466)
## 1416          -73.69605 (43.331177, -73.696053)
## 1417          -73.84741 (40.830265, -73.847412)
## 1418          -73.98011  (40.739075, -73.98011)
## 1419          -73.90079 (40.819115, -73.900787)
## 1420          -76.42281 (42.712448, -76.422806)
## 1421          -73.83453 (42.680035, -73.834526)
## 1422          -74.01179  (40.64032, -74.011787)
## 1423          -75.39138  (42.926826, -75.39138)
## 1424          -76.62437 (43.032402, -76.624367)
## 1425          -74.02125 (40.642466, -74.021255)
## 1426          -73.98325 (44.265972, -73.983253)
## 1427          -77.05982 (42.670712, -77.059822)
## 1428                 NA                        
## 1429          -73.59428 (41.562111, -73.594284)
## 1430          -76.13769 (43.045662, -76.137688)
## 1431          -73.98062 (41.703049, -73.980621)
## 1432          -77.60491 (43.195511, -77.604912)
## 1433          -77.59288  (43.113483, -77.59288)
## 1434          -73.88056 (40.879951, -73.880562)
## 1435          -74.41612 (41.448524, -74.416115)
## 1436          -73.77044 (40.682812, -73.770439)
## 1437          -77.43815 (43.215105, -77.438153)
## 1438          -73.87604 (40.942871, -73.876038)
## 1439          -78.19362 (43.000835, -78.193619)
## 1440          -77.68885   (43.20887, -77.68885)
## 1441          -72.70090 (40.926289, -72.700897)
## 1442          -75.91229 (43.968529, -75.912294)
## 1443          -74.08121 (40.644787, -74.081207)
## 1444          -73.81364 (42.685917, -73.813637)
## 1445          -73.93138 (40.585377, -73.931381)
## 1446          -73.92746  (40.673027, -73.92746)
## 1447          -73.67574 (42.743382, -73.675735)
## 1448          -75.28128 (41.955063, -75.281281)
## 1449          -74.03182  (41.10535, -74.031822)
## 1450          -73.74837 (42.662682, -73.748375)
## 1451          -73.94971 (40.811333, -73.949707)
## 1452          -73.92818 (40.862072, -73.928177)
## 1453          -73.88813  (40.859848, -73.88813)
## 1454          -73.75169 (40.599018, -73.751686)
## 1455          -75.49815 (43.795677, -75.498146)
## 1456          -77.00168 (43.057156, -77.001678)
## 1457          -73.90497 (42.701252, -73.904968)
## 1458          -77.44467  (43.06947, -77.444671)
## 1459          -78.69940 (43.155093, -78.699397)
## 1460          -75.67712 (43.895597, -75.677122)
## 1461          -74.48374 (41.744904, -74.483742)
## 1462          -73.85898 (41.108875, -73.858976)
## 1463                 NA                        
## 1464          -76.49386 (43.444889, -76.493858)
## 1465          -73.88627 (40.970741, -73.886269)
## 1466          -73.82683 (40.911955, -73.826826)
## 1467          -78.82095 (42.827366, -78.820946)
## 1468          -76.00840     (44.0882, -76.0084)
## 1469          -73.40120  (40.85696, -73.401199)
## 1470          -73.85884 (41.086525, -73.858842)
## 1471          -73.94592 (40.622116, -73.945923)
## 1472          -73.68811  (42.696468, -73.68811)
## 1473          -79.20882  (42.11581, -79.208824)
## 1474          -76.45946 (43.397186, -76.459465)
## 1475          -78.82217 (42.796984, -78.822168)
## 1476          -74.37054 (43.072311, -74.370544)
## 1477          -73.95329 (40.809978, -73.953293)
## 1478                 NA                        
## 1479          -73.89353 (41.291515, -73.893532)
## 1480          -73.72451  (41.196774, -73.72451)
## 1481          -73.88244  (40.972195, -73.88244)
## 1482          -78.65910 (42.508575, -78.659103)
## 1483          -74.13145 (40.579643, -74.131454)
## 1484                 NA                        
## 1485          -77.09676 (43.033562, -77.096756)
## 1486          -73.85969 (41.321186, -73.859688)
## 1487          -73.96645 (40.630699, -73.966454)
## 1488                 NA                        
## 1489          -73.98286 (40.715988, -73.982857)
## 1490          -73.84578 (40.845093, -73.845779)
## 1491          -74.01095 (41.111755, -74.010948)
## 1492          -73.70917 (40.785221, -73.709167)
## 1493          -77.95065 (43.220085, -77.950653)
## 1494          -79.00609  (43.128594, -79.00609)
## 1495          -73.11978 (40.903525, -73.119785)
## 1496          -73.23917 (40.740219, -73.239174)
## 1497          -74.03235 (41.105316, -74.032349)
## 1498          -73.26631 (40.814511, -73.266313)
## 1499          -76.13101 (43.287125, -76.131012)
## 1500          -78.00511 (42.976955, -78.005107)
## 1501          -78.69263 (43.169167, -78.692627)
## 1502          -73.88056 (40.879951, -73.880562)
## 1503          -73.80505 (41.044373, -73.805046)
## 1504          -76.12001  (42.995564, -76.12001)
## 1505          -73.91233 (41.934223, -73.912331)
## 1506          -75.27447 (43.079891, -75.274467)
## 1507          -74.91685 (42.277287, -74.916847)
## 1508          -73.34393 (40.706352, -73.343933)
## 1509          -73.63024 (40.881001, -73.630241)
## 1510          -76.56252 (42.937199, -76.562523)
## 1511          -77.63534 (43.150387, -77.635338)
## 1512          -73.85252 (40.887821, -73.852516)
## 1513          -73.93697 (40.839252, -73.936974)
## 1514                 NA                        
## 1515          -73.94938 (42.811604, -73.949379)
## 1516          -73.85759  (40.900204, -73.85759)
## 1517          -74.99337  (42.078373, -74.99337)
## 1518          -74.15731  (40.631687, -74.15731)
## 1519          -73.97610 (40.693428, -73.976097)
## 1520                 NA                        
## 1521          -73.90962 (40.843124, -73.909622)
## 1522          -73.95834 (41.509666, -73.958344)
## 1523          -73.91465  (40.706997, -73.91465)
## 1524          -77.57760 (43.104618, -77.577599)
## 1525          -73.95686 (40.627888, -73.956863)
## 1526          -73.93619 (41.695889, -73.936195)
## 1527          -73.91225 (40.819489, -73.912247)
## 1528          -72.96786 (40.891804, -72.967857)
## 1529          -73.61838 (40.708217, -73.618384)
## 1530          -78.87093 (42.909561, -78.870934)
## 1531          -73.88934 (40.822418, -73.889343)
## 1532          -73.56340     (41.8055, -73.5634)
## 1533          -77.58435 (43.190228, -77.584351)
## 1534          -73.89395 (40.822426, -73.893951)
## 1535                 NA                        
## 1536          -73.78091  (41.27494, -73.780914)
## 1537          -73.90332   (40.88047, -73.90332)
## 1538          -77.57745 (43.189476, -77.577446)
## 1539          -78.86878 (42.916603, -78.868782)
## 1540          -77.44081 (43.079835, -77.440809)
## 1541          -73.25252 (40.779846, -73.252518)
## 1542          -73.75780 (42.639912, -73.757797)
## 1543          -73.46675 (44.700279, -73.466751)
## 1544          -73.68832 (40.722745, -73.688322)
## 1545                 NA                        
## 1546          -78.92595 (42.455597, -78.925949)
## 1547          -73.95493  (40.76408, -73.954926)
## 1548          -74.68677  (42.99902, -74.686768)
## 1549          -73.99623 (40.745266, -73.996231)
## 1550          -77.61616 (43.112251, -77.616165)
## 1551          -72.67428 (40.933643, -72.674278)
## 1552          -74.21608  (42.953724, -74.21608)
## 1553          -73.42860 (44.159427, -73.428603)
## 1554          -77.88077 (42.729244, -77.880768)
## 1555          -73.95843 (40.649574, -73.958427)
## 1556          -74.02268 (41.917107, -74.022675)
## 1557          -73.92497  (40.81473, -73.924967)
## 1558          -73.86503 (40.885784, -73.865028)
## 1559          -73.88309 (40.972547, -73.883093)
## 1560          -73.99438 (40.745678, -73.994385)
## 1561          -78.78365 (42.921596, -78.783651)
## 1562          -73.80693 (40.969849, -73.806931)
## 1563          -73.96580  (40.58662, -73.965797)
## 1564          -73.87465 (40.674953, -73.874649)
## 1565          -77.94712 (42.121269, -77.947121)
## 1566          -72.38069 (40.885757, -72.380692)
## 1567          -73.94154 (40.792706, -73.941544)
## 1568          -73.34676 (40.691008, -73.346764)
## 1569          -75.91548 (43.976223, -75.915482)
## 1570          -75.38070 (43.049747, -75.380699)
## 1571          -77.49945 (43.190704, -77.499455)
## 1572          -73.97795 (40.742046, -73.977951)
## 1573          -73.90829 (40.909229, -73.908295)
## 1574          -74.00060 (40.640743, -74.000595)
## 1575          -73.68210  (41.00428, -73.682098)
## 1576          -73.84757 (40.775177, -73.847572)
## 1577          -73.29037 (40.696487, -73.290375)
## 1578          -76.50889 (42.440147, -76.508888)
## 1579          -73.83813 (40.719143, -73.838135)
## 1580          -73.89204 (40.824715, -73.892036)
## 1581          -77.60855 (43.195236, -77.608551)
## 1582          -73.66457  (43.25294, -73.664575)
## 1583          -73.41744 (40.879513, -73.417442)
## 1584          -73.89552 (40.750694, -73.895523)
## 1585          -77.76305 (43.098736, -77.763046)
## 1586          -73.03472 (40.780437, -73.034721)
## 1587          -77.01084 (42.860844, -77.010841)
## 1588          -73.93444 (42.860389, -73.934439)
## 1589          -75.96674 (42.095836, -75.966742)
## 1590          -78.97320 (43.031863, -78.973196)
## 1591          -78.74200 (42.949535, -78.741997)
## 1592          -75.47441 (44.338207, -75.474411)
## 1593          -73.99872 (40.754345, -73.998718)
## 1594          -78.28650 (42.213799, -78.286499)
## 1595          -73.77964  (43.087032, -73.77964)
## 1596          -73.90372  (40.82114, -73.903717)
## 1597          -73.08544 (40.858307, -73.085442)
## 1598          -78.81043 (42.832058, -78.810432)
## 1599          -73.61030 (40.654888, -73.610298)
## 1600          -73.74521 (40.944046, -73.745209)
## 1601          -73.91558  (40.82591, -73.915581)
## 1602          -73.74288 (43.103901, -73.742882)
## 1603          -73.63026 (40.880997, -73.630263)
## 1604          -73.92249 (40.836543, -73.922493)
## 1605          -73.80392 (42.683147, -73.803917)
## 1606          -73.99316 (40.623581, -73.993164)
## 1607          -73.22931 (40.727073, -73.229308)
## 1608          -74.17062 (41.339684, -74.170616)
## 1609          -73.88677 (40.653175, -73.886772)
## 1610          -73.92563 (40.815807, -73.925629)
## 1611          -73.92930 (40.813755, -73.929298)
## 1612          -73.97866 (40.737877, -73.978661)
## 1613          -73.90493  (40.870266, -73.90493)
## 1614          -73.62959 (40.697037, -73.629593)
## 1615          -73.23234 (40.826127, -73.232344)
## 1616          -73.99225  (40.73867, -73.992249)
## 1617          -73.80455  (43.083752, -73.80455)
## 1618          -77.61680   (43.0975, -77.616798)
## 1619          -73.58456  (43.267018, -73.58456)
## 1620          -73.94527 (40.834972, -73.945274)
## 1621          -73.93919 (42.797945, -73.939193)
## 1622          -77.61935 (43.114513, -77.619347)
## 1623          -73.99599 (40.594852, -73.995995)
## 1624          -75.26719 (43.083561, -75.267189)
## 1625                 NA                        
## 1626          -74.64309 (42.147694, -74.643089)
## 1627          -73.98302  (40.68536, -73.983025)
## 1628          -73.86142  (40.894569, -73.86142)
## 1629          -73.79713 (40.593727, -73.797134)
## 1630          -73.89168 (42.815533, -73.891685)
## 1631          -78.89017 (42.899047, -78.890168)
## 1632          -73.88998  (40.83395, -73.889984)
## 1633          -73.89761 (40.817219, -73.897606)
## 1634          -73.92585  (40.842598, -73.92585)
## 1635          -73.80738 (40.738861, -73.807381)
## 1636          -73.88065 (40.663113, -73.880653)
## 1637          -75.06293 (42.455845, -75.062935)
## 1638          -73.83721  (40.87442, -73.837212)
## 1639          -74.54009 (44.824051, -74.540092)
## 1640          -73.69999 (40.773783, -73.699986)
## 1641          -73.76580   (42.258457, -73.7658)
## 1642          -74.02541 (40.637515, -74.025407)
## 1643          -77.62967  (43.065695, -77.62967)
## 1644          -74.38071 (41.732185, -74.380714)
## 1645          -75.91400  (42.08654, -75.914001)
## 1646          -73.66550 (40.997628, -73.665502)
## 1647          -73.91182 (40.848324, -73.911819)
## 1648          -73.91220 (40.815419, -73.912203)
## 1649          -73.94101  (40.698071, -73.94101)
## 1650          -74.31845 (41.389069, -74.318451)
## 1651          -73.93517 (40.697041, -73.935173)
## 1652          -73.98225 (40.691814, -73.982254)
## 1653          -75.04659  (41.74115, -75.046593)
## 1654          -73.76646 (41.028988, -73.766464)
## 1655          -73.62479 (40.653416, -73.624786)
## 1656          -73.94093 (40.595349, -73.940935)
## 1657          -75.39117 (43.048309, -75.391174)
## 1658          -73.92238 (41.703957, -73.922379)
## 1659          -73.70008 (40.758907, -73.700081)
## 1660          -73.65305 (43.338558, -73.653053)
## 1661          -73.95963 (40.760326, -73.959633)
## 1662          -73.81289 (42.686205, -73.812889)
## 1663          -73.45324 (44.700218, -73.453239)
## 1664          -73.95039 (40.658989, -73.950386)
## 1665          -76.41689   (43.3269, -76.416893)
## 1666          -77.44814 (43.035349, -77.448142)
## 1667          -73.97523 (40.718727, -73.975227)
## 1668          -78.75236 (42.732235, -78.752365)
## 1669          -76.02103 (42.147995, -76.021034)
## 1670          -73.93709 (40.836563, -73.937088)
## 1671          -72.94695 (40.899822, -72.946953)
## 1672          -73.86781 (42.712174, -73.867815)
## 1673          -75.33363 (43.080158, -75.333626)
## 1674          -76.84704 (42.901749, -76.847038)
## 1675          -76.05211 (43.442978, -76.052109)
## 1676          -74.35323 (41.452942, -74.353233)
## 1677          -73.79128 (42.974164, -73.791276)
## 1678          -73.88572  (40.74432, -73.885719)
## 1679          -75.03324  (42.45723, -75.033241)
## 1680          -73.77943 (40.913258, -73.779434)
## 1681          -74.18337 (42.752457, -74.183372)
## 1682          -73.91277 (40.872475, -73.912773)
## 1683          -74.19488  (42.94146, -74.194885)
## 1684          -73.87824 (40.881596, -73.878242)
## 1685          -73.83883 (40.679795, -73.838834)
## 1686          -77.57775 (43.197839, -77.577747)
## 1687          -73.08780 (40.896912, -73.087799)
## 1688          -73.64199 (40.738518, -73.641991)
## 1689          -77.70155 (43.191257, -77.701546)
## 1690          -79.05259 (43.101013, -79.052589)
## 1691          -75.91564 (42.105343, -75.915642)
## 1692          -73.92572  (40.678387, -73.92572)
## 1693          -73.52569 (40.776691, -73.525688)
## 1694          -76.12665 (43.553314, -76.126648)
## 1695          -73.95431 (40.615143, -73.954315)
## 1696          -75.21305 (43.117237, -75.213051)
## 1697          -75.95571 (42.145068, -75.955707)
## 1698          -72.87920 (40.800552, -72.879204)
## 1699          -74.31200 (42.663641, -74.312004)
## 1700          -73.89981  (40.66544, -73.899811)
## 1701          -78.17748 (43.008652, -78.177483)
## 1702          -73.65585 (43.346354, -73.655852)
## 1703          -73.89150 (40.648048, -73.891502)
## 1704          -74.02103 (40.646444, -74.021033)
## 1705          -75.47423 (44.337636, -75.474231)
## 1706          -73.90037 (40.827721, -73.900368)
## 1707          -73.91058 (40.822279, -73.910583)
## 1708          -73.93760 (40.601162, -73.937602)
## 1709          -73.69194  (40.757343, -73.69194)
## 1710          -73.97279 (40.641064, -73.972786)
## 1711          -73.89618 (40.860882, -73.896179)
## 1712          -73.77746 (42.869205, -73.777458)
## 1713          -73.80502 (42.653301, -73.805016)
## 1714                 NA                        
## 1715          -73.94121  (40.584192, -73.94121)
## 1716          -78.84821 (42.921112, -78.848213)
## 1717          -76.40703 (43.313992, -76.407028)
## 1718          -74.08459   (40.5826, -74.084587)
## 1719          -73.69849 (40.663586, -73.698486)
## 1720          -73.97667 (40.739609, -73.976669)
## 1721          -73.70605 (40.781984, -73.706045)
## 1722          -75.27413  (44.50563, -75.274132)
## 1723          -73.95085 (40.783381, -73.950852)
## 1724          -73.88752  (40.754391, -73.88752)
## 1725          -73.81393 (40.919727, -73.813927)
## 1726          -75.89057 (42.758583, -75.890572)
## 1727                 NA                        
## 1728          -73.93783  (40.80032, -73.937828)
## 1729          -76.48909 (42.491094, -76.489094)
## 1730          -73.29552 (40.710003, -73.295525)
## 1731          -76.13566 (43.058708, -76.135658)
## 1732          -73.72770 (41.010807, -73.727702)
## 1733          -73.83552 (40.844379, -73.835518)
## 1734          -73.01785 (40.765919, -73.017853)
## 1735          -78.76069 (42.988918, -78.760689)
## 1736          -77.79050 (42.796799, -77.790497)
## 1737          -73.70147 (43.359562, -73.701469)
## 1738          -73.84489 (40.845501, -73.844894)
## 1739          -73.83903 (40.881653, -73.839035)
## 1740          -75.58121 (43.130727, -75.581211)
## 1741          -73.87874 (42.230965, -73.878738)
## 1742          -73.78239 (40.683353, -73.782394)
## 1743          -77.65657  (43.11843, -77.656571)
## 1744          -78.45039 (42.086971, -78.450386)
## 1745          -73.98320 (40.711055, -73.983199)
## 1746          -73.87946 (41.193958, -73.879456)
## 1747          -76.14360   (43.047562, -76.1436)
## 1748                 NA                        
## 1749          -73.98377 (40.636234, -73.983765)
## 1750          -74.19565 (42.941162, -74.195648)
## 1751          -77.56531 (43.161648, -77.565308)
## 1752          -74.08931  (41.525883, -74.08931)
## 1753          -73.93697 (40.759594, -73.936974)
## 1754          -73.99473 (41.926094, -73.994728)
## 1755          -73.87320 (43.044201, -73.873199)
## 1756          -76.11509 (43.403404, -76.115089)
## 1757          -72.67428 (40.933643, -72.674278)
## 1758          -73.80900 (41.048679, -73.808998)
## 1759          -73.96918 (40.695328, -73.969177)
## 1760          -73.66297 (42.731152, -73.662971)
## 1761          -73.90230 (40.904621, -73.902298)
## 1762          -73.89054 (40.663029, -73.890541)
## 1763          -73.90442 (40.827625, -73.904419)
## 1764          -72.78734 (40.824558, -72.787338)
## 1765          -74.98678 (44.670826, -74.986778)
## 1766          -73.80649 (40.970263, -73.806486)
## 1767          -73.70885 (41.120747, -73.708848)
## 1768          -78.87875 (42.977848, -78.878754)
## 1769          -74.59809 (42.411766, -74.598091)
## 1770          -73.62614  (40.70736, -73.626137)
## 1771          -76.86632 (42.375929, -76.866318)
## 1772          -73.84713  (40.828777, -73.84713)
## 1773          -77.65976  (42.313225, -77.65976)
## 1774          -74.92818 (42.698853, -74.928177)
## 1775                 NA                        
## 1776          -75.52516 (42.531345, -75.525162)
## 1777          -77.60079 (43.158482, -77.600792)
## 1778          -78.81368 (42.977028, -78.813683)
## 1779          -76.14873 (43.045815, -76.148727)
## 1780          -77.70154 (43.191551, -77.701538)
## 1781          -73.39777 (40.881016, -73.397766)
## 1782          -73.96024 (40.764553, -73.960243)
## 1783          -73.52161 (44.704899, -73.521612)
## 1784          -77.01109 (42.865658, -77.011086)
## 1785          -73.75469 (40.678499, -73.754693)
## 1786          -73.92961 (41.695976, -73.929611)
## 1787          -77.48600    (43.129601, -77.486)
## 1788          -78.83031 (43.060204, -78.830307)
## 1789          -77.66042 (42.346268, -77.660423)
## 1790          -73.94081 (40.802979, -73.940811)
## 1791          -73.74927 (42.674271, -73.749268)
## 1792          -73.69757 (40.642014, -73.697571)
## 1793          -73.97099 (40.647388, -73.970993)
## 1794          -76.13982  (43.04533, -76.139816)
## 1795          -73.69641 (40.793499, -73.696411)
## 1796          -76.56880 (42.930389, -76.568802)
## 1797          -76.53810 (42.472073, -76.538101)
## 1798          -73.64308 (40.741699, -73.643082)
## 1799          -74.64309 (42.147694, -74.643089)
## 1800          -75.52628 (42.525774, -75.526284)
## 1801          -74.08581   (40.5952, -74.085808)
## 1802          -79.05085  (43.099197, -79.05085)
## 1803          -73.90263 (40.831161, -73.902634)
## 1804          -73.69927 (42.641621, -73.699272)
## 1805          -77.13886 (42.960537, -77.138863)
## 1806          -73.99354 (40.725521, -73.993538)
## 1807          -73.85104 (40.728745, -73.851036)
## 1808          -77.62378 (43.124336, -77.623779)
## 1809          -73.18098 (40.855717, -73.180984)
## 1810          -73.14217 (40.879143, -73.142174)
## 1811          -73.62977 (40.707481, -73.629768)
## 1812          -73.83943    (40.853, -73.839428)
## 1813          -73.78751 (43.077984, -73.787506)
## 1814          -78.86246 (43.026154, -78.862457)
## 1815          -73.98640 (40.661114, -73.986397)
## 1816          -74.57175 (41.709538, -74.571747)
## 1817          -73.99033 (40.746712, -73.990334)
## 1818          -76.37060 (42.585533, -76.370605)
## 1819          -73.91765 (40.842679, -73.917651)
## 1820          -73.64600  (43.30735, -73.645996)
## 1821          -72.67428 (40.933643, -72.674278)
## 1822          -73.91877  (40.880508, -73.91877)
## 1823          -73.89580 (40.922089, -73.895798)
## 1824          -73.99936 (40.717232, -73.999359)
## 1825          -75.19757 (44.864639, -75.197571)
## 1826          -77.13487 (42.961494, -77.134872)
## 1827          -73.98355 (40.679291, -73.983553)
## 1828          -73.77609 (42.688889, -73.776093)
## 1829          -73.78931 (42.679539, -73.789314)
## 1830          -74.62930 (41.711292, -74.629303)
## 1831          -77.65976  (42.313175, -77.65976)
## 1832          -75.17754 (44.589157, -75.177544)
## 1833          -73.99801 (40.746037, -73.998009)
## 1834          -73.91052 (40.830783, -73.910518)
## 1835          -73.93444 (42.860389, -73.934439)
## 1836          -73.66441 (41.384766, -73.664413)
## 1837          -77.94941 (42.124207, -77.949409)
## 1838          -76.14402  (43.047031, -76.14402)
## 1839          -73.44155  (43.85397, -73.441551)
## 1840          -73.89334 (41.291512, -73.893341)
## 1841          -74.37132 (43.006397, -74.371323)
## 1842          -73.93982 (40.660229, -73.939819)
## 1843          -73.24188 (40.724743, -73.241882)
## 1844          -73.95995 (40.654026, -73.959953)
## 1845          -73.86123 (40.826546, -73.861229)
## 1846          -73.48670 (44.694698, -73.486702)
## 1847          -74.21740   (42.954033, -74.2174)
## 1848          -73.72508 (42.772724, -73.725082)
## 1849          -76.09476 (43.047588, -76.094757)
## 1850          -76.15907 (43.043354, -76.159073)
## 1851          -73.72721 (41.213188, -73.727211)
## 1852          -78.81228 (42.779334, -78.812284)
## 1853          -74.02432 (40.616329, -74.024315)
## 1854          -74.02406 (41.944061, -74.024055)
## 1855          -73.78207 (40.757553, -73.782066)
## 1856          -77.56624  (43.16148, -77.566244)
## 1857          -74.01409 (41.932644, -74.014091)
## 1858          -73.92610 (40.842339, -73.926102)
## 1859          -73.86207 (40.875938, -73.862068)
## 1860          -73.90036  (40.822506, -73.90036)
## 1861          -73.98480 (40.732468, -73.984802)
## 1862          -73.90152 (40.875451, -73.901516)
## 1863          -73.97149 (40.746288, -73.971489)
## 1864          -73.86703 (40.864861, -73.867027)
## 1865          -75.64158 (42.077881, -75.641579)
## 1866          -74.63232 (41.737995, -74.632324)
## 1867          -73.97389 (40.630581, -73.973892)
## 1868          -78.86359 (42.872681, -78.863586)
## 1869          -74.01255  (40.706612, -74.01255)
## 1870          -73.93721  (40.815022, -73.93721)
## 1871          -73.89697 (40.915833, -73.896973)
## 1872          -77.54988 (43.140305, -77.549881)
## 1873          -73.69609 (42.734126, -73.696086)
## 1874          -73.90950 (40.854075, -73.909496)
## 1875          -75.26719 (43.083561, -75.267189)
## 1876          -78.63205     (42.895, -78.63205)
## 1877          -75.46177 (43.212868, -75.461769)
## 1878          -73.94167 (40.599613, -73.941666)
## 1879          -74.00557 (40.706543, -74.005569)
## 1880          -78.85390 (42.904278, -78.853905)
## 1881          -78.50865 (42.895493, -78.508652)
## 1882          -73.81355 (42.685863, -73.813545)
## 1883          -77.53524  (43.102222, -77.53524)
## 1884          -74.03543  (41.13995, -74.035431)
## 1885          -75.25158 (44.325851, -75.251579)
## 1886          -73.60581 (40.739468, -73.605812)
## 1887          -75.91892 (43.985638, -75.918922)
## 1888          -73.25002 (40.847984, -73.250015)
## 1889          -73.81017 (40.679634, -73.810173)
## 1890          -73.45801   (40.8186, -73.458008)
## 1891          -76.04731  (42.098923, -76.04731)
## 1892          -76.33725  (42.227245, -76.33725)
## 1893          -73.57864   (43.31203, -73.57864)
## 1894          -75.32855 (43.482647, -75.328552)
## 1895          -73.66347 (42.793602, -73.663467)
## 1896          -73.76949 (43.126148, -73.769488)
## 1897          -73.94130  (40.79755, -73.941299)
## 1898          -78.73154 (42.996937, -78.731537)
## 1899          -73.94368  (40.784775, -73.94368)
## 1900          -75.95762  (42.09971, -75.957619)
## 1901          -76.16355 (43.120728, -76.163551)
## 1902          -73.93066 (40.860695, -73.930656)
## 1903          -73.79250 (40.681648, -73.792503)
## 1904          -77.05463  (42.66238, -77.054634)
## 1905          -75.25051 (42.546371, -75.250511)
## 1906          -74.00301 (40.743156, -74.003014)
## 1907          -73.95888 (40.696579, -73.958878)
## 1908          -74.03653  (41.161587, -74.03653)
## 1909          -73.98121 (40.737343, -73.981209)
## 1910          -74.06490 (41.111069, -74.064903)
## 1911          -74.75138 (41.794876, -74.751381)
## 1912          -75.99802  (42.10326, -75.998024)
## 1913          -73.93690 (40.800873, -73.936897)
## 1914          -73.82997  (40.76186, -73.829971)
## 1915          -74.90795 (44.936363, -74.907951)
## 1916          -73.08643 (40.901566, -73.086426)
## 1917          -73.82144 (42.770695, -73.821442)
## 1918          -73.90572 (40.877602, -73.905716)
## 1919          -73.74717 (42.636105, -73.747169)
## 1920          -78.76704 (42.790737, -78.767036)
## 1921          -73.00710 (40.768681, -73.007095)
## 1922          -73.12170 (40.912102, -73.121696)
## 1923          -73.97263 (40.603535, -73.972633)
## 1924          -74.13506 (40.635456, -74.135056)
## 1925                 NA                        
## 1926          -73.94740 (40.662506, -73.947395)
## 1927          -78.69685 (42.924297, -78.696846)
## 1928          -74.38152 (41.237453, -74.381523)
## 1929          -73.93186 (40.786139, -73.931857)
## 1930          -76.80056  (42.090897, -76.80056)
## 1931                 NA                        
## 1932          -73.95351 (40.783539, -73.953506)
## 1933          -73.97159 (40.792492, -73.971588)
## 1934          -73.84731 (40.773888, -73.847313)
## 1935          -77.63282 (43.114094, -77.632821)
## 1936                 NA                        
## 1937          -73.90376 (40.669186, -73.903755)
## 1938          -73.93912 (40.819716, -73.939123)
## 1939          -78.78610 (43.015533, -78.786102)
## 1940          -75.87669 (42.110928, -75.876694)
## 1941          -76.05682 (42.112522, -76.056824)
## 1942          -74.98032  (43.02787, -74.980324)
## 1943          -78.97938 (43.039127, -78.979385)
## 1944          -78.16900 (42.066044, -78.168999)
## 1945          -78.72288  (42.99649, -78.722878)
## 1946          -73.89089 (40.854229, -73.890892)
## 1947          -73.71630 (40.782249, -73.716301)
## 1948          -73.61594 (40.697823, -73.615936)
## 1949          -78.86427 (42.872307, -78.864273)
## 1950          -73.96251 (40.800037, -73.962509)
## 1951                 NA                        
## 1952          -78.48876 (42.425858, -78.488762)
## 1953          -78.77224  (42.781742, -78.77224)
## 1954          -73.81654 (40.926445, -73.816544)
## 1955          -74.29080 (44.857291, -74.290803)
## 1956          -73.95418 (40.765381, -73.954185)
## 1957          -78.81958  (42.896263, -78.81958)
## 1958          -73.72165 (40.709026, -73.721649)
## 1959          -76.82678 (42.099285, -76.826782)
## 1960          -76.17529 (43.082142, -76.175293)
## 1961          -74.00525 (40.709961, -74.005252)
## 1962          -78.75359 (42.828037, -78.753586)
## 1963          -73.11665  (40.82571, -73.116646)
## 1964          -73.74783 (42.662898, -73.747835)
## 1965          -73.61145   (40.73431, -73.61145)
## 1966                 NA                        
## 1967          -73.98575 (40.717055, -73.985752)
## 1968          -75.23485 (43.091493, -75.234845)
## 1969          -75.99576 (42.097763, -75.995758)
## 1970          -73.77850   (40.8969, -73.778503)
## 1971          -73.84362   (40.86058, -73.84362)
## 1972          -74.98463 (43.026329, -74.984627)
## 1973          -73.99839  (40.639423, -73.99839)
## 1974          -73.43862 (40.667854, -73.438622)
## 1975          -73.97102 (40.630184, -73.971024)
## 1976          -73.73260 (42.732399, -73.732597)
## 1977          -73.85156 (42.699898, -73.851563)
## 1978          -73.88133 (40.669994, -73.881325)
## 1979          -73.83682 (42.680745, -73.836817)
## 1980          -73.91365  (42.82206, -73.913651)
## 1981          -74.41612 (41.448524, -74.416115)
## 1982          -73.88260 (40.838833, -73.882599)
## 1983          -76.84670 (42.901783, -76.846703)
## 1984          -78.78246  (42.83955, -78.782463)
## 1985          -76.50761 (42.439798, -76.507607)
## 1986          -73.77569 (42.646759, -73.775688)
## 1987          -73.88009  (40.88406, -73.880089)
## 1988          -74.35719 (41.260586, -74.357185)
## 1989          -74.00237 (40.609352, -74.002373)
## 1990          -73.36128 (40.752857, -73.361282)
## 1991          -73.64770 (43.307623, -73.647703)
## 1992          -75.26134 (43.102509, -75.261337)
## 1993          -73.71046 (40.989265, -73.710457)
## 1994          -73.89696 (40.929512, -73.896957)
## 1995          -73.70885 (41.120747, -73.708848)
## 1996          -75.91892 (43.985638, -75.918922)
## 1997          -73.78118 (42.245562, -73.781185)
## 1998          -73.70622 (40.753952, -73.706223)
## 1999          -73.76959 (41.026333, -73.769585)
## 2000          -77.58205 (43.092171, -77.582054)
## 2001          -74.15208 (40.626369, -74.152084)
## 2002          -73.99988  (40.740981, -73.99988)
## 2003          -78.82099 (42.909657, -78.820992)
## 2004          -74.08008 (41.618226, -74.080081)
## 2005          -73.87835 (42.231789, -73.878349)
## 2006          -73.95077 (40.655961, -73.950775)
## 2007          -73.99886 (40.718533, -73.998856)
## 2008          -78.16505 (43.241627, -78.165054)
## 2009          -73.08878 (40.896851, -73.088776)
## 2010          -74.03145 (41.149361, -74.031448)
## 2011          -73.88718 (41.532356, -73.887177)
## 2012          -73.83639 (40.770457, -73.836388)
## 2013          -73.93404 (40.659435, -73.934036)
## 2014          -73.88723 (41.531853, -73.887226)
## 2015          -75.88926 (42.106562, -75.889258)
## 2016          -77.73825 (42.907703, -77.738251)
## 2017          -74.73158 (41.696243, -74.731583)
## 2018          -73.67574 (42.743382, -73.675735)
## 2019          -77.46676 (43.057107, -77.466759)
## 2020          -73.87997 (41.193406, -73.879971)
## 2021          -73.87909 (42.793575, -73.879089)
## 2022                 NA                        
## 2023          -78.94430   (43.0858, -78.944298)
## 2024          -77.60754 (43.135769, -77.607544)
## 2025          -73.60285 (40.726667, -73.602846)
## 2026          -78.99026 (43.108253, -78.990259)
## 2027          -73.97801 (40.694958, -73.978012)
## 2028          -73.93297   (40.66324, -73.93297)
## 2029          -78.03331 (42.224958, -78.033314)
## 2030          -73.99243 (40.753513, -73.992432)
## 2031          -73.26516   (43.41494, -73.26516)
## 2032          -73.89610  (40.81908, -73.896103)
## 2033          -77.43907 (43.130848, -77.439072)
## 2034          -78.73210 (42.157581, -78.732101)
## 2035          -73.99935 (40.674785, -73.999349)
## 2036          -74.17518 (43.225525, -74.175179)
## 2037          -77.00511 (42.860169, -77.005107)
## 2038          -74.01143 (40.633774, -74.011429)
## 2039          -73.75215  (40.60004, -73.752151)
## 2040          -73.90714 (40.814598, -73.907143)
## 2041          -74.13157 (40.581226, -74.131569)
## 2042          -75.54196 (42.814011, -75.541962)
## 2043          -73.23452 (40.728927, -73.234518)
## 2044          -73.91644  (40.84412, -73.916435)
## 2045          -73.70622 (40.753952, -73.706223)
## 2046          -73.98751 (40.735603, -73.987511)
## 2047          -73.96883 (40.794228, -73.968834)
## 2048          -73.95449 (40.732021, -73.954491)
## 2049          -73.99955  (41.922565, -73.99955)
## 2050          -77.61739 (43.102725, -77.617386)
## 2051          -73.74463  (42.25716, -73.744629)
## 2052          -75.44322 (43.230515, -75.443222)
## 2053          -73.97787 (40.786949, -73.977875)
## 2054          -73.70289  (40.77924, -73.702888)
## 2055          -76.16355 (43.120728, -76.163551)
## 2056          -77.62945 (43.066147, -77.629448)
## 2057          -77.72980 (43.115259, -77.729796)
## 2058          -76.87428 (42.161896, -76.874283)
## 2059          -73.94391 (40.709815, -73.943911)
## 2060          -76.14424 (43.035557, -76.144241)
## 2061                 NA                        
## 2062          -78.81280 (42.996326, -78.812805)
## 2063          -73.90274   (40.85479, -73.90274)
## 2064          -73.96382 (40.764416, -73.963821)
## 2065          -75.87386 (43.043396, -75.873856)
## 2066          -79.04871 (43.120728, -79.048706)
## 2067          -74.01068 (40.612186, -74.010681)
## 2068          -73.96338 (40.764373, -73.963377)
## 2069          -73.91512 (40.821934, -73.915123)
## 2070          -73.94051  (40.81435, -73.940506)
## 2071          -74.09060 (40.596214, -74.090599)
## 2072          -73.74544 (40.610161, -73.745438)
## 2073          -73.86262 (41.161324, -73.862625)
## 2074          -73.99492 (40.573448, -73.994919)
## 2075          -73.84330   (41.173225, -73.8433)
## 2076          -73.50861 (40.810238, -73.508614)
## 2077            0.00000              (0.0, 0.0)
## 2078          -77.60521 (43.083706, -77.605209)
## 2079          -77.31929 (43.123504, -77.319291)
## 2080          -73.95328 (40.769276, -73.953278)
## 2081          -74.30912  (44.848095, -74.30912)
## 2082          -73.95087 (40.818394, -73.950867)
## 2083          -79.20978 (42.114246, -79.209785)
## 2084          -73.65528 (43.305451, -73.655276)
## 2085          -78.86720 (42.900716, -78.867203)
## 2086          -78.69133  (42.172379, -78.69133)
## 2087          -76.20053 (42.357045, -76.200533)
## 2088          -75.32006 (44.732692, -75.320058)
## 2089          -73.97055 (40.672401, -73.970551)
## 2090          -73.58708 (40.745575, -73.587082)
## 2091          -73.76865 (43.492097, -73.768645)
## 2092          -73.88673 (40.814362, -73.886726)
## 2093          -73.74913  (42.672859, -73.74913)
## 2094          -73.90946 (40.823338, -73.909461)
## 2095                 NA                        
## 2096          -77.02856 (43.065098, -77.028557)
## 2097          -77.49766 (43.201027, -77.497665)
## 2098          -73.54049 (40.691135, -73.540489)
## 2099          -77.63614  (43.14901, -77.636139)
## 2100          -74.33556 (42.597893, -74.335564)
## 2101          -73.92421  (41.716999, -73.92421)
## 2102          -73.75652 (40.601067, -73.756523)
## 2103          -73.98928 (43.694401, -73.989281)
## 2104          -74.77145 (43.103455, -74.771446)
## 2105          -77.79768  (43.19656, -77.797677)
## 2106          -73.68282 (40.584415, -73.682816)
## 2107          -73.95708 (40.650342, -73.957082)
## 2108          -75.91423  (42.088062, -75.91423)
## 2109          -75.13218 (44.605101, -75.132176)
## 2110          -73.92348 (40.822781, -73.923477)
## 2111          -73.98370 (41.202301, -73.983704)
## 2112          -73.96855 (40.796145, -73.968552)
## 2113          -73.90025 (40.848717, -73.900246)
## 2114          -76.03235  (42.44183, -76.032349)
## 2115          -76.16464  (43.04467, -76.164642)
## 2116          -73.90029 (40.666336, -73.900291)
## 2117          -75.52477 (42.541813, -75.524773)
## 2118          -75.05326 (42.457405, -75.053261)
## 2119          -76.07033 (43.093097, -76.070333)
## 2120          -73.78417 (40.892162, -73.784172)
## 2121          -73.91086 (40.753465, -73.910857)
## 2122          -76.54409  (42.954887, -76.54409)
## 2123          -73.80502 (42.653301, -73.805016)
## 2124          -73.99121 (40.726082, -73.991211)
## 2125          -73.88577 (40.660538, -73.885765)
## 2126          -77.44167 (43.133602, -77.441673)
## 2127          -73.18098 (40.855717, -73.180984)
## 2128          -73.92814 (42.801655, -73.928139)
## 2129          -73.97124  (40.638574, -73.97124)
## 2130          -73.83881 (40.911053, -73.838814)
## 2131          -73.44038 (44.978494, -73.440378)
## 2132          -73.91138  (40.69709, -73.911382)
## 2133          -78.37012 (43.213066, -78.370117)
## 2134          -79.33387  (42.480774, -79.33387)
## 2135          -74.02406 (41.944061, -74.024055)
## 2136          -73.71664 (41.793243, -73.716637)
## 2137          -73.57581 (40.761124, -73.575806)
## 2138          -74.00005 (40.673622, -74.000046)
## 2139          -79.03056 (43.154659, -79.030556)
## 2140          -75.61453 (43.974518, -75.614525)
## 2141          -73.99460 (40.769203, -73.994598)
## 2142          -73.83850  (42.65839, -73.838501)
## 2143          -73.98613 (40.689703, -73.986132)
## 2144          -75.52724 (42.546238, -75.527237)
## 2145          -73.93971 (40.839909, -73.939713)
## 2146          -73.08672 (40.902145, -73.086716)
## 2147          -78.94072  (43.084652, -78.94072)
## 2148          -76.84670 (42.901783, -76.846703)
## 2149          -77.66418  (42.347604, -77.66418)
## 2150          -78.13245 (42.753513, -78.132454)
## 2151          -75.96577 (42.106472, -75.965775)
## 2152          -74.02865 (41.496352, -74.028646)
## 2153          -73.98463 (40.701969, -73.984632)
## 2154          -78.77299 (43.009171, -78.772995)
## 2155          -78.42784 (42.084541, -78.427841)
## 2156          -74.48640 (43.155155, -74.486397)
## 2157          -73.93320  (41.71516, -73.933197)
## 2158          -73.91326 (40.655045, -73.913261)
## 2159          -75.91647 (42.085966, -75.916465)
## 2160          -75.20555 (43.080975, -75.205551)
## 2161          -73.24609 (40.779213, -73.246094)
## 2162          -73.86311 (41.144711, -73.863106)
## 2163          -78.94430   (43.0858, -78.944298)
## 2164          -73.66424 (41.386158, -73.664238)
## 2165          -73.86991 (40.667793, -73.869911)
## 2166          -73.89961 (40.642799, -73.899612)
## 2167          -73.17120 (40.872643, -73.171196)
## 2168          -76.54452  (42.00064, -76.544516)
## 2169          -74.33160 (43.073525, -74.331604)
## 2170          -73.29990 (40.828209, -73.299896)
## 2171          -73.69609 (42.734126, -73.696086)
## 2172          -73.95357 (40.805305, -73.953568)
## 2173          -73.85362 (40.892262, -73.853622)
## 2174          -76.55936 (42.934586, -76.559364)
## 2175          -73.98863 (40.638279, -73.988632)
## 2176          -74.36295 (42.996834, -74.362953)
## 2177          -75.39800 (42.312908, -75.398003)
## 2178          -73.38854 (40.858694, -73.388543)
## 2179          -73.90059 (40.828532, -73.900594)
## 2180          -77.59419 (43.110951, -77.594187)
## 2181          -77.66016 (42.314438, -77.660164)
## 2182          -73.95330   (40.706772, -73.9533)
## 2183                 NA                        
## 2184          -73.94138 (40.685631, -73.941377)
## 2185          -75.33949 (43.164825, -75.339493)
## 2186          -73.99828 (40.642967, -73.998276)
## 2187          -73.80596 (40.696922, -73.805962)
## 2188          -73.68186  (42.75639, -73.681862)
## 2189          -75.87856 (42.108273, -75.878555)
## 2190          -77.63614  (43.14901, -77.636139)
## 2191          -77.68619 (43.128445, -77.686188)
## 2192          -74.03021   (41.5222, -74.030208)
## 2193          -73.94330 (40.697636, -73.943298)
## 2194          -77.43819 (43.130775, -77.438194)
## 2195          -77.59743 (43.113281, -77.597427)
## 2196          -74.28034  (41.45332, -74.280342)
## 2197          -73.89548 (41.524715, -73.895485)
## 2198          -75.83107 (44.054933, -75.831069)
## 2199          -73.82604 (40.747517, -73.826035)
## 2200          -74.84746 (43.043964, -74.847458)
## 2201          -73.93731 (40.813297, -73.937309)
## 2202          -73.96107 (40.601518, -73.961071)
## 2203          -77.68613 (42.551441, -77.686127)
## 2204          -74.27186 (43.783006, -74.271859)
## 2205          -73.98578 (40.576656, -73.985779)
## 2206          -73.95483 (42.076492, -73.954826)
## 2207          -73.96831 (40.757301, -73.968307)
## 2208          -73.74901 (40.607697, -73.749008)
## 2209          -73.93863 (40.804955, -73.938629)
## 2210          -73.11894  (40.87785, -73.118942)
## 2211          -75.54259 (42.812443, -75.542588)
## 2212          -77.44172 (43.133892, -77.441719)
## 2213          -73.97941 (41.702622, -73.979413)
## 2214          -73.51101 (44.705425, -73.511009)
## 2215          -73.68504 (40.655846, -73.685043)
## 2216          -79.23612 (42.096546, -79.236122)
## 2217          -76.97781  (42.524889, -76.97781)
## 2218          -75.25853  (43.001995, -75.25853)
## 2219          -73.77428 (42.668221, -73.774284)
## 2220          -77.93546  (43.21497, -77.935463)
## 2221          -78.16293 (42.426323, -78.162926)
## 2222          -73.88314 (40.665783, -73.883141)
## 2223          -78.86684 (42.902245, -78.866837)
## 2224          -73.98013 (41.703918, -73.980133)
## 2225          -73.64986 (42.248978, -73.649857)
## 2226          -73.98381 (40.605635, -73.983806)
## 2227          -74.14436 (44.343929, -74.144363)
## 2228          -73.91204 (40.831406, -73.912041)
## 2229          -73.88359 (40.841633, -73.883591)
## 2230          -73.94402 (40.791229, -73.944023)
## 2231          -73.89687 (40.664169, -73.896873)
## 2232          -73.80399  (41.08773, -73.803993)
## 2233          -73.90936 (41.737858, -73.909355)
## 2234          -73.66534 (40.997623, -73.665337)
## 2235          -73.96186 (40.764156, -73.961861)
## 2236          -73.62901 (40.653667, -73.629005)
## 2237          -73.95609 (40.814484, -73.956093)
## 2238          -75.91574 (42.104996, -75.915741)
## 2239          -73.90497 (42.701252, -73.904968)
## 2240          -73.82888  (40.713261, -73.82888)
## 2241          -75.59201  (43.986763, -75.59201)
## 2242          -74.68249 (41.367916, -74.682487)
## 2243          -73.88935 (40.860481, -73.889351)
## 2244          -73.51739 (43.102971, -73.517392)
## 2245          -76.16712 (42.600962, -76.167122)
## 2246          -73.77943 (40.913258, -73.779434)
## 2247          -73.68613 (42.728802, -73.686127)
## 2248          -78.72564 (42.959019, -78.725639)
## 2249          -78.18178 (43.009781, -78.181778)
## 2250          -73.80478 (40.722591, -73.804779)
## 2251          -73.97273 (41.521412, -73.972733)
## 2252          -73.84312 (40.859859, -73.843124)
## 2253          -72.40065 (40.896614, -72.400654)
## 2254          -74.36064 (41.447765, -74.360641)
## 2255          -73.94749 (40.631809, -73.947487)
## 2256          -73.89982 (40.922081, -73.899818)
## 2257          -73.92748 (40.625282, -73.927483)
## 2258          -74.07762  (40.62706, -74.077621)
## 2259          -73.96034 (40.610157, -73.960342)
## 2260          -73.94713 (40.802593, -73.947128)
## 2261          -73.95638 (40.689243, -73.956383)
## 2262          -74.74400 (42.591783, -74.743999)
## 2263          -77.60332 (43.168159, -77.603317)
## 2264          -78.83590 (42.923153, -78.835899)
## 2265          -73.96198 (40.763998, -73.961976)
## 2266          -78.78602  (42.99139, -78.786018)
## 2267          -73.72236 (40.788807, -73.722359)
## 2268          -77.70155 (43.191257, -77.701546)
## 2269          -73.97635 (40.626877, -73.976349)
## 2270          -73.88122 (40.878609, -73.881218)
## 2271          -74.04190  (41.43586, -74.041901)
## 2272          -73.85568 (40.893177, -73.855682)
## 2273          -73.70622 (40.753952, -73.706223)
## 2274          -74.01409 (41.932644, -74.014091)
## 2275          -73.86423 (41.711266, -73.864227)
## 2276          -75.91690 (42.100979, -75.916901)
## 2277          -73.95679 (40.774136, -73.956795)
## 2278          -73.81164 (40.706882, -73.811638)
## 2279          -73.83958 (40.881912, -73.839577)
## 2280          -73.91194 (40.877849, -73.911943)
## 2281          -73.99805 (40.691353, -73.998047)
## 2282          -75.38067 (42.930893, -75.380669)
## 2283          -75.06176  (42.456699, -75.06176)
## 2284          -73.91982 (40.814968, -73.919823)
## 2285          -75.27553 (43.099613, -75.275528)
## 2286          -74.00280 (41.163104, -74.002797)
## 2287                 NA                        
## 2288          -73.81671 (40.951462, -73.816711)
## 2289          -73.90828 (40.879662, -73.908279)
## 2290          -73.98040    (40.76092, -73.9804)
## 2291          -73.47396 (44.703545, -73.473961)
## 2292          -72.65096 (40.924393, -72.650963)
## 2293          -74.00312 (40.743019, -74.003119)
## 2294          -73.95966  (40.695276, -73.95966)
## 2295          -78.42688  (42.089844, -78.42688)
## 2296          -73.89432 (40.754333, -73.894317)
## 2297          -78.86274  (42.900936, -78.86274)
## 2298          -73.95818 (40.700287, -73.958183)
## 2299          -78.94072  (43.084652, -78.94072)
## 2300          -73.90916 (40.846325, -73.909164)
## 2301          -72.37789 (40.886414, -72.377892)
## 2302          -74.23861 (41.545601, -74.238609)
## 2303          -73.93713 (40.813541, -73.937134)
## 2304          -73.95836 (40.713296, -73.958356)
## 2305          -73.55432 (40.725353, -73.554321)
## 2306          -73.03097 (40.913174, -73.030971)
## 2307          -73.98820 (40.747776, -73.988197)
## 2308          -73.90604  (40.87698, -73.906044)
## 2309          -78.89027 (42.946358, -78.890274)
## 2310          -78.78142 (42.991451, -78.781418)
## 2311          -78.88381 (42.892193, -78.883812)
## 2312          -78.81963 (42.903786, -78.819626)
## 2313          -78.80671  (43.02816, -78.806714)
## 2314          -73.98003 (40.721508, -73.980034)
## 2315          -73.70332 (40.753628, -73.703323)
## 2316          -77.58637 (43.125744, -77.586365)
## 2317          -75.41900 (43.220039, -75.418999)
## 2318          -73.78738 (42.865594, -73.787376)
## 2319          -73.64362 (43.312473, -73.643616)
## 2320          -77.21473 (42.884823, -77.214729)
## 2321          -73.91142 (42.776417, -73.911423)
## 2322          -73.46675 (44.700279, -73.466751)
## 2323          -73.77612 (41.023624, -73.776115)
## 2324          -73.80502 (42.656338, -73.805016)
## 2325          -73.97938 (40.689487, -73.979385)
## 2326          -73.76668 (42.662018, -73.766685)
## 2327          -73.78402 (40.704983, -73.784019)
## 2328          -77.50874 (43.180614, -77.508743)
## 2329          -74.93226 (42.699223, -74.932259)
## 2330          -73.96940 (40.752899, -73.969398)
## 2331          -73.91277 (41.788734, -73.912766)
## 2332          -73.90978  (40.85429, -73.909782)
## 2333          -73.69237 (40.757247, -73.692371)
## 2334          -73.89517 (40.823055, -73.895172)
## 2335          -75.43616 (43.217644, -75.436157)
## 2336          -73.85113 (42.699154, -73.851128)
## 2337          -73.24058  (40.90197, -73.240585)
## 2338          -73.86385 (40.730934, -73.863846)
## 2339          -73.59776 (44.219894, -73.597755)
## 2340          -78.42688  (42.089844, -78.42688)
## 2341          -73.81190 (40.815098, -73.811905)
## 2342          -73.76470 (40.598469, -73.764702)
## 2343          -75.47441 (44.338207, -75.474411)
## 2344          -73.89638 (41.534531, -73.896378)
## 2345          -75.04964  (42.45816, -75.049644)
## 2346          -77.65148 (43.174125, -77.651481)
## 2347          -74.35747  (41.33395, -74.357468)
## 2348          -74.64171 (42.147366, -74.641708)
## 2349          -77.05982 (42.670712, -77.059822)
## 2350          -78.73737 (43.173504, -78.737366)
## 2351          -74.08671 (40.586643, -74.086708)
## 2352          -73.90318 (40.858597, -73.903175)
## 2353          -73.68581 (40.681789, -73.685814)
## 2354          -76.51298 (43.453259, -76.512978)
## 2355          -73.87320 (43.044201, -73.873199)
## 2356          -73.68422 (41.244732, -73.684219)
## 2357          -73.59428 (41.562111, -73.594284)
## 2358          -74.02865 (41.496352, -74.028646)
## 2359          -77.58447 (43.192207, -77.584473)
## 2360          -73.98633 (40.672667, -73.986334)
## 2361          -78.84231 (42.936367, -78.842308)
## 2362          -73.83562 (41.123985, -73.835617)
## 2363          -74.98885 (44.669666, -74.988846)
## 2364          -77.66019 (42.324867, -77.660187)
## 2365          -77.50131 (43.194584, -77.501312)
## 2366          -74.02116 (40.628529, -74.021156)
## 2367          -73.58770    (40.65382, -73.5877)
## 2368          -73.94044 (40.710926, -73.940445)
## 2369          -75.49815 (43.795677, -75.498146)
## 2370          -74.19681 (40.516773, -74.196808)
## 2371          -74.82513 (41.899387, -74.825127)
## 2372          -74.57398  (42.90691, -74.573975)
## 2373          -73.57213 (41.439941, -73.572128)
## 2374          -74.15208 (40.626369, -74.152084)
## 2375          -73.93519 (40.673428, -73.935194)
## 2376          -77.49999 (42.789474, -77.499992)
## 2377          -77.51475 (43.124584, -77.514755)
## 2378          -77.58440 (43.193474, -77.584404)
## 2379          -72.36128 (41.110958, -72.361282)
## 2380          -76.05922 (43.091747, -76.059219)
## 2381          -77.12148  (42.14476, -77.121475)
## 2382          -75.95980 (42.114956, -75.959801)
## 2383          -76.49380 (43.444843, -76.493805)
## 2384          -73.98541 (40.640945, -73.985405)
## 2385          -73.92287 (40.858968, -73.922869)
## 2386          -73.92252 (40.668624, -73.922517)
## 2387          -73.38932  (40.855377, -73.38932)
## 2388          -77.59515 (43.115421, -77.595154)
## 2389          -74.95034  (42.591103, -74.95034)
## 2390          -76.18164 (43.099258, -76.181641)
## 2391          -73.91138  (40.66497, -73.911385)
## 2392          -73.91966 (40.816704, -73.919655)
## 2393          -74.13534 (40.593884, -74.135338)
## 2394          -73.95651 (40.762962, -73.956512)
## 2395          -73.97990 (40.744732, -73.979897)
## 2396          -74.98369  (43.02639, -74.983688)
## 2397          -75.45860 (43.211182, -75.458595)
## 2398          -79.02921  (43.15324, -79.029205)
## 2399          -76.15027 (43.039562, -76.150269)
## 2400          -73.79271 (40.773457, -73.792709)
## 2401          -73.74840 (40.595409, -73.748398)
## 2402          -74.41968   (41.4459, -74.419678)
## 2403          -73.91204 (40.831406, -73.912041)
## 2404          -78.87890 (42.893997, -78.878899)
## 2405          -77.10970 (43.062344, -77.109703)
## 2406          -76.06387 (43.715309, -76.063866)
## 2407          -73.65891 (41.008198, -73.658913)
## 2408          -73.98753 (41.985615, -73.987526)
## 2409          -73.88252 (40.878334, -73.882523)
## 2410          -73.99394 (40.755128, -73.993941)
## 2411          -77.62960   (43.0658, -77.629601)
## 2412          -73.73602 (40.705803, -73.736023)
## 2413          -73.92238 (41.703957, -73.922379)
## 2414          -73.70005  (41.301498, -73.70005)
## 2415          -77.51671 (43.126083, -77.516708)
## 2416          -75.50014 (42.679839, -75.500144)
## 2417          -75.26719 (43.083561, -75.267189)
## 2418          -73.89091 (40.883423, -73.890907)
## 2419          -73.87930 (40.872791, -73.879303)
## 2420          -75.27530   (43.0938, -75.275299)
## 2421          -73.95910 (40.665013, -73.959099)
## 2422          -77.62277 (43.124374, -77.622765)
## 2423          -73.80542  (42.655567, -73.80542)
## 2424          -77.69339  (42.833282, -77.69339)
## 2425          -75.49860 (42.686226, -75.498596)
## 2426          -73.80026 (40.704076, -73.800264)
## 2427          -73.90672 (41.215603, -73.906715)
## 2428          -78.62348 (42.768101, -78.623482)
## 2429          -73.81630 (40.701412, -73.816299)
## 2430          -73.91054 (42.814745, -73.910538)
## 2431                 NA                        
## 2432          -73.74863 (42.762611, -73.748634)
## 2433          -77.59984 (43.160461, -77.599838)
## 2434          -75.89429 (43.955456, -75.894295)
## 2435          -73.96571 (40.581375, -73.965714)
## 2436          -72.54787 (40.866936, -72.547874)
## 2437          -73.84674 (40.857388, -73.846741)
## 2438          -72.36337 (41.101517, -72.363373)
## 2439          -76.16490 (42.611557, -76.164902)
## 2440          -77.50103  (43.195141, -77.50103)
## 2441          -73.94972 (40.656219, -73.949722)
## 2442          -73.11636 (40.913532, -73.116364)
## 2443          -73.82278 (40.756798, -73.822784)
## 2444          -76.82246 (42.678326, -76.822464)
## 2445          -73.98566 (40.697178, -73.985657)
## 2446          -76.26425 (42.141457, -76.264252)
## 2447          -76.79686  (42.091446, -76.79686)
## 2448          -76.30042 (43.229626, -76.300415)
## 2449          -77.70154 (43.191551, -77.701538)
## 2450                 NA                        
## 2451          -74.37369 (42.952969, -74.373688)
## 2452          -73.83017  (40.713314, -73.83017)
## 2453          -73.29816 (40.695492, -73.298157)
## 2454          -76.46619 (42.478706, -76.466187)
## 2455          -73.67162 (42.734315, -73.671615)
## 2456          -73.91944 (40.703995, -73.919441)
## 2457          -78.80651 (42.988639, -78.806505)
## 2458          -73.70036 (42.775986, -73.700363)
## 2459          -73.01773 (40.765911, -73.017731)
## 2460          -75.27950 (43.094315, -75.279503)
## 2461          -75.26101  (43.088413, -75.26101)
## 2462          -73.89860 (40.933105, -73.898598)
## 2463          -73.80761  (42.703697, -73.80761)
## 2464          -74.08057 (40.598705, -74.080566)
## 2465          -74.05793  (41.740738, -74.05793)
## 2466          -73.89101 (40.853909, -73.891014)
## 2467          -73.93925 (40.578274, -73.939247)
## 2468          -77.58416   (43.09659, -77.58416)
## 2469                 NA                        
## 2470          -73.83629 (40.911842, -73.836288)
## 2471          -73.19258 (40.787064, -73.192581)
## 2472          -74.00470   (40.724056, -74.0047)
## 2473          -73.88908 (40.635677, -73.889084)
## 2474          -76.79652 (42.063766, -76.796524)
## 2475          -73.79089 (42.960072, -73.790894)
## 2476          -73.67946  (41.01083, -73.679459)
## 2477          -75.15555 (44.596447, -75.155548)
## 2478          -73.95106 (40.794212, -73.951065)
## 2479          -73.98121 (40.737343, -73.981209)
## 2480          -72.67893 (40.928474, -72.678932)
## 2481          -76.11596 (43.127519, -76.115957)
## 2482          -73.95238 (40.765446, -73.952377)
## 2483          -75.99576 (42.097763, -75.995758)
## 2484          -73.99515  (41.98048, -73.995155)
## 2485          -73.85599 (40.861217, -73.855995)
## 2486          -73.43559 (43.849476, -73.435593)
## 2487          -73.93404 (40.659435, -73.934036)
## 2488          -75.65462 (43.078709, -75.654625)
## 2489          -75.19670 (42.383835, -75.196701)
## 2490          -75.52625 (42.547398, -75.526253)
## 2491          -77.57565 (43.201909, -77.575655)
## 2492          -74.02683 (40.620693, -74.026825)
## 2493          -73.91233 (41.934223, -73.912331)
## 2494          -75.25688 (43.091022, -75.256882)
## 2495          -73.85603 (40.962402, -73.856026)
## 2496          -74.08544 (40.583042, -74.085442)
## 2497          -76.05598 (43.100786, -76.055984)
## 2498          -76.84213 (42.906805, -76.842128)
## 2499          -76.98607 (42.526142, -76.986069)
## 2500          -76.18144 (43.122807, -76.181442)
## 2501          -75.32716 (43.082912, -75.327164)
## 2502                 NA                        
## 2503          -73.29538  (40.710052, -73.29538)
## 2504          -74.34584  (43.025738, -74.34584)
## 2505          -77.77801 (42.803059, -77.778008)
## 2506          -76.82706 (42.100151, -76.827057)
## 2507          -73.83659 (40.839355, -73.836594)
## 2508          -76.48188  (42.476295, -76.48188)
## 2509          -74.02989 (41.495663, -74.029892)
## 2510          -73.94897 (40.613419, -73.948967)
## 2511          -76.26511 (42.105373, -76.265114)
## 2512          -73.89649 (40.855005, -73.896489)
## 2513          -73.01773 (40.765911, -73.017731)
## 2514          -77.09032  (43.026385, -77.09032)
## 2515          -76.24094 (43.168682, -76.240944)
## 2516          -73.94641 (40.807346, -73.946411)
## 2517          -73.82297 (40.583904, -73.822968)
## 2518          -73.87364 (42.692543, -73.873642)
## 2519          -77.59245 (43.111469, -77.592453)
## 2520          -73.11520 (40.909217, -73.115198)
## 2521          -74.00440  (40.72916, -74.004402)
## 2522          -73.06655 (40.764141, -73.066551)
## 2523          -73.91434 (40.656487, -73.914345)
## 2524          -73.89548 (41.524715, -73.895485)
## 2525          -73.66441 (41.384766, -73.664413)
## 2526          -75.31650   (42.6329, -75.316498)
## 2527          -73.70510   (40.7859, -73.705101)
## 2528          -74.00999 (40.651363, -74.009987)
## 2529          -76.20297 (42.600601, -76.202965)
## 2530          -74.77442 (44.807564, -74.774422)
## 2531          -73.91617 (41.233246, -73.916168)
## 2532          -73.96762 (40.796234, -73.967621)
## 2533          -77.71135 (43.147102, -77.711349)
## 2534          -73.55104 (41.850796, -73.551041)
## 2535          -78.83420 (42.942196, -78.834199)
## 2536          -75.17124 (44.594929, -75.171242)
## 2537          -78.80215  (42.94257, -78.802155)
## 2538          -73.57380 (41.434199, -73.573804)
## 2539          -73.93657 (40.802544, -73.936569)
## 2540          -73.98106  (40.74648, -73.981063)
## 2541          -73.78273 (40.674071, -73.782733)
## 2542          -73.82360 (40.765556, -73.823601)
## 2543          -73.98058 (44.267208, -73.980583)
## 2544          -74.00951 (40.630585, -74.009514)
## 2545          -75.52540 (42.527901, -75.525398)
## 2546          -77.70073  (43.18947, -77.700727)
## 2547          -73.91932 (40.837208, -73.919319)
## 2548          -77.59598 (43.151859, -77.595985)
## 2549          -77.23004 (42.952892, -77.230042)
## 2550          -73.91774  (40.704517, -73.91774)
## 2551          -73.72508 (42.772724, -73.725082)
## 2552          -74.19090 (42.937401, -74.190903)
## 2553          -73.87924 (41.007656, -73.879242)
## 2554          -73.57615  (40.67955, -73.576149)
## 2555          -76.19336 (43.032508, -76.193362)
## 2556          -75.91390 (43.957542, -75.913902)
## 2557          -73.85240 (40.667561, -73.852402)
## 2558          -77.61871 (43.105232, -77.618706)
## 2559          -73.99696 (40.722435, -73.996964)
## 2560          -79.46487 (42.208963, -79.464871)
## 2561          -73.92784 (40.854774, -73.927841)
## 2562          -73.61030 (40.654888, -73.610298)
## 2563            0.00000              (0.0, 0.0)
## 2564          -75.26303 (43.086555, -75.263031)
## 2565          -73.87909 (42.793575, -73.879089)
## 2566          -74.01338 (40.634033, -74.013376)
## 2567          -73.68723 (42.736294, -73.687233)
## 2568          -73.97904 (40.616574, -73.979043)
## 2569                 NA                        
## 2570          -73.99922 (41.929199, -73.999222)
## 2571          -73.95777  (40.64373, -73.957771)
## 2572          -78.72982  (42.991219, -78.72982)
## 2573          -75.64312  (43.075838, -75.64312)
## 2574          -73.65680 (41.328899, -73.656799)
## 2575          -77.61384 (43.140167, -77.613838)
## 2576          -73.85205 (41.191959, -73.852051)
## 2577          -76.05667 (42.084583, -76.056671)
## 2578          -75.08554 (42.452911, -75.085541)
## 2579          -73.96502 (40.683155, -73.965019)
## 2580          -79.05040   (43.094048, -79.0504)
## 2581          -73.77428 (40.714844, -73.774277)
## 2582                 NA                        
## 2583          -78.88582 (42.978001, -78.885818)
## 2584          -77.59759 (43.186954, -77.597588)
## 2585          -73.97866 (40.737877, -73.978661)
## 2586          -76.00617 (43.859173, -76.006172)
## 2587          -77.62404 (43.118511, -77.624039)
## 2588          -73.75573  (41.015186, -73.75573)
## 2589          -73.67475 (42.743008, -73.674751)
## 2590          -73.92839 (40.834835, -73.928391)
## 2591          -73.84692 (40.845497, -73.846916)
## 2592          -76.02954 (42.443099, -76.029541)
## 2593          -78.44683 (42.085884, -78.446831)
## 2594          -73.86626 (40.852451, -73.866257)
## 2595          -75.18942  (43.08913, -75.189423)
## 2596          -75.65215   (43.0924, -75.652145)
## 2597          -73.86108 (41.160657, -73.861082)
## 2598          -74.10902 (40.634666, -74.109016)
## 2599          -73.48041 (40.773899, -73.480408)
## 2600          -73.89462 (40.939388, -73.894615)
## 2601          -73.85787 (40.874581, -73.857873)
## 2602          -73.93619 (41.695889, -73.936195)
## 2603          -73.68631  (41.325966, -73.68631)
## 2604          -73.87418 (40.823925, -73.874184)
## 2605          -73.93688 (42.725334, -73.936882)
## 2606          -77.58646 (43.154247, -77.586456)
## 2607          -73.74927 (42.674271, -73.749268)
## 2608          -79.32718 (42.097885, -79.327179)
## 2609          -76.32769  (44.130699, -76.32769)
## 2610          -73.93134 (41.691441, -73.931345)
## 2611          -73.85754 (41.063942, -73.857544)
## 2612          -73.89811 (40.676289, -73.898109)
## 2613          -73.90428 (40.864326, -73.904282)
## 2614          -73.00693 (40.767181, -73.006935)
## 2615          -73.63324  (40.688408, -73.63324)
## 2616          -75.03652  (43.01537, -75.036523)
## 2617          -73.78583 (40.708519, -73.785828)
## 2618          -73.08730 (40.896858, -73.087303)
## 2619          -78.44418 (42.077347, -78.444183)
## 2620          -72.68407 (40.930679, -72.684074)
## 2621          -74.34340 (43.032804, -74.343398)
## 2622          -73.98477 (40.774315, -73.984766)
## 2623          -77.59379 (43.168003, -77.593788)
## 2624          -73.78654 (43.082829, -73.786537)
## 2625          -73.95818 (40.677261, -73.958176)
## 2626          -74.85514 (44.947311, -74.855141)
## 2627          -77.66681 (43.252987, -77.666809)
## 2628          -73.46012 (44.682777, -73.460121)
## 2629          -73.83337 (40.859093, -73.833366)
## 2630                 NA                        
## 2631                 NA                        
## 2632          -74.37066 (42.996929, -74.370659)
## 2633          -73.94049 (40.765057, -73.940491)
## 2634          -74.37566  (43.00095, -74.375664)
## 2635          -76.01881 (42.118553, -76.018806)
## 2636          -73.89160 (40.821728, -73.891602)
## 2637          -77.59654 (43.116367, -77.596542)
## 2638          -75.95912 (42.115063, -75.959122)
## 2639          -76.79369  (42.91156, -76.793694)
## 2640          -74.03543  (41.13995, -74.035431)
## 2641          -73.21135 (40.729557, -73.211349)
## 2642          -73.89792 (40.880001, -73.897919)
## 2643          -76.20016 (42.605091, -76.200157)
## 2644          -77.59935  (43.155251, -77.59935)
## 2645          -77.11007 (43.047311, -77.110075)
## 2646          -78.21178 (43.240658, -78.211777)
## 2647          -75.91473 (43.950886, -75.914726)
## 2648          -74.01188 (40.677513, -74.011879)
## 2649          -73.42272 (40.684139, -73.422721)
## 2650          -74.33703  (41.38979, -74.337029)
## 2651                 NA                        
## 2652          -73.53087  (40.66861, -73.530869)
## 2653          -73.64438 (40.748344, -73.644385)
## 2654          -75.65197  (43.077267, -75.65197)
## 2655          -73.25458 (40.806873, -73.254578)
## 2656          -73.99194 (40.628391, -73.991936)
## 2657          -76.56880 (42.930389, -76.568802)
## 2658          -78.00619 (43.076946, -78.006191)
## 2659          -75.52587 (42.529236, -75.525871)
## 2660          -74.02755  (41.493599, -74.02755)
## 2661          -73.19930 (40.776497, -73.199295)
## 2662          -73.85902 (40.856792, -73.859024)
## 2663          -73.94572 (42.814838, -73.945724)
## 2664          -77.60706 (43.112461, -77.607056)
## 2665          -73.70000 (40.758892, -73.699997)
## 2666          -74.37125 (43.005714, -74.371254)
## 2667          -73.59312  (40.73576, -73.593124)
## 2668          -75.89523 (42.159592, -75.895233)
## 2669          -73.88666 (41.540852, -73.886665)
## 2670          -73.73195 (40.712254, -73.731949)
## 2671          -73.91696 (40.863728, -73.916962)
## 2672          -75.21138  (43.079441, -75.21138)
## 2673          -73.24320  (40.81517, -73.243195)
## 2674          -78.13269  (42.738552, -78.13269)
## 2675          -73.63525  (40.807203, -73.63525)
## 2676          -74.06691  (41.115959, -74.06691)
## 2677                 NA                        
## 2678          -75.89108 (42.095612, -75.891075)
## 2679          -76.76907 (43.226799, -76.769073)
## 2680          -78.42996 (42.078884, -78.429955)
## 2681          -74.33412 (43.044483, -74.334122)
## 2682          -75.06025 (42.457203, -75.060249)
## 2683          -73.90005  (40.929842, -73.90005)
## 2684          -74.29516  (44.849921, -74.29516)
## 2685          -74.01984 (40.639682, -74.019841)
## 2686          -73.99924 (41.922276, -73.999237)
## 2687          -73.79617 (40.739449, -73.796165)
## 2688          -73.98653 (40.692528, -73.986526)
## 2689          -78.87495 (42.947815, -78.874954)
## 2690          -73.95036 (40.786766, -73.950356)
## 2691          -73.96281 (40.804531, -73.962807)
## 2692          -73.98988 (40.744228, -73.989883)
## 2693          -77.59829 (43.112314, -77.598292)
## 2694          -73.89796 (40.696907, -73.897957)
## 2695          -73.96984 (40.619057, -73.969841)
## 2696          -73.82690 (40.879047, -73.826904)
## 2697          -75.05307 (42.447006, -75.053065)
## 2698          -73.91245 (40.613831, -73.912445)
## 2699          -76.27161 (43.177223, -76.271606)
## 2700          -72.94091  (40.775475, -72.94091)
## 2701          -73.27101 (43.404465, -73.271011)
## 2702          -73.91957 (40.698678, -73.919565)
## 2703          -75.39593 (43.636304, -75.395925)
## 2704          -73.92539  (41.24361, -73.925385)
## 2705          -73.93333 (40.794697, -73.933334)
## 2706          -73.64380  (40.73819, -73.643799)
## 2707          -73.76350 (42.638474, -73.763504)
## 2708          -74.36739 (41.355576, -74.367393)
## 2709                 NA                        
## 2710          -73.62159  (40.871731, -73.62159)
## 2711          -73.23570 (40.730263, -73.235695)
## 2712          -73.95461 (40.819843, -73.954613)
## 2713          -73.93583  (40.83968, -73.935829)
## 2714          -73.92258 (41.886917, -73.922583)
## 2715          -73.76835 (43.492298, -73.768349)
## 2716          -74.84746 (43.043964, -74.847458)
## 2717          -73.76310   (41.024117, -73.7631)
## 2718          -73.90299 (40.889484, -73.902992)
## 2719          -73.99460 (40.769203, -73.994598)
## 2720          -77.61214 (43.125015, -77.612144)
## 2721          -72.77763 (40.808712, -72.777634)
## 2722          -73.70309 (42.631599, -73.703094)
## 2723          -73.89214 (41.926517, -73.892136)
## 2724          -73.82071 (40.699528, -73.820709)
## 2725          -73.63081 (40.867992, -73.630806)
## 2726          -79.57241 (42.328117, -79.572411)
## 2727          -73.95681 (40.764386, -73.956812)
## 2728          -74.77440 (44.807465, -74.774399)
## 2729                 NA                        
## 2730          -73.93442 (41.691917, -73.934418)
## 2731          -73.62255 (40.811413, -73.622551)
## 2732          -73.62301 (40.874603, -73.623009)
## 2733          -77.05762  (42.66309, -77.057617)
## 2734          -73.98273 (40.754318, -73.982727)
## 2735          -77.00654 (42.859986, -77.006536)
## 2736          -73.88580 (40.815781, -73.885796)
## 2737          -73.66221 (40.706581, -73.662209)
## 2738          -76.03795 (43.109051, -76.037949)
## 2739                 NA                        
## 2740          -73.76487  (42.859798, -73.76487)
## 2741          -76.14548 (43.078918, -76.145485)
## 2742          -78.84995  (42.92905, -78.849953)
## 2743          -74.98910   (42.854106, -74.9891)
## 2744          -74.17554 (40.612578, -74.175539)
## 2745          -73.94649 (40.807384, -73.946495)
## 2746          -73.92821  (42.801914, -73.92821)
## 2747          -73.97211 (40.749851, -73.972107)
## 2748          -74.00923 (40.645313, -74.009232)
## 2749          -73.99078 (40.690632, -73.990776)
## 2750          -73.99771 (40.631046, -73.997711)
## 2751          -75.49815 (43.795677, -75.498146)
## 2752          -73.89641 (40.919273, -73.896408)
## 2753          -73.69417 (41.008499, -73.694168)
## 2754          -73.98471 (40.732189, -73.984711)
## 2755          -77.10014 (43.062256, -77.100143)
## 2756          -73.78303 (42.245804, -73.783035)
## 2757          -73.68927  (40.759109, -73.68927)
## 2758          -76.46619 (42.475258, -76.466187)
## 2759          -73.85766 (40.819778, -73.857658)
## 2760          -75.33115   (43.48542, -75.33115)
## 2761          -73.84757 (40.775177, -73.847572)
## 2762          -73.84947 (40.740398, -73.849472)
## 2763          -78.71482 (42.956619, -78.714821)
## 2764          -73.84466 (40.847294, -73.844658)
## 2765          -77.68627 (42.826077, -77.686272)
## 2766          -75.91422 (42.090877, -75.914219)
## 2767          -78.78424 (42.914642, -78.784241)
## 2768          -78.81345 (42.944572, -78.813449)
## 2769          -75.17923 (43.250642, -75.179226)
## 2770          -73.76120   (41.037411, -73.7612)
## 2771                 NA                        
## 2772          -73.94146 (40.841926, -73.941462)
## 2773          -73.88506 (40.846352, -73.885063)
## 2774          -72.88818 (40.841022, -72.888176)
## 2775          -77.01109 (42.865658, -77.011086)
## 2776          -73.99354 (40.725521, -73.993538)
## 2777          -73.82704 (40.767384, -73.827042)
##  [ reached 'max' / getOption("max.print") -- omitted 1213 rows ]
# Get the names of the columns
col_names <- colnames(df)

# Print the names of the columns
print(col_names)
##  [1] "Facility.ID"                  "Facility.Name"               
##  [3] "Short.Description"            "Description"                 
##  [5] "Facility.Open.Date"           "Facility.Address.1"          
##  [7] "Facility.Address.2"           "Facility.City"               
##  [9] "Facility.State"               "Facility.Zip.Code"           
## [11] "Facility.Phone.Number"        "Facility.Fax.Number"         
## [13] "Facility.Website"             "Facility.County.Code"        
## [15] "Facility.County"              "Regional.Office.ID"          
## [17] "Regional.Office"              "Main.Site.Name"              
## [19] "Main.Site.Facility.ID"        "Operating.Certificate.Number"
## [21] "Operator.Name"                "Operator.Address.1"          
## [23] "Operator.Address.2"           "Operator.City"               
## [25] "Operator.State"               "Operator.Zip.Code"           
## [27] "Cooperator.Name"              "Cooperator.Address"          
## [29] "Cooperator.Address.2"         "Cooperator.City"             
## [31] "Cooperator.State"             "Cooperator.Zip.Code"         
## [33] "Ownership.Type"               "Facility.Latitude"           
## [35] "Facility.Longitude"           "Facility.Location"
# need to recieve the columns called "Facility.Latitude" "Facility.Longitude" 

# need to create a new dataframe with only the latitude and longitude but also remove the NAs
# coordinates <- df[, c("Facility.Name", "Facility.Zip.Code", "Facility.Latitude", "Facility.Longitude")] # my new dataframe
# removed_NA_coordinates <- coordinates[complete.cases(coordinates),] # the complete.cases simply clears all the NAs

# GO BACK AND MAKE SURE THAT THE DATAFRAME HAS ALL OF THE COLUMNS 
new_df <- df[complete.cases(df),]

# # Print the column names and the cleaned data
# print(colnames(removed_NA_coordinates))

library(janitor)
## 
## Attaching package: 'janitor'
## The following objects are masked from 'package:stats':
## 
##     chisq.test, fisher.test
library(rstudioapi)

# # Selecting only the coordinates
# only_coordinates <- removed_NA_coordinates %>%
#   select(Facility.Latitude, Facility.Longitude)
# 
# # Creating a spatial object from a lat/lon table
# my_sf_object <- st_as_sf(only_coordinates, coords = c("Facility.Longitude", "Facility.Latitude"))

# new point coordinate file
my_sf_object_2 <- st_as_sf(new_df, coords = c("Facility.Longitude", "Facility.Latitude")) # converts to the sf object here 
print(colnames(my_sf_object_2)) # the point data is now called geometry
##  [1] "Facility.ID"                  "Facility.Name"               
##  [3] "Short.Description"            "Description"                 
##  [5] "Facility.Open.Date"           "Facility.Address.1"          
##  [7] "Facility.Address.2"           "Facility.City"               
##  [9] "Facility.State"               "Facility.Zip.Code"           
## [11] "Facility.Phone.Number"        "Facility.Fax.Number"         
## [13] "Facility.Website"             "Facility.County.Code"        
## [15] "Facility.County"              "Regional.Office.ID"          
## [17] "Regional.Office"              "Main.Site.Name"              
## [19] "Main.Site.Facility.ID"        "Operating.Certificate.Number"
## [21] "Operator.Name"                "Operator.Address.1"          
## [23] "Operator.Address.2"           "Operator.City"               
## [25] "Operator.State"               "Operator.Zip.Code"           
## [27] "Cooperator.Name"              "Cooperator.Address"          
## [29] "Cooperator.Address.2"         "Cooperator.City"             
## [31] "Cooperator.State"             "Cooperator.Zip.Code"         
## [33] "Ownership.Type"               "Facility.Location"           
## [35] "geometry"
st_crs(my_sf_object_2) <- 4326 # we can use EPSG as numeric here

# Alternatively, we can use the sf::st_set_crs method
st_set_crs(my_sf_object_2, 4326)
## Simple feature collection with 100 features and 34 fields
## Geometry type: POINT
## Dimension:     XY
## Bounding box:  xmin: -79.24509 ymin: 40.62069 xmax: -72.7009 ymax: 44.92367
## Geodetic CRS:  WGS 84
## First 10 features:
##     Facility.ID                               Facility.Name Short.Description
## 67         9381             Clifton Springs Family Medicine           HOSP-EC
## 150        9527       FSLH - St. Luke's Home Renal Dialysis           HOSP-EC
## 208        9056           Wayne Medical Group - Orthopedics           HOSP-EC
## 233        9428                 NSUH LIJ Imaging at Syosset           HOSP-EC
## 299         102                      UPMC Chautauqua at WCA              HOSP
## 303        9377 North Shore/LIJ Imaging Center at Glen Cove           HOSP-EC
## 324        9225                       AMS Mammography Suite           HOSP-EC
## 325        9371 Rochester General Imaging at Alexander Park           HOSP-EC
## 357        9624          Massena Hospital Outpatient Center           HOSP-EC
## 376        9146    Valley Health Services ADHC Little Falls             ADHCP
##                                 Description Facility.Open.Date
## 67                Hospital Extension Clinic         08/03/2012
## 150               Hospital Extension Clinic         08/21/2013
## 208               Hospital Extension Clinic         06/15/2009
## 233               Hospital Extension Clinic         02/04/2013
## 299                                Hospital         08/17/1990
## 303               Hospital Extension Clinic         05/16/2012
## 324               Hospital Extension Clinic         01/24/2011
## 325               Hospital Extension Clinic         08/02/2012
## 357               Hospital Extension Clinic         12/31/2013
## 376 Adult Day Health Care Program - Offsite         02/10/2010
##           Facility.Address.1 Facility.Address.2 Facility.City Facility.State
## 67     165 East Union Street                           Newark       New York
## 150     1650 Champlin Avenue                            Utica       New York
## 208 1204 Driving Park Avenue                           Newark       New York
## 233      100 Lafayette Drive                          Syosset       New York
## 299        51 Glasgow Avenue                        Jamestown       New York
## 303         10 Medical Plaza                        Glen Cove       New York
## 324       8 Dennison Parkway                          Corning       New York
## 325       214 Alexander Park                        Rochester       New York
## 357       271 Andrews Street                          Massena       New York
## 376       140 Burwell Street                     Little Falls       New York
##     Facility.Zip.Code Facility.Phone.Number Facility.Fax.Number
## 67              14513            3153328041          3153328150
## 150             13502            3156245640          3156245735
## 208             14513            5859223409          5859229489
## 233             11797            5166223456          5166223450
## 299             14701            7164870141          7166648336
## 303             11542            5166740500          5166747546
## 324             14830            6077374231          6077374447
## 325             14607            5859227900          5859227905
## 357             13662            3157698950          3157696039
## 376             13365            3158232080          3158232139
##     Facility.Website Facility.County.Code Facility.County Regional.Office.ID
## 67                                     58           Wayne                  2
## 150                                    32          Oneida                  3
## 208                                    58           Wayne                  2
## 233                                    29          Nassau                  7
## 299                                     6      Chautauqua                  1
## 303                                    29          Nassau                  7
## 324                                    50         Steuben                  2
## 325                                    27          Monroe                  2
## 357                                    44  Saint Lawrence                  3
## 376                                    21        Herkimer                  3
##                                     Regional.Office
## 67              Western Regional Office - Rochester
## 150                Central New York Regional Office
## 208             Western Regional Office - Rochester
## 233 Metropolitan Area Regional Office - Long Island
## 299               Western Regional Office - Buffalo
## 303 Metropolitan Area Regional Office - Long Island
## 324             Western Regional Office - Rochester
## 325             Western Regional Office - Rochester
## 357                Central New York Regional Office
## 376                Central New York Regional Office
##                                   Main.Site.Name Main.Site.Facility.ID
## 67           Clifton Springs Hospital and Clinic                   676
## 150 Faxton-St Lukes Healthcare St Lukes Division                   599
## 208                   Rochester General Hospital                   411
## 233              North Shore University Hospital                   541
## 299                       UPMC Chautauqua at WCA                   103
## 303                           Glen Cove Hospital                   490
## 324                   Arnot Ogden Medical Center                   116
## 325                   Rochester General Hospital                   411
## 357                       Massena Hospital, Inc.                   804
## 376                   Valley Health Services Inc                  3170
##     Operating.Certificate.Number                       Operator.Name
## 67                      3421000H       Clifton Springs Sanitarium Co
## 150                     3202003H          Faxton-St Lukes Healthcare
## 208                     2701003H      Rochester General Hospital Inc
## 233                     2951001H North Shore University Hospital Inc
## 299                     0602001H              UPMC Chautauqua at WCA
## 303                     2901000H                  Glen Cove Hospital
## 324                     0701000H          Arnot Ogden Medical Center
## 325                     2701003H      Rochester General Hospital Inc
## 357                     4402001H              Massena Hospital, Inc.
## 376                     2124301N          Valley Health Services Inc
##         Operator.Address.1 Operator.Address.2   Operator.City Operator.State
## 67          2 Coulter Road                    Clifton Springs       New York
## 150   1656 Champlin Avenue                       New Hartford       New York
## 208        905 Culver Road                          Rochester       New York
## 233    300 Community Drive                          Manhasset       New York
## 299       207 Foote Avenue                          Jamestown       New York
## 303        St Andrews Lane                          Glen Cove       New York
## 324         600 Roe Avenue                             Elmira       New York
## 325        905 Culver Road                          Rochester       New York
## 357       1 Hospital Drive                            Massena       New York
## 376 690 West German Street                           Herkimer       New York
##     Operator.Zip.Code                  Cooperator.Name Cooperator.Address
## 67              14432        Rochester Regional Health  89 Genesee Street
## 150             13503      Mohawk Valley Health System  1656 Champlin Ave
## 208             14609        Rochester Regional Health  89 Genesee Street
## 233             11030       Northwell Healthcare, Inc.   2000 Marcus Ave.
## 299             14701   UPMC Chautauqua Services, Inc.   207 Foote Avenue
## 303             11542       Northwell Healthcare, Inc.   2000 Marcus Ave.
## 324             14905                Arnot Health Inc.     600 Roe Avenue
## 325             14609        Rochester Regional Health  89 Genesee Street
## 357             13662 St. Lawrence Health System, Inc.    50 Leroy Street
## 376             13350       Bassett Healthcare Network      1 Atwell Road
##     Cooperator.Address.2 Cooperator.City Cooperator.State Cooperator.Zip.Code
## 67                             Rochester         New York               14611
## 150                                Utica         New York               13502
## 208                            Rochester         New York               14611
## 233                        New Hyde Park         New York               11042
## 299                            Jamestown         New York               14701
## 303                        New Hyde Park         New York               11042
## 324                               Elmira         New York               14905
## 325                            Rochester         New York               14611
## 357                              Potsdam         New York               13676
## 376                          Cooperstown         New York               13326
##                 Ownership.Type       Facility.Location
## 67  Not for Profit Corporation (43.046654, -77.093529)
## 150 Not for Profit Corporation (43.099613, -75.275528)
## 208 Not for Profit Corporation (43.059635, -77.100792)
## 233 Not for Profit Corporation (40.811646, -73.509987)
## 299 Not for Profit Corporation (42.091541, -79.245094)
## 303 Not for Profit Corporation (40.874603, -73.623009)
## 324 Not for Profit Corporation   (42.1423, -77.054403)
## 325 Not for Profit Corporation  (43.14917, -77.597397)
## 357 Not for Profit Corporation (44.923389, -74.915283)
## 376 Not for Profit Corporation (43.043964, -74.847458)
##                       geometry
## 67  POINT (-77.09353 43.04665)
## 150 POINT (-75.27553 43.09961)
## 208 POINT (-77.10079 43.05964)
## 233 POINT (-73.50999 40.81165)
## 299 POINT (-79.24509 42.09154)
## 303  POINT (-73.62301 40.8746)
## 324   POINT (-77.0544 42.1423)
## 325  POINT (-77.5974 43.14917)
## 357 POINT (-74.91528 44.92339)
## 376 POINT (-74.84746 43.04396)
st_crs(my_sf_object_2)
## Coordinate Reference System:
##   User input: EPSG:4326 
##   wkt:
## GEOGCRS["WGS 84",
##     ENSEMBLE["World Geodetic System 1984 ensemble",
##         MEMBER["World Geodetic System 1984 (Transit)"],
##         MEMBER["World Geodetic System 1984 (G730)"],
##         MEMBER["World Geodetic System 1984 (G873)"],
##         MEMBER["World Geodetic System 1984 (G1150)"],
##         MEMBER["World Geodetic System 1984 (G1674)"],
##         MEMBER["World Geodetic System 1984 (G1762)"],
##         MEMBER["World Geodetic System 1984 (G2139)"],
##         ELLIPSOID["WGS 84",6378137,298.257223563,
##             LENGTHUNIT["metre",1]],
##         ENSEMBLEACCURACY[2.0]],
##     PRIMEM["Greenwich",0,
##         ANGLEUNIT["degree",0.0174532925199433]],
##     CS[ellipsoidal,2],
##         AXIS["geodetic latitude (Lat)",north,
##             ORDER[1],
##             ANGLEUNIT["degree",0.0174532925199433]],
##         AXIS["geodetic longitude (Lon)",east,
##             ORDER[2],
##             ANGLEUNIT["degree",0.0174532925199433]],
##     USAGE[
##         SCOPE["Horizontal component of 3D system."],
##         AREA["World."],
##         BBOX[-90,-180,90,180]],
##     ID["EPSG",4326]]
# Write the dataframe to a CSV file
# write.csv(my_sf_object_2, file = "/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/NYS_health_facilities2.csv", row.names = FALSE)

task 4: Read and process the NYS retail food stores data. Create sf objects from geographic coordinates for NYC.

#df <- read.csv('./R-Spatial_I_Lab/NYS_Health_Facility.csv')

df2 <- read.csv('./R-Spatial_I_Lab/nys_retail_food_store_xy.csv')
print(colnames(df2)) 
##  [1] "County"             "License.Number"     "Operation.Type"    
##  [4] "Establishment.Type" "Entity.Name"        "DBA.Name"          
##  [7] "Street.Number"      "Street.Name"        "Address.Line.2"    
## [10] "Address.Line.3"     "City"               "State"             
## [13] "Zip.Code"           "Square.Footage"     "Location"          
## [16] "Coords"             "Y"                  "X"
# i need to remove the "Address.Line.2" "Address.Line.3" columns
df22 <- subset(df2, select = -c(Address.Line.2, Address.Line.3))

new_df2 <- df22[complete.cases(df22),]

my_sf_object_3 <- st_as_sf(new_df2, coords = c("X", "Y")) # converts to the sf object here 
print(colnames(my_sf_object_3)) # now has the points called geometry
##  [1] "County"             "License.Number"     "Operation.Type"    
##  [4] "Establishment.Type" "Entity.Name"        "DBA.Name"          
##  [7] "Street.Number"      "Street.Name"        "City"              
## [10] "State"              "Zip.Code"           "Square.Footage"    
## [13] "Location"           "Coords"             "geometry"
st_crs(my_sf_object_3) <- 4326 # we can use EPSG as numeric here

# Alternatively, we can use the sf::st_set_crs method
st_set_crs(my_sf_object_3, 4326)
## Simple feature collection with 23972 features and 14 fields
## Geometry type: POINT
## Dimension:     XY
## Bounding box:  xmin: -79.75953 ymin: 40.50782 xmax: -71.93873 ymax: 44.99484
## Geodetic CRS:  WGS 84
## First 10 features:
##    County License.Number Operation.Type Establishment.Type
## 1  Albany         733149          Store             A     
## 2  Albany         704590          Store             JAC   
## 3  Albany         727909          Store             JAC   
## 4  Albany         720557          Store             JAC   
## 5  Albany          15890          Store             A     
## 6  Albany         735254          Store             JAC   
## 7  Albany         708848          Store             JAC   
## 9  Albany         713889          Store             JAC   
## 10 Albany         715759          Store             JAC   
## 11 Albany         723927          Store             JAC   
##                          Entity.Name                DBA.Name Street.Number
## 1  SPEEDWAY LLC                                        12110           719
## 2  1250 SELKIRK INC                  1250 SELKIRK                     1250
## 3  RED-KAP SALES INC                 1667 GENERAL STORE               1667
## 4  SAEED SADIQ, SAIKA NOREEN         19 STREET QUICK STOP              315
## 5  AZIZ MOHAMMAD S                   24 HR ALBANY NEWS                   8
## 6  7-ELEVEN INC                      7-ELEVEN                          477
## 7  ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @ PRICE CHOPP           873
## 9  ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @ PRICE CHOPP           329
## 10 ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @PRICE CHOPPE          1395
## 11 ADVANCED FRESH CONCEPTS FRAN CORP AFC SUSHI@ PRICE CHOPPE          2080
##                        Street.Name               City State Zip.Code
## 1    NEW LOUDON RD                 LATHAM                NY    12110
## 2     RTE 9W & 396                 SELKIRK               NY    12158
## 3     WESTERN AVENUE               ALBANY                NY    12203
## 4    19TH STREET                   WATERVLIET            NY    12189
## 5  CENTRAL AVE                     ALBANY                NY    12210
## 6    DELAWARE AVE                  ALBANY                NY    12209
## 7          NEW LOUDON RD           LATHAM                NY    12110
## 9        GLENMONT RD               GLENMONT              NY    12077
## 10        NEW SCOTLAND RD          SLINGERLANDS          NY    12159
## 11    WESTERN AVE                  GUILDERLAND           NY    12084
##    Square.Footage
## 1             300
## 2           3,000
## 3           2,000
## 4           1,200
## 5           1,800
## 6               0
## 7               0
## 9               0
## 10          2,000
## 11            400
##                                                                 Location
## 1           719 NEW LOUDON RD\nLATHAM, NY 12110\n(42.739618, -73.761949)
## 2                 1250 RTE 9 W\nSELKIRK, NY 12158\n(42.547591, -73.8073)
## 3         1667 WESTERN AVENUE\nALBANY, NY 12203\n(42.686553, -73.854665)
## 4          315 19TH STREET\nWATERVLIET, NY 12189\n(42.73063, -73.703443)
## 5               8 CENTRAL AVE\nALBANY, NY 12210\n(42.657136, -73.763712)
## 6            477 DELAWARE AVE\nALBANY, NY 12209\n(42.639931, -73.784962)
## 7            873 NEW LOUDON RD\nLATHAM, NY 12110\n(42.75459, -73.758714)
## 9           329 GLENMONT RD\nGLENMONT, NY 12077\n(42.601045, -73.790364)
## 10 1395 NEW SCOTLAND RD\nSLINGERLANDS, NY 12159\n(42.636568, -73.856367)
## 11       2080 WESTERN AVE\nGUILDERLAND, NY 12084\n(42.698502, -73.89159)
##                   Coords                   geometry
## 1  42.739618, -73.761949 POINT (-73.76195 42.73962)
## 2    42.547591, -73.8073  POINT (-73.8073 42.54759)
## 3  42.686553, -73.854665 POINT (-73.85466 42.68655)
## 4   42.73063, -73.703443 POINT (-73.70344 42.73063)
## 5  42.657136, -73.763712 POINT (-73.76371 42.65714)
## 6  42.639931, -73.784962 POINT (-73.78496 42.63993)
## 7   42.75459, -73.758714 POINT (-73.75871 42.75459)
## 9  42.601045, -73.790364 POINT (-73.79036 42.60104)
## 10 42.636568, -73.856367 POINT (-73.85637 42.63657)
## 11  42.698502, -73.89159  POINT (-73.89159 42.6985)
st_crs(my_sf_object_3)
## Coordinate Reference System:
##   User input: EPSG:4326 
##   wkt:
## GEOGCRS["WGS 84",
##     ENSEMBLE["World Geodetic System 1984 ensemble",
##         MEMBER["World Geodetic System 1984 (Transit)"],
##         MEMBER["World Geodetic System 1984 (G730)"],
##         MEMBER["World Geodetic System 1984 (G873)"],
##         MEMBER["World Geodetic System 1984 (G1150)"],
##         MEMBER["World Geodetic System 1984 (G1674)"],
##         MEMBER["World Geodetic System 1984 (G1762)"],
##         MEMBER["World Geodetic System 1984 (G2139)"],
##         ELLIPSOID["WGS 84",6378137,298.257223563,
##             LENGTHUNIT["metre",1]],
##         ENSEMBLEACCURACY[2.0]],
##     PRIMEM["Greenwich",0,
##         ANGLEUNIT["degree",0.0174532925199433]],
##     CS[ellipsoidal,2],
##         AXIS["geodetic latitude (Lat)",north,
##             ORDER[1],
##             ANGLEUNIT["degree",0.0174532925199433]],
##         AXIS["geodetic longitude (Lon)",east,
##             ORDER[2],
##             ANGLEUNIT["degree",0.0174532925199433]],
##     USAGE[
##         SCOPE["Horizontal component of 3D system."],
##         AREA["World."],
##         BBOX[-90,-180,90,180]],
##     ID["EPSG",4326]]
# write.csv(my_sf_object_3, file = "/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/NYS_Retail_Stores.csv", row.names = FALSE)

task 5: Use simple mapping method, either based on ggmap+ggplot or mapview, with a basemap to verify the above datasets in terms of their geometry locations.

my_sf_object_3
## Simple feature collection with 23972 features and 14 fields
## Geometry type: POINT
## Dimension:     XY
## Bounding box:  xmin: -79.75953 ymin: 40.50782 xmax: -71.93873 ymax: 44.99484
## Geodetic CRS:  WGS 84
## First 10 features:
##    County License.Number Operation.Type Establishment.Type
## 1  Albany         733149          Store             A     
## 2  Albany         704590          Store             JAC   
## 3  Albany         727909          Store             JAC   
## 4  Albany         720557          Store             JAC   
## 5  Albany          15890          Store             A     
## 6  Albany         735254          Store             JAC   
## 7  Albany         708848          Store             JAC   
## 9  Albany         713889          Store             JAC   
## 10 Albany         715759          Store             JAC   
## 11 Albany         723927          Store             JAC   
##                          Entity.Name                DBA.Name Street.Number
## 1  SPEEDWAY LLC                                        12110           719
## 2  1250 SELKIRK INC                  1250 SELKIRK                     1250
## 3  RED-KAP SALES INC                 1667 GENERAL STORE               1667
## 4  SAEED SADIQ, SAIKA NOREEN         19 STREET QUICK STOP              315
## 5  AZIZ MOHAMMAD S                   24 HR ALBANY NEWS                   8
## 6  7-ELEVEN INC                      7-ELEVEN                          477
## 7  ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @ PRICE CHOPP           873
## 9  ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @ PRICE CHOPP           329
## 10 ADVANCED FRESH CONCEPTS FRANCHISE AFC SUSHI @PRICE CHOPPE          1395
## 11 ADVANCED FRESH CONCEPTS FRAN CORP AFC SUSHI@ PRICE CHOPPE          2080
##                        Street.Name               City State Zip.Code
## 1    NEW LOUDON RD                 LATHAM                NY    12110
## 2     RTE 9W & 396                 SELKIRK               NY    12158
## 3     WESTERN AVENUE               ALBANY                NY    12203
## 4    19TH STREET                   WATERVLIET            NY    12189
## 5  CENTRAL AVE                     ALBANY                NY    12210
## 6    DELAWARE AVE                  ALBANY                NY    12209
## 7          NEW LOUDON RD           LATHAM                NY    12110
## 9        GLENMONT RD               GLENMONT              NY    12077
## 10        NEW SCOTLAND RD          SLINGERLANDS          NY    12159
## 11    WESTERN AVE                  GUILDERLAND           NY    12084
##    Square.Footage
## 1             300
## 2           3,000
## 3           2,000
## 4           1,200
## 5           1,800
## 6               0
## 7               0
## 9               0
## 10          2,000
## 11            400
##                                                                 Location
## 1           719 NEW LOUDON RD\nLATHAM, NY 12110\n(42.739618, -73.761949)
## 2                 1250 RTE 9 W\nSELKIRK, NY 12158\n(42.547591, -73.8073)
## 3         1667 WESTERN AVENUE\nALBANY, NY 12203\n(42.686553, -73.854665)
## 4          315 19TH STREET\nWATERVLIET, NY 12189\n(42.73063, -73.703443)
## 5               8 CENTRAL AVE\nALBANY, NY 12210\n(42.657136, -73.763712)
## 6            477 DELAWARE AVE\nALBANY, NY 12209\n(42.639931, -73.784962)
## 7            873 NEW LOUDON RD\nLATHAM, NY 12110\n(42.75459, -73.758714)
## 9           329 GLENMONT RD\nGLENMONT, NY 12077\n(42.601045, -73.790364)
## 10 1395 NEW SCOTLAND RD\nSLINGERLANDS, NY 12159\n(42.636568, -73.856367)
## 11       2080 WESTERN AVE\nGUILDERLAND, NY 12084\n(42.698502, -73.89159)
##                   Coords                   geometry
## 1  42.739618, -73.761949 POINT (-73.76195 42.73962)
## 2    42.547591, -73.8073  POINT (-73.8073 42.54759)
## 3  42.686553, -73.854665 POINT (-73.85466 42.68655)
## 4   42.73063, -73.703443 POINT (-73.70344 42.73063)
## 5  42.657136, -73.763712 POINT (-73.76371 42.65714)
## 6  42.639931, -73.784962 POINT (-73.78496 42.63993)
## 7   42.75459, -73.758714 POINT (-73.75871 42.75459)
## 9  42.601045, -73.790364 POINT (-73.79036 42.60104)
## 10 42.636568, -73.856367 POINT (-73.85637 42.63657)
## 11  42.698502, -73.89159  POINT (-73.89159 42.6985)
print(colnames(my_sf_object_3))
##  [1] "County"             "License.Number"     "Operation.Type"    
##  [4] "Establishment.Type" "Entity.Name"        "DBA.Name"          
##  [7] "Street.Number"      "Street.Name"        "City"              
## [10] "State"              "Zip.Code"           "Square.Footage"    
## [13] "Location"           "Coords"             "geometry"
library(ggplot2)

# Create a base map with red points for my_sf_object_3
# This is the ggplot style plotting. Again, will come back on this for more.
base_map <- ggplot() +
  geom_sf(data = my_sf_object_3, aes(color = "red"), inherit.aes = FALSE) +
  coord_sf(crs = st_crs(my_sf_object_3))

# Plot the map with red points
print(base_map)

# Create a base map with black points for my_sf_object_2
base_map2 <- ggplot() +
  geom_sf(data = my_sf_object_2, aes(color = "black"), inherit.aes = FALSE) +
  coord_sf(crs = st_crs(my_sf_object_2))

# Plot the map with black points
print(base_map2)

# I DONT KNOW WHY BOTH COMING OUT THE SAME COLOR?????

task 6:Save the three sf objects in a RData file or in a single GeoPackage file/database.

# my_sf_object_3
# my_sf_object_2
# nyc_sf


# st_write(my_sf_object_3, "./R-Spatial_I_Lab/", "NYS_Health_Facility", driver = "ESRI Shapefile")
# st_write(my_sf_object_2, "./R-Spatial_I_Lab/", "nys_retail_food_store_xy", driver = "ESRI Shapefile")
# st_write(nyc_sf, "./R-Spatial_I_Lab/", "NYC_object", driver = "ESRI Shapefile")

# to force the save: 
st_write(my_sf_object_3, "./R-Spatial_I_Lab/NYS_Health_Facility.shp", delete_layer = TRUE)
## Warning in abbreviate_shapefile_names(obj): Field names abbreviated for ESRI
## Shapefile driver
## Deleting layer `NYS_Health_Facility' using driver `ESRI Shapefile'
## Writing layer `NYS_Health_Facility' to data source 
##   `./R-Spatial_I_Lab/NYS_Health_Facility.shp' using driver `ESRI Shapefile'
## Writing 23972 features with 14 fields and geometry type Point.
st_write(my_sf_object_2, "./R-Spatial_I_Lab/nys_retail_food_store_xy.shp", delete_layer = TRUE)
## Warning in abbreviate_shapefile_names(obj): Field names abbreviated for ESRI
## Shapefile driver
## Deleting layer `nys_retail_food_store_xy' using driver `ESRI Shapefile'
## Writing layer `nys_retail_food_store_xy' to data source 
##   `./R-Spatial_I_Lab/nys_retail_food_store_xy.shp' using driver `ESRI Shapefile'
## Writing 100 features with 34 fields and geometry type Point.
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153328041 of field
## Fcl_P_N of feature 0 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153328150 of field
## Fcl_F_N of feature 0 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245640 of field
## Fcl_P_N of feature 1 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245735 of field
## Fcl_F_N of feature 1 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859223409 of field
## Fcl_P_N of feature 2 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229489 of field
## Fcl_F_N of feature 2 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166223456 of field
## Fcl_P_N of feature 3 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166223450 of field
## Fcl_F_N of feature 3 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7164870141 of field
## Fcl_P_N of feature 4 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7166648336 of field
## Fcl_F_N of feature 4 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166740500 of field
## Fcl_P_N of feature 5 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166747546 of field
## Fcl_F_N of feature 5 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077374231 of field
## Fcl_P_N of feature 6 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077374447 of field
## Fcl_F_N of feature 6 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859227900 of field
## Fcl_P_N of feature 7 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859227905 of field
## Fcl_F_N of feature 7 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3157698950 of field
## Fcl_P_N of feature 8 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3157696039 of field
## Fcl_F_N of feature 8 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158232080 of field
## Fcl_P_N of feature 9 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158232139 of field
## Fcl_F_N of feature 9 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314733877 of field
## Fcl_P_N of feature 10 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314733091 of field
## Fcl_F_N of feature 10 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166223456 of field
## Fcl_P_N of feature 11 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166223450 of field
## Fcl_F_N of feature 11 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162982249 of field
## Fcl_P_N of feature 12 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162973302 of field
## Fcl_F_N of feature 12 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6072744159 of field
## Fcl_P_N of feature 13 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6072744675 of field
## Fcl_F_N of feature 13 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152615460 of field
## Fcl_P_N of feature 14 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152616460 of field
## Fcl_F_N of feature 14 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859223409 of field
## Fcl_P_N of feature 15 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229489 of field
## Fcl_F_N of feature 15 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9144588700 of field
## Fcl_P_N of feature 16 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9146661953 of field
## Fcl_F_N of feature 16 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5187135400 of field
## Fcl_P_N of feature 17 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5187135401 of field
## Fcl_F_N of feature 17 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853416711 of field
## Fcl_P_N of feature 18 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853418350 of field
## Fcl_F_N of feature 18 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153322316 of field
## Fcl_P_N of feature 19 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153322796 of field
## Fcl_F_N of feature 19 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229700 of field
## Fcl_P_N of feature 20 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229701 of field
## Fcl_F_N of feature 20 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5857237007 of field
## Fcl_P_N of feature 21 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5857237770 of field
## Fcl_F_N of feature 21 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453342750 of field
## Fcl_P_N of feature 22 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453313238 of field
## Fcl_F_N of feature 22 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142421823 of field
## Fcl_P_N of feature 23 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142422716 of field
## Fcl_F_N of feature 23 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245352 of field
## Fcl_P_N of feature 24 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245745 of field
## Fcl_F_N of feature 24 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7185884460 of field
## Fcl_P_N of feature 25 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7188935493 of field
## Fcl_F_N of feature 25 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8458557300 of field
## Fcl_P_N of feature 26 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8454277051 of field
## Fcl_F_N of feature 26 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7189204167 of field
## Fcl_P_N of feature 27 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7185155419 of field
## Fcl_F_N of feature 27 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859223409 of field
## Fcl_P_N of feature 28 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229489 of field
## Fcl_F_N of feature 28 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6317279654 of field
## Fcl_P_N of feature 29 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6317279681 of field
## Fcl_F_N of feature 29 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7189206035 of field
## Fcl_P_N of feature 30 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7182316314 of field
## Fcl_F_N of feature 30 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7184841247 of field
## Fcl_P_N of feature 31 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7189755448 of field
## Fcl_F_N of feature 31 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142455200 of field
## Fcl_P_N of feature 32 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142452930 of field
## Fcl_F_N of feature 32 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859222800 of field
## Fcl_P_N of feature 33 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853363031 of field
## Fcl_F_N of feature 33 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2126044908 of field
## Fcl_P_N of feature 34 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2126041798 of field
## Fcl_F_N of feature 34 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158535550 of field
## Fcl_P_N of feature 35 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158535549 of field
## Fcl_F_N of feature 35 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3157344978 of field
## Fcl_P_N of feature 36 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152357498 of field
## Fcl_F_N of feature 36 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853686406 of field
## Fcl_P_N of feature 37 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853684439 of field
## Fcl_F_N of feature 37 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162288224 of field
## Fcl_P_N of feature 38 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162858232 of field
## Fcl_F_N of feature 38 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6316692555 of field
## Fcl_P_N of feature 39 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6316695787 of field
## Fcl_F_N of feature 39 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9143661000 of field
## Fcl_P_N of feature 40 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9143661017 of field
## Fcl_F_N of feature 40 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853416732 of field
## Fcl_P_N of feature 41 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5854821466 of field
## Fcl_F_N of feature 41 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453342750 of field
## Fcl_P_N of feature 42 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453313238 of field
## Fcl_F_N of feature 42 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2124638305 of field
## Fcl_P_N of feature 43 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2124630952 of field
## Fcl_F_N of feature 43 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5185623650 of field
## Fcl_P_N of feature 44 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5185623801 of field
## Fcl_F_N of feature 44 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5187135400 of field
## Fcl_P_N of feature 45 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5187135401 of field
## Fcl_F_N of feature 45 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9147343200 of field
## Fcl_P_N of feature 46 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9147343428 of field
## Fcl_F_N of feature 46 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859220475 of field
## Fcl_P_N of feature 47 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853850969 of field
## Fcl_F_N of feature 47 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853340213 of field
## Fcl_P_N of feature 48 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5854872213 of field
## Fcl_F_N of feature 48 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077955199 of field
## Fcl_P_N of feature 49 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077955198 of field
## Fcl_F_N of feature 49 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859225070 of field
## Fcl_P_N of feature 50 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229489 of field
## Fcl_F_N of feature 50 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5857237007 of field
## Fcl_P_N of feature 51 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5857237770 of field
## Fcl_F_N of feature 51 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8452141910 of field
## Fcl_P_N of feature 52 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8454836334 of field
## Fcl_F_N of feature 52 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162822041 of field
## Fcl_P_N of feature 53 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162821266 of field
## Fcl_F_N of feature 53 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453342750 of field
## Fcl_P_N of feature 54 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453313238 of field
## Fcl_F_N of feature 54 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8458966978 of field
## Fcl_P_N of feature 55 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8458962130 of field
## Fcl_F_N of feature 55 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8456512144 of field
## Fcl_P_N of feature 56 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8456510982 of field
## Fcl_F_N of feature 56 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142421823 of field
## Fcl_P_N of feature 57 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9142422716 of field
## Fcl_F_N of feature 57 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8458557300 of field
## Fcl_P_N of feature 58 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8454277051 of field
## Fcl_F_N of feature 58 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152651055 of field
## Fcl_P_N of feature 59 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152651058 of field
## Fcl_F_N of feature 59 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859224325 of field
## Fcl_P_N of feature 60 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5854135011 of field
## Fcl_F_N of feature 60 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162982009 of field
## Fcl_P_N of feature 61 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7162982476 of field
## Fcl_F_N of feature 61 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7186045000 of field
## Fcl_P_N of feature 62 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7186045536 of field
## Fcl_F_N of feature 62 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7187450860 of field
## Fcl_P_N of feature 63 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7187450867 of field
## Fcl_F_N of feature 63 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3154467085 of field
## Fcl_P_N of feature 64 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3154707509 of field
## Fcl_F_N of feature 64 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156248500 of field
## Fcl_P_N of feature 65 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156248515 of field
## Fcl_F_N of feature 65 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314397237 of field
## Fcl_P_N of feature 66 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314397290 of field
## Fcl_F_N of feature 66 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153895004 of field
## Fcl_P_N of feature 67 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153895504 of field
## Fcl_F_N of feature 67 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166740500 of field
## Fcl_P_N of feature 68 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5166747546 of field
## Fcl_F_N of feature 68 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6072523170 of field
## Fcl_P_N of feature 69 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6072523175 of field
## Fcl_F_N of feature 69 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7166648397 of field
## Fcl_P_N of feature 70 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 7166648336 of field
## Fcl_F_N of feature 70 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453342750 of field
## Fcl_P_N of feature 71 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453313238 of field
## Fcl_F_N of feature 71 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314762737 of field
## Fcl_P_N of feature 72 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6316862543 of field
## Fcl_F_N of feature 72 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8452141910 of field
## Fcl_P_N of feature 73 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8454836334 of field
## Fcl_F_N of feature 73 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853445278 of field
## Fcl_P_N of feature 74 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853447471 of field
## Fcl_F_N of feature 74 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245510 of field
## Fcl_P_N of feature 75 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156245781 of field
## Fcl_F_N of feature 75 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453482550 of field
## Fcl_P_N of feature 76 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453489821 of field
## Fcl_F_N of feature 76 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5188733002 of field
## Fcl_P_N of feature 77 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5188732005 of field
## Fcl_F_N of feature 77 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6466705120 of field
## Fcl_P_N of feature 78 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6466705121 of field
## Fcl_F_N of feature 78 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152615404 of field
## Fcl_P_N of feature 79 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3152654745 of field
## Fcl_F_N of feature 79 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853436030 of field
## Fcl_P_N of feature 80 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5853447386 of field
## Fcl_F_N of feature 80 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077536000 of field
## Fcl_P_N of feature 81 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6077536073 of field
## Fcl_F_N of feature 81 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5163843702 of field
## Fcl_P_N of feature 82 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5165725856 of field
## Fcl_F_N of feature 82 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5856372670 of field
## Fcl_P_N of feature 83 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5856373678 of field
## Fcl_F_N of feature 83 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859222800 of field
## Fcl_P_N of feature 84 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229910 of field
## Fcl_F_N of feature 84 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153368260 of field
## Fcl_P_N of feature 85 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153279770 of field
## Fcl_F_N of feature 85 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3157694258 of field
## Fcl_P_N of feature 86 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3157694672 of field
## Fcl_F_N of feature 86 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158242513 of field
## Fcl_P_N of feature 87 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3158242639 of field
## Fcl_F_N of feature 87 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229700 of field
## Fcl_P_N of feature 88 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859229701 of field
## Fcl_F_N of feature 88 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3154342470 of field
## Fcl_P_N of feature 89 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3154378366 of field
## Fcl_F_N of feature 89 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153696619 of field
## Fcl_P_N of feature 90 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3153696533 of field
## Fcl_F_N of feature 90 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5854428614 of field
## Fcl_P_N of feature 91 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5852321035 of field
## Fcl_F_N of feature 91 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9144686200 of field
## Fcl_P_N of feature 92 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 9144686201 of field
## Fcl_F_N of feature 92 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2123671734 of field
## Fcl_P_N of feature 93 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 2123671703 of field
## Fcl_F_N of feature 93 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6075357121 of field
## Fcl_P_N of feature 94 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6075359097 of field
## Fcl_F_N of feature 94 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5184812622 of field
## Fcl_P_N of feature 95 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5184812320 of field
## Fcl_F_N of feature 95 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453568321 of field
## Fcl_P_N of feature 96 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 8453563386 of field
## Fcl_F_N of feature 96 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156246001 of field
## Fcl_P_N of feature 97 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 3156246956 of field
## Fcl_F_N of feature 97 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5859220150 of field
## Fcl_P_N of feature 98 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 5855869108 of field
## Fcl_F_N of feature 98 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314397237 of field
## Fcl_P_N of feature 99 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 6314397290 of field
## Fcl_F_N of feature 99 not successfully written. Possibly due to too larger
## number with respect to field width
st_write(nyc_sf, "./R-Spatial_I_Lab/NYC_object.shp", delete_layer = TRUE)
## Deleting layer `NYC_object' using driver `ESRI Shapefile'
## Writing layer `NYC_object' to data source 
##   `./R-Spatial_I_Lab/NYC_object.shp' using driver `ESRI Shapefile'
## Writing 263 features with 12 fields and geometry type Polygon.
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 108423743.438241005 of
## field AREA of feature 26 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 124786310.907857001 of
## field AREA of feature 99 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 199913664.288603008 of
## field AREA of feature 125 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 105182712.649568006 of
## field AREA of feature 130 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 206201040.087972999 of
## field AREA of feature 132 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 473985727.130053997 of
## field AREA of feature 137 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 111441829.317708001 of
## field AREA of feature 140 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 174102872.04866001 of
## field AREA of feature 150 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 169087432.907113999 of
## field AREA of feature 155 not successfully written. Possibly due to too larger
## number with respect to field width
## Warning in CPL_write_ogr(obj, dsn, layer, driver,
## as.character(dataset_options), : GDAL Message 1: Value 215835793.517093986 of
## field AREA of feature 156 not successfully written. Possibly due to too larger
## number with respect to field width
# 
#st_write(my_sf_object_3, './R-Spatial_I_Lab/NYS_Health_Facility.shp')
#st_write(my_sf_object_2, './R-Spatial_I_Lab/nys_retail_food_store_xy.shp')
#st_write(nyc_sf, './R-Spatial_I_Lab/NYC_object.shp')

# Save data to RData file
save(my_sf_object_3, my_sf_object_2, nyc_sf,
     file = './R-Spatial_I_Lab/NYS_Health_Facility_Retail_Store_Food_n_NYC_object.RData')

# To get the data back into R
# load(file='./data/nyc/manhattan_noise_sf.RData')

# Save data to a GeoPackage file/database
st_write(my_sf_object_3, 
         dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg', 
         layer='NYS Health Facilities',
         delete_layer = TRUE)
## Deleting layer `NYS Health Facilities' using driver `GPKG'
## Writing layer `NYS Health Facilities' to data source 
##   `./R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' using driver `GPKG'
## Writing 23972 features with 14 fields and geometry type Point.
st_write(my_sf_object_2,          
         dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg', 
         layer='NYS Retail Stores',
         delete_layer = TRUE)
## Deleting layer `NYS Retail Stores' using driver `GPKG'
## Writing layer `NYS Retail Stores' to data source 
##   `./R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' using driver `GPKG'
## Writing 100 features with 34 fields and geometry type Point.
st_write(nyc_sf,          
         dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg', 
         layer='NYC Zip Code',
         delete_layer = TRUE)
## Deleting layer `NYC Zip Code' using driver `GPKG'
## Writing layer `NYC Zip Code' to data source 
##   `./R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' using driver `GPKG'
## Writing 263 features with 12 fields and geometry type Polygon.
# Read in from geopackage
NYC_zipcode_dat_sf <- st_read(dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg',
        layer='NYC Zip Code')
## Reading layer `NYC Zip Code' from data source 
##   `/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' 
##   using driver `GPKG'
## Simple feature collection with 263 features and 12 fields
## Geometry type: POLYGON
## Dimension:     XY
## Bounding box:  xmin: 913129 ymin: 120020.9 xmax: 1067494 ymax: 272710.9
## Projected CRS: NAD83 / New York Long Island (ftUS)
NYS_HF <- st_read(dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg', 
        layer='NYS Health Facilities')
## Reading layer `NYS Health Facilities' from data source 
##   `/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' 
##   using driver `GPKG'
## Simple feature collection with 23972 features and 14 fields
## Geometry type: POINT
## Dimension:     XY
## Bounding box:  xmin: -79.75953 ymin: 40.50782 xmax: -71.93873 ymax: 44.99484
## Geodetic CRS:  WGS 84
NYS_FRS <- st_read(dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg', 
        layer='NYS Retail Stores')
## Reading layer `NYS Retail Stores' from data source 
##   `/Users/timothymedina/Documents/GTECH38520_RStudio/R-spatial/Session_10/R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg' 
##   using driver `GPKG'
## Simple feature collection with 100 features and 34 fields
## Geometry type: POINT
## Dimension:     XY
## Bounding box:  xmin: -79.24509 ymin: 40.62069 xmax: -72.7009 ymax: 44.92367
## Geodetic CRS:  WGS 84
# st_layers('./R-Spatial_I_Lab/NYC_GeoPackage_Object.gpkg') 
# NYC_zipcode_dat_sf <- st_read(dsn = './R-Spatial_I_Lab/NYS_GeoPackage_Object.gpkg',
#         layer='NYC Zip Code')
# SHOWS THAT IT WAS SUPPOSED TO BE NYS NOT NYC FOR THE GEOPACKAGE

The assignment and data are available on Blackboard. The data are also available for download at the Dropbox site.